The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
347 B
17 lines
347 B
6 years ago
|
#!/usr/bin/env python
|
||
|
"""Test script that checks if zlib was statically linked to executable"""
|
||
|
import subprocess
|
||
|
import sys
|
||
|
|
||
|
def main():
|
||
|
"""Main function"""
|
||
|
output = subprocess.check_output(['nm', sys.argv[1]]).decode('utf-8')
|
||
|
|
||
|
if 'T zlibVersion' in output:
|
||
|
sys.exit(0)
|
||
|
|
||
|
sys.exit(1)
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
main()
|