Changeset 6db5d4b in mainline
- Timestamp:
- 2013-05-30T23:49:03Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 533e2d7, 8876b0d, dff90fa7
- Parents:
- 0e575cd
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
HelenOS.config
r0e575cd r6db5d4b 304 304 @ "gcc_cross" GNU C Compiler (cross-compiler) 305 305 @ "gcc_native" GNU C Compiler (native) 306 ! [PLATFORM=sparc64] COMPILER (choice) 307 308 % Compiler 309 @ "gcc_cross" GNU C Compiler (cross-compiler) 310 @ "gcc_native" GNU C Compiler (native) 311 ! [PLATFORM=arm32|PLATFORM=mips32|PLATFORM=mips64|PLATFORM=ppc32] COMPILER (choice) 306 ! [PLATFORM=mips32|PLATFORM=mips64|PLATFORM=ppc32] COMPILER (choice) 312 307 313 308 % Compiler … … 315 310 @ "gcc_native" GNU C Compiler (native) 316 311 @ "clang" Clang 317 ! [PLATFORM=abs32le ] COMPILER (choice)312 ! [PLATFORM=abs32le|PLATFORM=arm32|PLATFORM=sparc64] COMPILER (choice) 318 313 319 314 -
tools/autotool.py
r0e575cd r6db5d4b 194 194 if (config['CROSS_TARGET'] == "arm32"): 195 195 gnu_target = "arm-linux-gnueabi" 196 clang_target = "arm-unknown-linux" 196 197 197 198 if (config['CROSS_TARGET'] == "ia32"): 198 199 gnu_target = "i686-pc-linux-gnu" 200 clang_target = "i386-unknown-linux" 199 201 200 202 if (config['CROSS_TARGET'] == "mips32"): 201 203 gnu_target = "mipsel-linux-gnu" 204 clang_target = "mipsel-unknown-linux" 202 205 common['CC_ARGS'].append("-mabi=32") 203 206 … … 210 213 target = config['PLATFORM'] 211 214 gnu_target = "arm-linux-gnueabi" 215 clang_target = "arm-unknown-linux" 212 216 213 217 if (config['PLATFORM'] == "ia32"): … … 227 231 target = config['PLATFORM'] 228 232 gnu_target = "mipsel-linux-gnu" 233 clang_target = "mipsel-unknown-linux" 229 234 230 235 if ((config['MACHINE'] == "bmalta")): 231 236 target = "mips32eb" 232 237 gnu_target = "mips-linux-gnu" 238 clang_target = "mips-unknown-linux" 233 239 234 240 if (config['PLATFORM'] == "mips64"): … … 239 245 target = config['PLATFORM'] 240 246 gnu_target = "mips64el-linux-gnu" 247 clang_target = "mips64el-unknown-linux" 241 248 242 249 if (config['PLATFORM'] == "ppc32"): 243 250 target = config['PLATFORM'] 244 251 gnu_target = "ppc-linux-gnu" 252 clang_target = "powerpc-unknown-linux" 245 253 246 254 if (config['PLATFORM'] == "sparc64"): 247 255 target = config['PLATFORM'] 248 256 gnu_target = "sparc64-linux-gnu" 257 clang_target = "sparc-unknown-linux" 249 258 250 259 return (target, cc_args, gnu_target, clang_target)
Note:
See TracChangeset
for help on using the changeset viewer.