summaryrefslogtreecommitdiff
path: root/nuttx/ChangeLog
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-04-29 23:17:39 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-04-29 23:17:39 +0000
commit98377020572b2999771e89b3368d5772492603cc (patch)
tree8236d755cdfd0bd8f20fa168a0b84910ddbdf8f9 /nuttx/ChangeLog
parentabb501e6a313c7d79698b03a9ff9fd0a9da3bd2e (diff)
downloadnuttx-98377020572b2999771e89b3368d5772492603cc.tar.gz
nuttx-98377020572b2999771e89b3368d5772492603cc.tar.bz2
nuttx-98377020572b2999771e89b3368d5772492603cc.zip
Fix objcopy problem with newer toolchains
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1746 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/ChangeLog')
-rw-r--r--nuttx/ChangeLog5
1 files changed, 5 insertions, 0 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index ba377d494..e2c3431b1 100644
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -707,3 +707,8 @@
* SPI: Add a method to set the number of bits per word. Also add an
alternative interface for so that (eventually) I can phase the sndblock
and recvblock methods and replace them with a single exchange method
+ * Build: objcopy fails with toolchains that use newer GCC and binutils. The
+ following arguments need to be included in the objcopy command line "-R .note
+ -R .note.gnu.build-id -R .comment" This has bin fixed in arch/arm/src/Makefile,
+ but other architectures may have the same problem. Thanks to Dave Marples
+ for verifying this.