mirror of
https://git.freebsd.org/ports.git
synced 2025-06-07 05:40:30 -04:00
17 lines
622 B
C++
17 lines
622 B
C++
--- src/runtime/io.cpp.orig 2024-01-13 17:13:25 UTC
|
|
+++ src/runtime/io.cpp
|
|
@@ -855,7 +855,13 @@ extern "C" LEAN_EXPORT obj_res lean_io_app_path(obj_ar
|
|
char dest[PATH_MAX];
|
|
memset(dest, 0, PATH_MAX);
|
|
pid_t pid = getpid();
|
|
- snprintf(path, PATH_MAX, "/proc/%d/exe", pid);
|
|
+#if defined(__linux__)
|
|
+ snprintf(path, PATH_MAX, "/proc/%d/exe", pid);
|
|
+#elif defined(__FreeBSD__)
|
|
+ snprintf(path, PATH_MAX, "/proc/%d/file", pid);
|
|
+#else
|
|
+# error "Unknown platform"
|
|
+#endif
|
|
if (readlink(path, dest, PATH_MAX) == -1) {
|
|
return io_result_mk_error("failed to locate application");
|
|
} else {
|