Remove automatic insertion of CFE's lib directory into the bytecode path

because LLVM should be agnostic to the needs of specific front ends.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18968 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Spencer 2004-12-15 22:21:42 +00:00
parent b4ed7b0f80
commit 835b6941fd
2 changed files with 0 additions and 14 deletions

View File

@ -85,13 +85,6 @@ Path::GetBytecodeLibraryPaths(std::vector<sys::Path>& Paths) {
if (env_var != 0) {
getPathList(env_var,Paths);
}
#ifdef LLVMGCCDIR
{
Path tmpPath(std::string(LLVMGCCDIR) + "lib/");
if (tmpPath.readable())
Paths.push_back(tmpPath);
}
#endif
#ifdef LLVM_LIBDIR
{
Path tmpPath;

View File

@ -85,13 +85,6 @@ Path::GetBytecodeLibraryPaths(std::vector<sys::Path>& Paths) {
if (env_var != 0) {
getPathList(env_var,Paths);
}
#ifdef LLVMGCCDIR
{
Path tmpPath(std::string(LLVMGCCDIR) + "lib/");
if (tmpPath.readable())
Paths.push_back(tmpPath);
}
#endif
#ifdef LLVM_LIBDIR
{
Path tmpPath;