diff options
author | Chris Lattner <sabre@nondot.org> | 2003-09-30 17:36:51 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-09-30 17:36:51 +0000 |
commit | 238cf3c875dec323f4d028b7cbfb7e8c51909e1a (patch) | |
tree | 9b01aa55490532e9a3ecb74c82e168517e3b03af /tools | |
parent | bb5a4d0ec0ea0bfc769b785f35acb31be8d36724 (diff) | |
download | external_llvm-238cf3c875dec323f4d028b7cbfb7e8c51909e1a.zip external_llvm-238cf3c875dec323f4d028b7cbfb7e8c51909e1a.tar.gz external_llvm-238cf3c875dec323f4d028b7cbfb7e8c51909e1a.tar.bz2 |
Remove initials from source file
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8769 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r-- | tools/gccld/GenerateCode.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/gccld/GenerateCode.cpp b/tools/gccld/GenerateCode.cpp index 1ed687a..552bfa9 100644 --- a/tools/gccld/GenerateCode.cpp +++ b/tools/gccld/GenerateCode.cpp @@ -186,14 +186,13 @@ GenerateNative(const std::string &OutputFilename, cmd.push_back(OutputFilename.c_str()); cmd.push_back(InputFilename.c_str()); - // JTC: // Adding the library paths creates a problem for native generation. If we // include the search paths from llvmgcc, then we'll be telling normal gcc // to look inside of llvmgcc's library directories for libraries. This is // bad because those libraries hold only bytecode files (not native object // files). In the end, we attempt to link the bytecode libgcc into a native // program. -#ifdef ndef +#if 0 // Add in the library path options. for (unsigned index=0; index < LibPaths.size(); index++) { cmd.push_back("-L"); |