mirror of
https://src.fedoraproject.org/rpms/llvm.git
synced 2024-11-24 17:34:47 +00:00
7 lines
152 B
Bash
Executable file
7 lines
152 B
Bash
Executable file
#!/bin/sh -eux
|
|
|
|
set pipefail
|
|
|
|
echo "void lto_function(){}" | clang -flto -O2 -c -x c -o foo.o -
|
|
ar crs foo.a foo.o
|
|
readelf -c foo.a | grep lto_function
|