1
0
forked from Mirror/wren

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
This commit is contained in:
Bob Nystrom
2016-01-22 06:42:01 -08:00
parent 056ae61493
commit 7e8bc2a89a

View File

@ -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.