From: Frederich Munch Date: Tue, 13 Jun 2017 18:12:11 +0000 (+0000) Subject: Fix self hosting build-bot failure from r305303 by adjusting DynamicLibraryTests... X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c022c4c3adb93e4d1aa5d28d7a58f1d8624776a7;p=llvm Fix self hosting build-bot failure from r305303 by adjusting DynamicLibraryTests compile flags. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@305313 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/unittests/Support/DynamicLibrary/CMakeLists.txt b/unittests/Support/DynamicLibrary/CMakeLists.txt index 76c55465c9d..e8441d96249 100644 --- a/unittests/Support/DynamicLibrary/CMakeLists.txt +++ b/unittests/Support/DynamicLibrary/CMakeLists.txt @@ -20,6 +20,7 @@ function(dynlib_add_module NAME) ) add_dependencies(DynamicLibraryTests ${NAME}) + llvm_update_compile_flags(${NAME}) endfunction(dynlib_add_module) dynlib_add_module(PipSqueak)