From 7e8bc2a89a747e0ec8db17272f21e844e58b4bb2 Mon Sep 17 00:00:00 2001 From: Bob Nystrom Date: Fri, 22 Jan 2016 06:42:01 -0800 Subject: [PATCH] Disable link-time-optimization for now. It's failing when building with clang on Travis. The underlying problem seems to be something broken with how LLVM is looking for the gold linker, and working around that is outside of my skillset. To learn more, Google: "LLVMgold.so: error loading plugin" lto --- util/wren.mk | 1 - 1 file changed, 1 deletion(-) diff --git a/util/wren.mk b/util/wren.mk index c5cac7f9..6df27ada 100644 --- a/util/wren.mk +++ b/util/wren.mk @@ -36,7 +36,6 @@ TEST_SOURCES := $(wildcard test/api/*.c) BUILD_DIR := build -C_OPTIONS += -flto C_WARNINGS := -Wall -Wextra -Werror -Wno-unused-parameter # Wren uses callbacks heavily, so -Wunused-parameter is too painful to enable.