lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


> 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"