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

changed to support new build lib names

parent 00c496ec
No related branches found
No related tags found
No related merge requests found
......@@ -7,12 +7,10 @@ Import('env')
(sysname, nodename, release, version, machine)=os.uname()
env.Append(CXXFLAGS=" -Wall -Werror")
env.Append(LINKFLAGS=" -Wall -Werror -Wl,-unresolved-symbols=ignore-in-shared-libs ")
env['BASE_IRDB_LIBS']="IRDB-core", "pqxx", "pq", "EXEIO", "ElfDep"
env['BASE_IRDB_LIBS']="irdb-core"
if sysname != "SunOS":
# setup libraries needed for linking
env['BASE_IRDB_LIBS']="IRDB-core", "pqxx", "pq", "EXEIO", "pebliss", "ElfDep", "capstone"
# pebliss requires iconv, which needs to be explicit on cygwin.
if "CYGWIN" in sysname:
......
......@@ -22,7 +22,7 @@ files=Glob( Dir('.').srcnode().abspath+"/*.cpp")
pgm="constant_decompose.exe"
LIBPATH="$SECURITY_TRANSFORMS_HOME/lib"
LIBS=Split("stars "+ env.subst('$BASE_IRDB_LIBS')+ " IRDB-cfg IRDB-util transform MEDSannotation jsoncpp ")
LIBS=Split("stars "+ env.subst('$BASE_IRDB_LIBS')+ " irdb-cfg irdb-util irdb-transform MEDSannotation jsoncpp ")
myenv=myenv.Clone(CPPPATH=Split(cpppath))
myenv.Append(CXXFLAGS = " -std=c++11 -Wall -g ")
pgm=myenv.Program(pgm, files, LIBPATH=LIBPATH, LIBS=LIBS)
......
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