Do not link in runtime library anymore, assume that user manually links in
authorChris Lattner <sabre@nondot.org>
Mon, 11 Mar 2002 17:52:43 +0000 (17:52 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 11 Mar 2002 17:52:43 +0000 (17:52 +0000)
libraries.  Code should be generalized to allow lli to take -lc -lm arguments
in the future (todo)

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1852 91177308-0d34-0410-b5e6-96231b3b80d8

lib/ExecutionEngine/Interpreter/UserInput.cpp

index 1cd8b08c1fdc5cdb2086601b8951041ae7efc453..a37224b1b1c0d7b11c07e169351ddeff5fea8422 100644 (file)
@@ -161,6 +161,7 @@ void Interpreter::loadModule(const string &Filename) {
   }
   CW.setModule(CurMod);  // Update Writer
 
+#if 0
   string RuntimeLib = getCurrentExecutablePath();
   if (!RuntimeLib.empty()) RuntimeLib += "/";
   RuntimeLib += "RuntimeLib.bc";
@@ -173,6 +174,7 @@ void Interpreter::loadModule(const string &Filename) {
     std::cerr << "Error loading runtime library '"+RuntimeLib+"': "
               << ErrorMsg << "\n";
   }
+#endif
 }