Skip to content

Commit

Permalink
Don't rely on internal qcp.sh tool for building on OSX
Browse files Browse the repository at this point in the history
  • Loading branch information
Arnaud Diederen authored and Arnaud Diederen committed Jan 17, 2017
1 parent 31c7776 commit 515842e
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions makefile
Expand Up @@ -50,6 +50,14 @@ DONT_ERASE_LIB=1
include ../plugin.mak
include ../pyplg.mak

# allmake.unx defines 'CP' as 'qcp.sh' which is an internal tool providing
# support for the '-u' flag on OSX. However, since this makefile is part
# of the public release of IDAPython, we cannot rely on it (we do not use
# that flag in IDAPython anyway)
ifdef __MAC__
CP=cp -f
endif

PLUGIN_SCRIPT=
ifdef __LINUX__
OUTDLLOPTS=-Wl,-soname,$(notdir $(BINARY))
Expand Down

0 comments on commit 515842e

Please sign in to comment.