From ce73befc05818898c9f7d19818795ac63140c5e0 Mon Sep 17 00:00:00 2001 From: Jason Hiser <jdhiser@gmail.com> Date: Fri, 1 Feb 2019 11:26:39 -0500 Subject: [PATCH] refactoring libirdb-elfdep. redoing library naming scheme --- src/SConscript | 7 +++---- src/zipr.cpp | 4 +++- test/SConscript | 7 +++---- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/SConscript b/src/SConscript index c0c397c02..de9704895 100644 --- a/src/SConscript +++ b/src/SConscript @@ -48,13 +48,12 @@ cpppath=''' ''' libs=''' - IRDB-core - IRDB-cfg - transform + irdb-core + irdb-cfg + irdb-transform dl EXEIO StructDiv - pqxx ''' libpath=''' diff --git a/src/zipr.cpp b/src/zipr.cpp index b08f7862f..88a45a194 100644 --- a/src/zipr.cpp +++ b/src/zipr.cpp @@ -217,13 +217,15 @@ void ZiprImpl_t::CreateBinaryFile() { +#if 0 /* load the elfiop for the orig. binary */ lo = new pqxx::largeobject(m_firp->getFile()->getELFOID()); lo->to_file(m_pqxx_interface->getTransaction(),string(m_output_filename).c_str()); /* use ELFIO to load the sections */ assert(elfiop); - elfiop->load(m_output_filename); +#endif + elfiop->load("a.ncexe"); ELFIO::dump::section_headers(cout,*elfiop); if (m_architecture == 0) diff --git a/test/SConscript b/test/SConscript index f2e159413..c04697bea 100644 --- a/test/SConscript +++ b/test/SConscript @@ -47,10 +47,9 @@ cpppath=''' ''' libs=''' - IRDB-core - IRDB-cfg - pqxx - transform + irdb-core + irdb-cfg + irdb-transform dl EXEIO ''' -- GitLab