Commit 776c9a0d by Sebastian Huber Committed by Joel Sherrill

config.gcc (*-*-rtems*): Default to 'rtems' thread model.

2014-09-17  Sebastian Huber  <sebastian.huber@embedded-brains.de>

	* config.gcc (*-*-rtems*): Default to 'rtems' thread model.
	Enable selection of 'posix' or no thread model.

From-SVN: r215324
parent 580d22a3
2014-09-17 Sebastian Huber <sebastian.huber@embedded-brains.de>
* config.gcc (*-*-rtems*): Default to 'rtems' thread model.
Enable selection of 'posix' or no thread model.
2014-09-17 Andrew Stubbs <ams@codesourcery.com> 2014-09-17 Andrew Stubbs <ams@codesourcery.com>
* config/arm/arm.c (arm_option_override): Reject -mfpu=neon * config/arm/arm.c (arm_option_override): Reject -mfpu=neon
...@@ -785,7 +785,13 @@ case ${target} in ...@@ -785,7 +785,13 @@ case ${target} in
;; ;;
*-*-rtems*) *-*-rtems*)
case ${enable_threads} in case ${enable_threads} in
yes) thread_file='rtems' ;; "" | yes | rtems) thread_file='rtems' ;;
posix) thread_file='posix' ;;
no) ;;
*)
echo 'Unknown thread configuration for RTEMS'
exit 1
;;
esac esac
tmake_file="${tmake_file} t-rtems" tmake_file="${tmake_file} t-rtems"
extra_options="${extra_options} rtems.opt" extra_options="${extra_options} rtems.opt"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment