Created
March 10, 2022 03:09
-
-
Save notakaos/468f60287ff18796d7ecce6e119c616b to your computer and use it in GitHub Desktop.
mold(v1.1.1): fix read_symlink("/proc/self/exe") error in macOS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/elf/lto.cc b/elf/lto.cc | |
index 30060ed4..38f9aa17 100644 | |
--- a/elf/lto.cc | |
+++ b/elf/lto.cc | |
@@ -88,6 +88,11 @@ | |
#include <sstream> | |
#include <unistd.h> | |
+#if defined(__APPLE__) && defined(__MACH__) | |
+#include <sys/param.h> | |
+#include <mach-o/dyld.h> | |
+#endif | |
+ | |
#if 0 | |
# define LOG std::cerr | |
#else | |
@@ -591,7 +596,15 @@ static void restart_process(Context<E> &ctx) { | |
args.push_back("--:lto-pass2"); | |
args.push_back(nullptr); | |
+#if defined(__APPLE__) && defined(__MACH__) | |
+ char path[MAXPATHLEN+1]; | |
+ uint32_t size = sizeof(path); | |
+ _NSGetExecutablePath(path, &size); | |
+ std::string self = std::string(path); | |
+#else | |
std::string self = std::filesystem::read_symlink("/proc/self/exe"); | |
+#endif | |
+ | |
std::cout << std::flush; | |
std::cerr << std::flush; | |
diff --git a/elf/subprocess.cc b/elf/subprocess.cc | |
index edd13a10..0bd2942c 100644 | |
--- a/elf/subprocess.cc | |
+++ b/elf/subprocess.cc | |
@@ -12,6 +12,11 @@ | |
#include <sys/wait.h> | |
#include <unistd.h> | |
+#if defined(__APPLE__) && defined(__MACH__) | |
+#include <sys/param.h> | |
+#include <mach-o/dyld.h> | |
+#endif | |
+ | |
#define DAEMON_TIMEOUT 30 | |
namespace mold::elf { | |
@@ -247,7 +252,14 @@ void daemonize(Context<E> &ctx, std::function<void()> *wait_for_client, | |
} | |
static std::string get_self_path() { | |
+#if defined(__APPLE__) && defined(__MACH__) | |
+ char path[MAXPATHLEN+1]; | |
+ uint32_t size = sizeof(path); | |
+ _NSGetExecutablePath(path, &size); | |
+ return std::string(path); | |
+#else | |
return std::filesystem::read_symlink("/proc/self/exe"); | |
+#endif | |
} | |
template <typename E> |
Author
notakaos
commented
Mar 10, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment