Commits
Zero King authored and tobypeterson committed 7f66f34df91
1 1 | --- a/Makefile |
2 2 | +++ b/Makefile |
3 - | |
3 + | |
4 4 | ifeq ($(IS_APPLE),1) |
5 5 | EXT = dylib |
6 6 | VERSION_EXT = $(API_MAJOR).$(EXT) |
7 7 | -$(LIBNAME)_LDFLAGS += -dynamiclib -install_name lib$(LIBNAME).$(VERSION_EXT) -current_version $(PKG_MAJOR).$(PKG_MINOR).$(PKG_EXTRA) -compatibility_version $(PKG_MAJOR).$(PKG_MINOR) |
8 8 | +$(LIBNAME)_LDFLAGS += -dynamiclib -install_name $(PREFIX)/lib/lib$(LIBNAME).$(VERSION_EXT) -current_version $(PKG_MAJOR).$(PKG_MINOR).$(PKG_EXTRA) -compatibility_version $(PKG_MAJOR).$(PKG_MINOR) |
9 9 | AR_EXT = a |
10 10 | -# Homebrew wants to make sure its formula does not disable FORTIFY_SOURCE |
11 11 | -# However, this is not really necessary because 'CAPSTONE_USE_SYS_DYN_MEM=yes' by default |
12 12 | -ifneq ($(HOMEBREW_CAPSTONE),1) |
13 13 | -ifneq ($(CAPSTONE_USE_SYS_DYN_MEM),yes) |