Skip to content
Snippets Groups Projects
Commit 3480b045 authored by Matthew McGill's avatar Matthew McGill
Browse files

build fix for libcapstone

Former-commit-id: 7b43380261091bed7bcdf5af363cb39cac782ce6
parent 222c80b2
No related branches found
No related tags found
No related merge requests found
......@@ -59,7 +59,10 @@ if "CYGWIN" in sysname:
Export('env')
libcapstone=env.Install("$SECURITY_TRANSFORMS_HOME/lib","$SECURITY_TRANSFORMS_HOME/libcapstone/libcapstone.so.4")
env.Install("$SECURITY_TRANSFORMS_HOME/lib/", "$SECURITY_TRANSFORMS_HOME/libcapstone/libcapstone.so.4")
env.Command(os.environ['SECURITY_TRANSFORMS_HOME']+"/lib/libcapstone.so", os.environ['SECURITY_TRANSFORMS_HOME']+"/lib/libcapstone.so.4", "ln -s $SOURCE.abspath $TARGET.abspath")
libcapstone=os.environ['SECURITY_TRANSFORMS_HOME']+"/lib/libcapstone.so"
libehp=env.SConscript("libehp/SConscript", variant_dir='scons_build/libehp')
libehp=env.Install("$SECURITY_TRANSFORMS_HOME/lib", libehp);
libtransform=SConscript("libtransform/SConscript", variant_dir='scons_build/libtransform')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment