Differences From Artifact [2ac906deae]:
- File configure.ac — part of check-in [2db4aee23f] at 2013-07-05 20:02:01 on branch trunk — Warn if atomic ops AND spinlocks are missing. (user: js, size: 24072) [annotate] [blame] [check-ins using]
To Artifact [6f64066a18]:
- File
configure.ac
— part of check-in
[9c630f8f86]
at
2013-07-06 00:21:44
on branch trunk
— Add MIPS/ELF assembly lookup implementation.
Only tested on the PSP so far. (user: js, size: 24352) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
285 286 287 288 289 290 291 292 293 294 295 296 297 298 | #if defined(__arm__) || defined(__ARM__) # ifdef __ELF__ yes # endif #endif ], [ AC_SUBST(LOOKUP_S, lookup-arm-elf.S) AC_DEFINE(OF_ASM_LOOKUP, 1, [Whether to use assembly for lookup]) ]) AS_IF([test x"$enable_seluid24" = x"yes"], [ AC_DEFINE(OF_SELUID24, 1, [Whether to use 24 bit selector UIDs]) | > > > > > > > > > > > > | 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 | #if defined(__arm__) || defined(__ARM__) # ifdef __ELF__ yes # endif #endif ], [ AC_SUBST(LOOKUP_S, lookup-arm-elf.S) AC_DEFINE(OF_ASM_LOOKUP, 1, [Whether to use assembly for lookup]) ]) AC_EGREP_CPP(yes, [ #if defined(__mips) && __mips < 64 && defined(__ELF__) # if defined(_MIPSEL) || defined(_MIPSEB) yes # endif #endif ], [ AC_SUBST(LOOKUP_S, lookup-mips-elf.S) AC_DEFINE(OF_ASM_LOOKUP, 1, [Whether to use assembly for lookup]) ]) AS_IF([test x"$enable_seluid24" = x"yes"], [ AC_DEFINE(OF_SELUID24, 1, [Whether to use 24 bit selector UIDs]) |
︙ | ︙ |