lua-users home
lua-l archive

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


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