Changeset 232ec3a1 in mainline for tools/autotool.py
- Timestamp:
- 2018-05-01T13:58:48Z (7 years ago)
- 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)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tools/autotool.py
r66855b2 r232ec3a1 185 185 if (config['CROSS_TARGET'] == "arm32"): 186 186 gnu_target = "arm-linux-gnueabi" 187 helenos_target = "arm-helenos -gnueabi"187 helenos_target = "arm-helenos" 188 188 189 189 if (config['CROSS_TARGET'] == "ia32"): 190 190 gnu_target = "i686-pc-linux-gnu" 191 helenos_target = "i686- pc-helenos"191 helenos_target = "i686-helenos" 192 192 193 193 if (config['CROSS_TARGET'] == "mips32"): … … 204 204 platform = config['PLATFORM'] 205 205 gnu_target = "arm-linux-gnueabi" 206 helenos_target = "arm-helenos -gnueabi"206 helenos_target = "arm-helenos" 207 207 208 208 if (config['PLATFORM'] == "ia32"): 209 209 platform = config['PLATFORM'] 210 210 gnu_target = "i686-pc-linux-gnu" 211 helenos_target = "i686- pc-helenos"211 helenos_target = "i686-helenos" 212 212 213 213 if (config['PLATFORM'] == "ia64"): 214 214 platform = config['PLATFORM'] 215 215 gnu_target = "ia64-pc-linux-gnu" 216 helenos_target = "ia64- pc-helenos"216 helenos_target = "ia64-helenos" 217 217 218 218 if (config['PLATFORM'] == "mips32"):
Note:
See TracChangeset
for help on using the changeset viewer.