diff options
-rw-r--r-- | lib/Module/KModule.cpp | 2 | ||||
-rw-r--r-- | runtime/Intrinsic/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/Module/KModule.cpp b/lib/Module/KModule.cpp index eae1d2a9..78ecf4d1 100644 --- a/lib/Module/KModule.cpp +++ b/lib/Module/KModule.cpp @@ -282,7 +282,7 @@ void KModule::prepare(const Interpreter::ModuleOptions &opts, // this to be linked in, it makes low level debugging much more // annoying. llvm::sys::Path path(opts.LibraryDir); - path.appendComponent("libintrinsic.bca"); + path.appendComponent("libkleeRuntimeIntrinsic.bca"); module = linkWithLibrary(module, path.c_str()); // Needs to happen after linking (since ctors/dtors can be modified) diff --git a/runtime/Intrinsic/Makefile b/runtime/Intrinsic/Makefile index ce4a34ba..721b9772 100644 --- a/runtime/Intrinsic/Makefile +++ b/runtime/Intrinsic/Makefile @@ -9,7 +9,7 @@ LEVEL=../.. -LIBRARYNAME=intrinsic +LIBRARYNAME=kleeRuntimeIntrinsic DONT_BUILD_RELINKED=1 BUILD_ARCHIVE=1 BYTECODE_LIBRARY=1 |