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


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified tools/autotool.py

    rd776329 r795e2bf  
    289289                helenos_target = "ppc-helenos"
    290290       
    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"
    296295       
    297296        if (config['PLATFORM'] == "sparc64"):
     
    925924                # Platform-specific utilities
    926925                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")
    930927               
    931928                probe = probe_compiler(common,
Note: See TracChangeset for help on using the changeset viewer.