Changes in tools/autotool.py [d776329:795e2bf] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified tools/autotool.py ¶
rd776329 r795e2bf 289 289 helenos_target = "ppc-helenos" 290 290 291 if (config['PLATFORM'] == "riscv64"): 292 target = config['PLATFORM'] 293 gnu_target = "riscv64-unknown-linux-gnu" 294 clang_target = "riscv-unknown-none" 295 helenos_target = "riscv64-helenos" 291 if (config['PLATFORM'] == "sparc32"): 292 target = config['PLATFORM']; 293 gnu_target = "sparc-leon3-linux-gnu" 294 helenos_target = "sparc-leon3-helenos" 296 295 297 296 if (config['PLATFORM'] == "sparc64"): … … 925 924 # Platform-specific utilities 926 925 if ((config['BARCH'] == "amd64") or (config['BARCH'] == "ia32") or (config['BARCH'] == "ppc32") or (config['BARCH'] == "sparc64")): 927 common['GENISOIMAGE'] = check_app_alternatives(["mkisofs", "genisoimage", "xorriso"], ["--version"], "ISO 9660 creation utility", "usually part of genisoimage") 928 if common['GENISOIMAGE'] == 'xorriso': 929 common['GENISOIMAGE'] += ' -as genisoimage' 926 common['GENISOIMAGE'] = check_app_alternatives(["mkisofs", "genisoimage"], ["--version"], "ISO 9660 creation utility", "usually part of genisoimage") 930 927 931 928 probe = probe_compiler(common,
Note:
See TracChangeset
for help on using the changeset viewer.