File tree Expand file tree Collapse file tree 3 files changed +11
-1
lines changed Expand file tree Collapse file tree 3 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,6 @@ LLVM "test-suite" Repository
3
3
4
4
Please see the LLVM testing infrastructure guide:
5
5
6
- http ://llvm.org/docs/TestingGuide .html
6
+ https ://llvm.org/docs/TestSuiteGuide .html
7
7
8
8
for more information on the contents of this repository.
Original file line number Diff line number Diff line change
1
+ # Lowest optimization level and maximum debug information; A typical developer
2
+ # configuration.
3
+ set (CMAKE_BUILD_TYPE "Debug" CACHE STRING "" )
4
+ set (CMAKE_C_FLAGS_DEBUG "-O0" CACHE STRING "" )
5
+ set (CMAKE_CXX_FLAGS_DEBUG "-O0" CACHE STRING "" )
Original file line number Diff line number Diff line change
1
+ set (OPTFLAGS "${OPTFLAGS} -O3" )
2
+
3
+ set (CMAKE_C_FLAGS_RELEASE "${OPTFLAGS} " CACHE STRING "" )
4
+ set (CMAKE_CXX_FLAGS_RELEASE "${OPTFLAGS} " CACHE STRING "" )
5
+ set (CMAKE_BUILD_TYPE "Release" CACHE STRING "" )
You can’t perform that action at this time.
0 commit comments