From d67bea17c84ae540e73d2ba8eb91b9f92fb3027e Mon Sep 17 00:00:00 2001 From: LLVM Packaging Team Date: Sat, 15 Aug 2020 21:34:33 +0100 Subject: [PATCH] D69683-impl-path-hurd [Hurd]: use /proc/self/exe to get program path https://reviews.llvm.org/D69683 Gbp-Pq: Topic hurd Gbp-Pq: Name D69683-impl-path-hurd.diff --- lib/Support/Unix/Path.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Support/Unix/Path.inc b/lib/Support/Unix/Path.inc index d7cc0d627..69f3131dc 100644 --- a/lib/Support/Unix/Path.inc +++ b/lib/Support/Unix/Path.inc @@ -177,7 +177,7 @@ std::string getMainExecutable(const char *argv0, void *MainAddr) { if (getprogpath(exe_path, argv0) != NULL) return exe_path; -#elif defined(__linux__) || defined(__CYGWIN__) +#elif defined(__linux__) || defined(__CYGWIN__) || defined(__GNU__) char exe_path[MAXPATHLEN]; StringRef aPath("/proc/self/exe"); if (sys::fs::exists(aPath)) { -- 2.30.2