forked from OSchip/llvm-project
9 lines
230 B
C++
9 lines
230 B
C++
|
// RUN: %clangxx -target i686-pc-linux-gnu -### -nostdlib++ %s 2> %t
|
||
|
// RUN: FileCheck < %t %s
|
||
|
|
||
|
// We should still have -lm and the C standard libraries, but not -lstdc++.
|
||
|
|
||
|
// CHECK-NOT: -lstdc++
|
||
|
// CHECK-NOT: -lc++
|
||
|
// CHECK: -lm
|