mirror of
https://github.com/rui314/mold.git
synced 2024-11-10 10:57:55 +03:00
58e43633fc
This reverts commit f29a85f20a
with a fix
for a build failure.
28 lines
709 B
C++
28 lines
709 B
C++
#include "mold.h"
|
|
|
|
#include <filesystem>
|
|
#include <sys/stat.h>
|
|
|
|
namespace mold {
|
|
|
|
std::string get_realpath(std::string_view path) {
|
|
std::error_code ec;
|
|
std::string ret = std::filesystem::canonical(path, ec);
|
|
return ec ? std::string(path) : ret;
|
|
}
|
|
|
|
// Removes redundant '/..' or '/.' from a given path.
|
|
// The transformation is done purely by lexical processing.
|
|
// This function does not access file system.
|
|
std::string path_clean(std::string_view path) {
|
|
return filepath(path).lexically_normal();
|
|
}
|
|
|
|
std::filesystem::path to_abs_path(std::filesystem::path path) {
|
|
if (path.is_absolute())
|
|
return path;
|
|
return (std::filesystem::current_path() / path).lexically_normal();
|
|
}
|
|
|
|
} // namespace mold
|