Changes in tools/autotool.py [795e2bf:d776329] in mainline


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified tools/autotool.py

    r795e2bf rd776329  
    289289                helenos_target = "ppc-helenos"
    290290       
    291         if (config['PLATFORM'] == "sparc32"):
    292                 target = config['PLATFORM'];
    293                 gnu_target = "sparc-leon3-linux-gnu"
    294                 helenos_target = "sparc-leon3-helenos"
     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"
    295296       
    296297        if (config['PLATFORM'] == "sparc64"):
     
    924925                # Platform-specific utilities
    925926                if ((config['BARCH'] == "amd64") or (config['BARCH'] == "ia32") or (config['BARCH'] == "ppc32") or (config['BARCH'] == "sparc64")):
    926                         common['GENISOIMAGE'] = check_app_alternatives(["mkisofs", "genisoimage"], ["--version"], "ISO 9660 creation utility", "usually part of genisoimage")
     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'
    927930               
    928931                probe = probe_compiler(common,
Note: See TracChangeset for help on using the changeset viewer.