[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Build error when AR is set
- From: Luiz Henrique de Figueiredo <lhf@...>
- Date: Sat, 7 Apr 2018 15:19:20 -0300
> Over at Nmap, we got a report of a build failure in Lua under the OpenWrt
> build environment, which turned out to be because it set the AR environment
> variable to the path to the cross-compiler's ar command. Lua's Makefile sets
> it to "ar rcu" so the "rcu" commands were not being passed to the ar
> program
A simple solution is to pass AR="$AR rcu" when running make, as in
make linux AR="$AR rcu"