Skip to content
Snippets Groups Projects
Commit c61f65bc authored by Jason Hiser's avatar Jason Hiser :tractor:
Browse files

trying to make zipr and irbuilds plugins

Former-commit-id: 156f66a3bcf1d8625da2a08aad8fd62dffef2f58
parent 02b2b1ed
No related branches found
No related tags found
No related merge requests found
......@@ -31,7 +31,7 @@ if 'build_tools' not in myenv or myenv['build_tools'] is None or int(myenv['buil
split_eh_frame=myenv.Object("split_eh_frame.cpp");
pgm=myenv.Program("fill_in_indtargs.exe", ehframe+split_eh_frame+Split("fill_in_indtargs.cpp check_thunks.cpp"), LIBPATH=LIBPATH, LIBS=LIBS)
install=myenv.Install("$SECURITY_TRANSFORMS_HOME/bin/", pgm)
install=myenv.Install("$SECURITY_TRANSFORMS_HOME/plugins_install", pgm)
Default(install)
installed=installed+install
......@@ -41,7 +41,7 @@ if 'build_tools' not in myenv or myenv['build_tools'] is None or int(myenv['buil
installed=installed+install
pgm=myenv.Program("fix_calls.exe", ehframe+Split("fix_calls.cpp"), LIBPATH=LIBPATH, LIBS=LIBS)
install=myenv.Install("$SECURITY_TRANSFORMS_HOME/bin/", pgm)
install=myenv.Install("$SECURITY_TRANSFORMS_HOME/plugins_install", pgm)
Default(install)
installed=installed+install
......@@ -54,7 +54,7 @@ if 'build_tools' not in myenv or myenv['build_tools'] is None or int(myenv['buil
for i in Split(pgms):
# print "Registering pgm: "+ i
pgm=myenv.Program(target=i+".exe", source=Split(i+".cpp"), LIBPATH=LIBPATH, LIBS=LIBS)
install=myenv.Install("$SECURITY_TRANSFORMS_HOME/bin/", pgm)
install=myenv.Install("$SECURITY_TRANSFORMS_HOME/plugins_install/", pgm)
Default(install)
installed=installed+install
......
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