Changeset 2223ceb in mainline for tools/autotool.py


Ignore:
Timestamp:
2018-04-30T16:42:00Z (7 years ago)
Author:
Jiří Zárevúcky <jiri.zarevucky@…>
Children:
aa0c8b2
Parents:
4c5f04f
git-author:
Jiří Zárevúcky <jiri.zarevucky@…> (2018-04-30 14:51:05)
git-committer:
Jiří Zárevúcky <jiri.zarevucky@…> (2018-04-30 16:42:00)
Message:

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.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tools/autotool.py

    r4c5f04f r2223ceb  
    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.