Merge pull request #314 from mstorsjo/fix-osx-32-bit

Explicitly allow read-only relocations when building on OS X in 32 bit mode
This commit is contained in:
Ethan Hugg 2014-02-19 11:25:13 -08:00
commit 6ad8f517dd

View File

@ -8,5 +8,6 @@ ifeq ($(ENABLE64BIT), Yes)
ASMFLAGS += -f macho64
else
ASMFLAGS += -f macho
LDFLAGS += -read_only_relocs suppress
endif