summaryrefslogtreecommitdiff
path: root/nuttx/configs/eagle100/README.txt
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-10-22 00:11:53 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-10-22 00:11:53 +0000
commitdde0b1c89a0c536b25f6cf95f267109f4b2881a6 (patch)
treedf49a4f3c09b353545c752203f42960707ca08a8 /nuttx/configs/eagle100/README.txt
parentee03f17c11f74c8592450aad6f3f8f63be22a59f (diff)
downloadpx4-nuttx-dde0b1c89a0c536b25f6cf95f267109f4b2881a6.tar.gz
px4-nuttx-dde0b1c89a0c536b25f6cf95f267109f4b2881a6.tar.bz2
px4-nuttx-dde0b1c89a0c536b25f6cf95f267109f4b2881a6.zip
Misc. mosty USB-related updates
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@2167 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/configs/eagle100/README.txt')
-rw-r--r--nuttx/configs/eagle100/README.txt17
1 files changed, 17 insertions, 0 deletions
diff --git a/nuttx/configs/eagle100/README.txt b/nuttx/configs/eagle100/README.txt
index 4f992935c..67186d33a 100644
--- a/nuttx/configs/eagle100/README.txt
+++ b/nuttx/configs/eagle100/README.txt
@@ -81,6 +81,23 @@ GNU Toolchain Options
the paths to Cygwin's /bin and /usr/bin directories appear BEFORE the devkitARM
path or will get the wrong version of make.
+CodeSourcery on Linux
+^^^^^^^^^^^^^^^^^^^^^
+
+ If you select the CodeSourcery toolchain, the make system will assume that you
+ are running a Windows version of the toolchain. If you are running under Linux,
+ the the make will probably fail. The fix is to edit your Make.defs file and
+ use something like:
+
+ CROSSDEV = arm-none-eabi-
+ WINTOOL = n
+ MKDEP = $(TOPDIR)/tools/mkdeps.sh
+ ARCHCPUFLAGS = -mcpu=cortex-m3 -mthumb -mfloat-abi=soft
+ ARCHINCLUDES = -I. -isystem $(TOPDIR)/include
+ ARCHXXINCLUDES = -I. -isystem $(TOPDIR)/include -isystem $(TOPDIR)/include/cxx
+ ARCHSCRIPT = -T$(TOPDIR)/configs/$(CONFIG_ARCH_BOARD)/ostest/$(LDSCRIPT)
+ MAXOPTIMIZATION = -O2
+
NuttX buildroot Toolchain
^^^^^^^^^^^^^^^^^^^^^^^^^