[compiler-rt] r310912 - Revert: Enable profile on NetBSD
Kamil Rytarowski via llvm-commits
llvm-commits at lists.llvm.org
Tue Aug 15 02:56:48 PDT 2017
Author: kamil
Date: Tue Aug 15 02:56:47 2017
New Revision: 310912
URL: http://llvm.org/viewvc/llvm-project?rev=310912&view=rev
Log:
Revert: Enable profile on NetBSD
Requested by V.Kumar.
Not all tests pass.
Modified:
compiler-rt/trunk/cmake/config-ix.cmake
compiler-rt/trunk/test/profile/lit.cfg
Modified: compiler-rt/trunk/cmake/config-ix.cmake
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/cmake/config-ix.cmake?rev=310912&r1=310911&r2=310912&view=diff
==============================================================================
--- compiler-rt/trunk/cmake/config-ix.cmake (original)
+++ compiler-rt/trunk/cmake/config-ix.cmake Tue Aug 15 02:56:47 2017
@@ -519,7 +519,7 @@ else()
endif()
if (PROFILE_SUPPORTED_ARCH AND NOT LLVM_USE_SANITIZER AND
- OS_NAME MATCHES "Darwin|Linux|FreeBSD|Windows|Android|NetBSD")
+ OS_NAME MATCHES "Darwin|Linux|FreeBSD|Windows|Android")
set(COMPILER_RT_HAS_PROFILE TRUE)
else()
set(COMPILER_RT_HAS_PROFILE FALSE)
Modified: compiler-rt/trunk/test/profile/lit.cfg
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/profile/lit.cfg?rev=310912&r1=310911&r2=310912&view=diff
==============================================================================
--- compiler-rt/trunk/test/profile/lit.cfg (original)
+++ compiler-rt/trunk/test/profile/lit.cfg Tue Aug 15 02:56:47 2017
@@ -78,7 +78,7 @@ config.substitutions.append( ("%clangxx_
config.substitutions.append( ("%clang_lto_profgen=", build_invocation(clang_cflags, True) + " -fprofile-instr-generate=") )
-if config.host_os not in ['Darwin', 'FreeBSD', 'Linux', 'NetBSD']:
+if config.host_os not in ['Darwin', 'FreeBSD', 'Linux']:
config.unsupported = True
if config.target_arch in ['armv7l']:
More information about the llvm-commits
mailing list