diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2013-06-17 18:38:18 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2013-06-17 18:38:18 +0000 |
commit | b33941107080129a912632573e5a53f950c3610a (patch) | |
tree | dd5a956c9c260217ef2264713610245bd38d410e /tools | |
parent | 68c0efac35021516bf46b2793e56e0d9d804c9e8 (diff) | |
download | external_llvm-b33941107080129a912632573e5a53f950c3610a.zip external_llvm-b33941107080129a912632573e5a53f950c3610a.tar.gz external_llvm-b33941107080129a912632573e5a53f950c3610a.tar.bz2 |
Don't use PathV1.h in tools/gold/gold-plugin.cpp.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@184099 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r-- | tools/gold/gold-plugin.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/tools/gold/gold-plugin.cpp b/tools/gold/gold-plugin.cpp index 0ccaa3e..722cac0 100644 --- a/tools/gold/gold-plugin.cpp +++ b/tools/gold/gold-plugin.cpp @@ -17,9 +17,9 @@ #include "llvm-c/lto.h" #include "llvm/ADT/OwningPtr.h" #include "llvm/Support/Errno.h" +#include "llvm/Support/FileSystem.h" #include "llvm/Support/MemoryBuffer.h" #include "llvm/Support/Path.h" -#include "llvm/Support/PathV1.h" #include "llvm/Support/Program.h" #include "llvm/Support/ToolOutputFile.h" #include "llvm/Support/system_error.h" @@ -65,7 +65,7 @@ namespace { lto_codegen_model output_type = LTO_CODEGEN_PIC_MODEL_STATIC; std::string output_name = ""; std::list<claimed_file> Modules; - std::vector<sys::Path> Cleanup; + std::vector<std::string> Cleanup; lto_code_gen_t code_gen = NULL; } @@ -448,18 +448,18 @@ static ld_plugin_status all_symbols_read_hook(void) { } if (options::obj_path.empty()) - Cleanup.push_back(sys::Path(objPath)); + Cleanup.push_back(objPath); return LDPS_OK; } static ld_plugin_status cleanup_hook(void) { - std::string ErrMsg; - - for (int i = 0, e = Cleanup.size(); i != e; ++i) - if (Cleanup[i].eraseFromDisk(false, &ErrMsg)) + for (int i = 0, e = Cleanup.size(); i != e; ++i) { + error_code EC = sys::fs::remove(Cleanup[i]); + if (EC) (*message)(LDPL_ERROR, "Failed to delete '%s': %s", Cleanup[i].c_str(), - ErrMsg.c_str()); + EC.message()); + } return LDPS_OK; } |