1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00

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

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

llvm-svn: 18968
This commit is contained in:
Reid Spencer 2004-12-15 22:21:42 +00:00
parent 01430a34a4
commit a2d326c825

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;