Revert "Add support for Axle library." It breaks the build.

This reverts commit r9292.

Swift SVN r9296
This commit is contained in:
Joe Groff
2013-10-13 22:38:22 +00:00
parent c5f20cabcc
commit cf457d2210
17 changed files with 26 additions and 326 deletions

View File

@@ -28,10 +28,7 @@ void CompilerInvocation::setMainExecutablePath(StringRef Path) {
llvm::SmallString<128> LibPath(Path);
llvm::sys::path::remove_filename(LibPath); // Remove /swift
llvm::sys::path::remove_filename(LibPath); // Remove /bin
if (getLangOptions().Axle)
llvm::sys::path::append(LibPath, "lib", "axle");
else
llvm::sys::path::append(LibPath, "lib", "swift");
llvm::sys::path::append(LibPath, "lib", "swift");
setRuntimeIncludePath(LibPath.str());
}