Changeset bc73be3 in mainline for tools/autotool.py


Ignore:
Timestamp:
2019-06-27T08:51:20Z (6 years ago)
Author:
Jaroslav Jindrak <dzejrou@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
8add15e0
Parents:
ad40b74b (diff), aeba767 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

cpp: merge and resolve conflicts

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tools/autotool.py

    rad40b74b rbc73be3  
    1 #!/usr/bin/env python2
     1#!/usr/bin/env python
    22#
    33# Copyright (c) 2010 Martin Decky
     
    201201                target = "arm-helenos"
    202202
     203        if (config['PLATFORM'] == "arm64"):
     204                platform = config['PLATFORM']
     205                target = "aarch64-helenos"
     206
    203207        if (config['PLATFORM'] == "ia32"):
    204208                platform = config['PLATFORM']
     
    633637
    634638                # 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')):
    636640                        common['GENISOIMAGE'] = check_app_alternatives(["genisoimage", "mkisofs", "xorriso"], ["--version"], "ISO 9660 creation utility", "usually part of genisoimage")
    637641                        if common['GENISOIMAGE'] == 'xorriso':
Note: See TracChangeset for help on using the changeset viewer.