You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sys-devel/binutils-apple/files/ld64-123.2-debug-backtrace....

16 lines
338 B

execinfo.h isn't available <10.5, so make sure it is only included when
actually necessary
--- ld/ld.cpp
+++ ld/ld.cpp
@@ -37,7 +37,9 @@
#include <errno.h>
#include <limits.h>
#include <unistd.h>
+#ifndef NDEBUG
#include <execinfo.h>
+#endif
#include <mach/mach_time.h>
#include <mach/vm_statistics.h>
#include <mach/mach_init.h>