Set up a shortcut for 32-bit builds on OS X.

This commit is contained in:
Pietro Gagliardi 2015-05-07 15:47:10 -04:00
parent bf67a8b285
commit a6478d68d1
1 changed files with 5 additions and 1 deletions

View File

@ -27,6 +27,10 @@ osLDFLAGS = -mmacosx-version-min=10.7 -lobjc -framework Foundation -framework Ap
# fortunately, we don't need any; Apple's linker warns about undefined symbols in -shared builds!
osLDWarnUndefinedFlags =
osLIBSUFFIX = .dylib
osEXESUFFIX =
ifeq ($(ARCH),386)
osCFLAGS += -m32
osLDFLAGS += -m32
endif