Files
Michael Forney 5548313d47 ffmpeg: Probe for PIC
For nasm, we cannot just use __PIC__ from the preprocessor, so add
a probe test for it.
2021-07-25 21:11:05 -07:00

4 lines
41 B
Plaintext

int main(void) {
return __PIC__ == 0;
}