Changeset b0b4592e in mainline for tools/autotool.py


Ignore:
Timestamp:
2014-03-15T19:21:53Z (11 years ago)
Author:
Vojtech Horky <vojtechhorky@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c773adc
Parents:
2034f98 (diff), 8cffdf5 (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:

Merge mainline changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tools/autotool.py

    r2034f98 rb0b4592e  
    263263                clang_target = "powerpc-unknown-linux"
    264264                helenos_target = "ppc-helenos"
     265       
     266        if (config['PLATFORM'] == "sparc32"):
     267                target = config['PLATFORM'];
     268                gnu_target = "sparc-leon3-linux-gnu"
     269                helenos_target = "sparc-leon3-helenos"
    265270       
    266271        if (config['PLATFORM'] == "sparc64"):
     
    785790               
    786791                if (config['COMPILER'] == "clang"):
    787                         target, cc_args, gnu_target, clang_target = get_target(config)
     792                        target, cc_args, gnu_target, clang_target, helenos_target = get_target(config)
    788793                       
    789794                        if (target is None) or (gnu_target is None) or (clang_target is None):
Note: See TracChangeset for help on using the changeset viewer.