[PATCH] D60215: [test-suite] There is no such thing as CMAKE_C_CFLAGS, it's CMAKE_C_FLAGS

Phabricator via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed Apr 10 07:11:00 PDT 2019


This revision was automatically updated to reflect the committed changes.
Closed by commit rL358084: [test-suite] There is no such thing as CMAKE_C_CFLAGS, it's CMAKE_C_FLAGS (authored by lebedevri, committed by ).

Changed prior to commit:
  https://reviews.llvm.org/D60215?vs=193535&id=194508#toc

Repository:
  rL LLVM

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D60215/new/

https://reviews.llvm.org/D60215

Files:
  test-suite/trunk/CMakeLists.txt


Index: test-suite/trunk/CMakeLists.txt
===================================================================
--- test-suite/trunk/CMakeLists.txt
+++ test-suite/trunk/CMakeLists.txt
@@ -150,7 +150,7 @@
     "Extra flags for CMAKE_EXE_LINKER_FLAGS")
 mark_as_advanced(TEST_SUITE_EXTRA_C_FLAGS, TEST_SUITE_EXTRA_CXX_FLAGS,
                  TEST_SUITE_EXTRA_EXE_LINKER_FLAGS)
-set(CMAKE_C_CFLAGS "${CMAKE_C_CFLAGS} ${TEST_SUITE_EXTRA_C_FLAGS}")
+set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${TEST_SUITE_EXTRA_C_FLAGS}")
 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${TEST_SUITE_EXTRA_CXX_FLAGS}")
 set(CMAKE_EXE_LINKER_FLAGS
     "${CMAKE_EXE_LINKER_FLAGS} ${TEST_SUITE_EXTRA_EXE_LINKER_FLAGS}")


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D60215.194508.patch
Type: text/x-patch
Size: 679 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190410/6dfb0163/attachment.bin>


More information about the llvm-commits mailing list