We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 863a169 commit 11e7e66Copy full SHA for 11e7e66
libs/openFrameworksCompiled/project/linux/64/config.linux64.default.mk
@@ -27,5 +27,9 @@
27
28
include $(OF_SHARED_MAKEFILES_PATH)/config.linux.common.mk
29
30
-PLATFORM_LDFLAGS += -fuse-ld=gold
31
-
+ifneq ($(shell command -v ld.gold),)
+ PLATFORM_LDFLAGS += -fuse-ld=gold
32
+ $(info Using Gold linker.)
33
+else
34
+ $(info Gold linker not found. Using default linker.)
35
+endif
0 commit comments