2021-10-09 04:39:24 +08:00
|
|
|
# Check that we do not reject position-independent executables (PIEs).
|
|
|
|
|
2022-07-12 08:58:32 +08:00
|
|
|
# This test uses the clang driver without target flags and will only succeed
|
|
|
|
# on Linux systems where the host triple matches the target.
|
|
|
|
REQUIRES: system-linux
|
|
|
|
|
2022-05-13 22:12:40 +08:00
|
|
|
RUN: %clang %cflags -fPIC -pie %p/Inputs/jump_table_icp.cpp -o %t
|
2021-10-09 04:39:24 +08:00
|
|
|
RUN: llvm-bolt %t -o /dev/null 2>&1 | FileCheck %s
|
|
|
|
|
|
|
|
CHECK: BOLT-INFO: shared object or position-independent executable detected
|