binary - CFLAGS is not taken into account, why? -
i'm compiling apache 2.2.17 mac os x 10.5.8 intel 64bit computer , prefer 64bit compilation give necessary flags before ./configure so:
cflags="-arch x86_64"
but newly compiled binary isn't 64bit:
file /usr/local/apache/bin/httpd /usr/local/apache/bin/httpd: mach-o executable i386
i'm confused.
i've tried variations such as:
cflags="-arch x86_64" cxxflags="-arch x86_64" ldflags="-arch x86_64"
all or without "export" or "env" command @ start (e.g. export cflags="-arch x86_64") , result's unchanged.
what wrong?
Comments
Post a Comment