Changeset 232ec3a1 in mainline for tools/autotool.py


Ignore:
Timestamp:
2018-05-01T13:58:48Z (7 years ago)
Author:
GitHub <noreply@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
0cb53ea5
Parents:
66855b2
git-author:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-05-01 13:58:48)
git-committer:
GitHub <noreply@…> (2018-05-01 13:58:48)
Message:

Revive support for -helenos target specification. (#31)

  • Revive support for custom target specification.

Instead of maintaining patches separately, directly pull sources from
git. The target is, at the moment, still opt-in.

  • Drop support for objc/++
File:
1 edited

Legend:

Unmodified
Added
Removed
  • tools/autotool.py

    r66855b2 r232ec3a1  
    185185                if (config['CROSS_TARGET'] == "arm32"):
    186186                        gnu_target = "arm-linux-gnueabi"
    187                         helenos_target = "arm-helenos-gnueabi"
     187                        helenos_target = "arm-helenos"
    188188
    189189                if (config['CROSS_TARGET'] == "ia32"):
    190190                        gnu_target = "i686-pc-linux-gnu"
    191                         helenos_target = "i686-pc-helenos"
     191                        helenos_target = "i686-helenos"
    192192
    193193                if (config['CROSS_TARGET'] == "mips32"):
     
    204204                platform = config['PLATFORM']
    205205                gnu_target = "arm-linux-gnueabi"
    206                 helenos_target = "arm-helenos-gnueabi"
     206                helenos_target = "arm-helenos"
    207207
    208208        if (config['PLATFORM'] == "ia32"):
    209209                platform = config['PLATFORM']
    210210                gnu_target = "i686-pc-linux-gnu"
    211                 helenos_target = "i686-pc-helenos"
     211                helenos_target = "i686-helenos"
    212212
    213213        if (config['PLATFORM'] == "ia64"):
    214214                platform = config['PLATFORM']
    215215                gnu_target = "ia64-pc-linux-gnu"
    216                 helenos_target = "ia64-pc-helenos"
     216                helenos_target = "ia64-helenos"
    217217
    218218        if (config['PLATFORM'] == "mips32"):
Note: See TracChangeset for help on using the changeset viewer.