[bolt] Pass %cflags in test/X86/is-strip.s
authorNico Weber <thakis@chromium.org>
Fri, 18 Nov 2022 16:35:35 +0000 (11:35 -0500)
committerNico Weber <thakis@chromium.org>
Fri, 18 Nov 2022 17:09:07 +0000 (12:09 -0500)
Without this, clang builds a binary for macOS on a macOS host, and
then the linker complains that it doesn't know the -q flag.

Differential Revision: https://reviews.llvm.org/D138306

bolt/test/X86/is-strip.s

index 4366634..aaffb00 100644 (file)
@@ -1,6 +1,6 @@
 # This test checks whether a binary is stripped or not.
 
-# RUN: %clang++ %p/Inputs/linenumber.cpp -o %t -Wl,-q
+# RUN: %clang++ %cflags %p/Inputs/linenumber.cpp -o %t -Wl,-q
 # RUN: llvm-bolt %t -o %t.out 2>&1 | FileCheck %s -check-prefix=CHECK-NOSTRIP
 # RUN: cp %t %t.stripped
 # RUN: llvm-strip -s %t.stripped