Changeset 12bdbcc6 in mainline for tools/autotool.py
- Timestamp:
- 2018-07-28T10:55:52Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b4c8a7b
- Parents:
- 3943da1
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tools/autotool.py
r3943da1 r12bdbcc6 53 53 PACKAGE_CLANG = "reasonably recent version of clang needs to be installed" 54 54 55 TOOLCHAIN_FAIL = [ 56 "Compiler toolchain for target is not installed, or CROSS_PREFIX ", 57 "environment variable is not set correctly. Use tools/toolchain.sh", 58 "to (re)build the cross-compiler toolchain."] 55 59 COMPILER_FAIL = "The compiler is probably not capable to compile HelenOS." 56 60 COMPILER_WARNING = "The compilation of HelenOS might fail." … … 596 600 check_path = "%s/%s/%s" % (cross_helenos_prefix, platform, target) 597 601 if not os.path.exists(check_path): 598 print_error( ["Toolchain for target is not installed, or CROSS_PREFIX is not set correctly."])602 print_error(TOOLCHAIN_FAIL) 599 603 path = "%s/%s/bin" % (cross_helenos_prefix, platform) 600 604 else: 601 605 check_path = "%s/%s/%s" % (cross_prefix, platform, target) 602 606 if not os.path.exists(check_path): 603 print_error( ["Toolchain for target is not installed, or CROSS_PREFIX is not set correctly."])607 print_error(TOOLCHAIN_FAIL) 604 608 path = "%s/%s/bin" % (cross_prefix, platform) 605 609
Note:
See TracChangeset
for help on using the changeset viewer.