Skip to content
This repository was archived by the owner on Feb 5, 2019. It is now read-only.

Commit 9ddb3bf

Browse files
alexcrichtonarielb1
authored andcommitted
Merge pull request #62 from binarycrusader/llvm-sparc
use -O3 with some optimizations disabled on sparc w/ gcc
2 parents 43d93d5 + 1a83de6 commit 9ddb3bf

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

CMakeLists.txt

+4-2
Original file line numberDiff line numberDiff line change
@@ -812,8 +812,10 @@ endif()
812812

813813
if( "${CMAKE_CXX_COMPILER_ID}" MATCHES "GNU" AND "${LLVM_NATIVE_ARCH}" MATCHES "Sparc" )
814814
# gcc 4.x, 5.x (at least) generate bad code on sparc above -O0 when compiling
815-
# llvm; notably llvm-tblgen consistently core dumps.
816-
llvm_replace_compiler_option(CMAKE_CXX_FLAGS_RELEASE "-O3" "-O0")
815+
# llvm. Notably llvm-tblgen consistently core dumps, *unless*
816+
# -fno-delayed-branch is specified. Finally, -fno-omit-frame-pointer is
817+
# included to avoid additional code generation and debugging issues.
818+
llvm_replace_compiler_option(CMAKE_CXX_FLAGS_RELEASE "-O3" "-O3 -fno-delayed-branch -fno-omit-frame-pointer")
817819
endif()
818820

819821
# Put this before tblgen. Else we have a circular dependence.

0 commit comments

Comments
 (0)