Re: Problem with ../src/Makefile "aix" parms
[
Date Prev][
Date Next][
Thread Prev][
Thread Next]
[
Date Index]
[
Thread Index]
- Subject: Re: Problem with ../src/Makefile "aix" parms
- From: Luiz Henrique de Figueiredo <lhf@...>
- Date: 2006年2月24日 16:43:52 -0300
Sorry, you're right. CFLAGS is redefined in the command line and then it
no longer includes MYCFLAGS!
The correct entry for aix in the src/Makefile is this:
aix:
$(MAKE) all CC="xlc" CFLAGS="-O2 -DLUA_USE_POSIX -DLUA_USE_DLOPEN" MYLIBS="-ldl" MYLDFLAGS="-brtl -bexpall"
Ah, the perils of last-minute changes...
Sorry about that. Thanks for reporting.
--lhf