summaryrefslogtreecommitdiffstats
path: root/cpukit/score
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2010-05-10 20:29:13 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2010-05-10 20:29:13 +0000
commitb2f251a8c2342eebcdbc38f12048708b87364740 (patch)
treeca76ffcb5c9c8c430db726dcdc5a8fc1d39a5e4f /cpukit/score
parent2010-05-10 Joel Sherrill <joel.sherrilL@OARcorp.com> (diff)
downloadrtems-b2f251a8c2342eebcdbc38f12048708b87364740.tar.bz2
2010-05-10 Joel Sherrill <joel.sherrilL@OARcorp.com>
* rtems/score/arm.h: Make it a warning not error that the FPU multilib is not supported yet.
Diffstat (limited to 'cpukit/score')
-rw-r--r--cpukit/score/cpu/arm/ChangeLog5
-rw-r--r--cpukit/score/cpu/arm/rtems/score/arm.h2
2 files changed, 6 insertions, 1 deletions
diff --git a/cpukit/score/cpu/arm/ChangeLog b/cpukit/score/cpu/arm/ChangeLog
index 81e582ba19..e7c347f590 100644
--- a/cpukit/score/cpu/arm/ChangeLog
+++ b/cpukit/score/cpu/arm/ChangeLog
@@ -1,3 +1,8 @@
+2010-05-10 Joel Sherrill <joel.sherrilL@OARcorp.com>
+
+ * rtems/score/arm.h: Make it a warning not error that the FPU multilib
+ is not supported yet.
+
2010-04-08 Sebastian Huber <sebastian.huber@embedded-brains.de>
* arm_exc_abort.S, arm_exc_handler_high.c, arm_exc_handler_low.S,
diff --git a/cpukit/score/cpu/arm/rtems/score/arm.h b/cpukit/score/cpu/arm/rtems/score/arm.h
index 42ad413512..d74765c5f7 100644
--- a/cpukit/score/cpu/arm/rtems/score/arm.h
+++ b/cpukit/score/cpu/arm/rtems/score/arm.h
@@ -79,7 +79,7 @@ extern "C" {
#define ARM_HAS_FPU 0
#else
#define ARM_HAS_FPU 1
-# error "FPU-support not yet implemented for the arm"
+#warning "FPU-support not yet implemented for the arm"
#endif