4 lines
88 B
Bash
4 lines
88 B
Bash
|
#!/bin/sh -eux
|
||
|
|
||
|
find /usr -name 'libgcc_s.so*' && echo "int main(){}" | clang -v -x c -
|