Changeset 349e510d in mainline
- Timestamp:
- 2012-06-27T20:34:18Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ae49252
- Parents:
- 02dcb20 (diff), baf8fbb (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/proc/thread.c
r02dcb20 r349e510d 277 277 278 278 cpu_t *cpu; 279 if (thread->wired ) {279 if (thread->wired || thread->nomigrate || thread->fpu_context_engaged) { 280 280 ASSERT(thread->cpu != NULL); 281 281 cpu = thread->cpu; -
tools/toolchain.sh
r02dcb20 r349e510d 319 319 320 320 change_title "binutils: configure (${PLATFORM})" 321 CFLAGS=-Wno-error ./configure "--target=${TARGET}" "--prefix=${PREFIX}" "--program-prefix=${TARGET}-" --disable-nls 321 CFLAGS=-Wno-error ./configure "--target=${TARGET}" "--prefix=${PREFIX}" "--program-prefix=${TARGET}-" --disable-nls --disable-werror 322 322 check_error $? "Error configuring binutils." 323 323 … … 331 331 332 332 change_title "GCC: configure (${PLATFORM})" 333 "${GCCDIR}/configure" "--target=${TARGET}" "--prefix=${PREFIX}" "--program-prefix=${TARGET}-" --with-gnu-as --with-gnu-ld --disable-nls --disable-threads --enable-languages=c,objc,c++,obj-c++ --disable-multilib --disable-libgcj --without-headers --disable-shared --enable-lto 333 "${GCCDIR}/configure" "--target=${TARGET}" "--prefix=${PREFIX}" "--program-prefix=${TARGET}-" --with-gnu-as --with-gnu-ld --disable-nls --disable-threads --enable-languages=c,objc,c++,obj-c++ --disable-multilib --disable-libgcj --without-headers --disable-shared --enable-lto --disable-werror 334 334 check_error $? "Error configuring GCC." 335 335
Note:
See TracChangeset
for help on using the changeset viewer.