Changes in tools/autotool.py [0dd022ec:ec07933] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tools/autotool.py
r0dd022ec rec07933 355 355 check_app([common['OBJDUMP'], "--version"], "GNU Objdump utility", details) 356 356 check_app([common['STRIP'], "--version"], "GNU strip", details) 357 358 def check_python(): 359 "Check for Python dependencies" 360 361 try: 362 sys.stderr.write("Checking for PyYAML ... ") 363 import yaml 364 except ImportError: 365 print_error(["PyYAML is missing.", 366 "", 367 "Please make sure that it is installed in your", 368 "system (usually part of PyYAML package)."]) 369 370 sys.stderr.write("ok\n") 357 371 358 372 def decode_value(value): … … 810 824 common['CLANG_TARGET'] = clang_target 811 825 826 check_python() 827 812 828 # Platform-specific utilities 813 829 if ((config['BARCH'] == "amd64") or (config['BARCH'] == "ia32") or (config['BARCH'] == "ppc32") or (config['BARCH'] == "sparc64")): … … 834 850 sandbox_leave(owd) 835 851 852 common['AUTOGEN'] = "%s/autogen.py" % os.path.dirname(os.path.abspath(sys.argv[0])) 853 836 854 create_makefile(MAKEFILE, common) 837 855 create_header(HEADER, maps)
Note:
See TracChangeset
for help on using the changeset viewer.