Changeset 84176f3 in mainline for tools/autotool.py
- Timestamp:
- 2019-04-10T15:04:17Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 8df0306
- Parents:
- b58728f
- git-author:
- Petr Pavlu <setup@…> (2019-03-31 14:09:57)
- git-committer:
- Jakub Jermář <jakub@…> (2019-04-10 15:04:17)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tools/autotool.py
rb58728f r84176f3 201 201 target = "arm-helenos" 202 202 203 if (config['PLATFORM'] == "arm64"): 204 platform = config['PLATFORM'] 205 target = "aarch64-helenos" 206 203 207 if (config['PLATFORM'] == "ia32"): 204 208 platform = config['PLATFORM'] … … 633 637 634 638 # Platform-specific utilities 635 if ( (config['BARCH'] == "amd64") or (config['BARCH'] == "ia32") or (config['BARCH'] == "ppc32") or (config['BARCH'] == "sparc64")):639 if (config['BARCH'] in ('amd64', 'arm64', 'ia32', 'ppc32', 'sparc64')): 636 640 common['GENISOIMAGE'] = check_app_alternatives(["genisoimage", "mkisofs", "xorriso"], ["--version"], "ISO 9660 creation utility", "usually part of genisoimage") 637 641 if common['GENISOIMAGE'] == 'xorriso':
Note:
See TracChangeset
for help on using the changeset viewer.