summaryrefslogtreecommitdiffstats
path: root/public/arm9-le-thumb-elf.inc
diff options
context:
space:
mode:
Diffstat (limited to 'public/arm9-le-thumb-elf.inc')
-rw-r--r--public/arm9-le-thumb-elf.inc59
1 files changed, 59 insertions, 0 deletions
diff --git a/public/arm9-le-thumb-elf.inc b/public/arm9-le-thumb-elf.inc
new file mode 100644
index 0000000..66cb0a3
--- /dev/null
+++ b/public/arm9-le-thumb-elf.inc
@@ -0,0 +1,59 @@
+#
+# Copyright (c) 2002-2008 Sam Leffler, Errno Consulting
+# Copyright (c) 2002-2008 Atheros Communications, Inc.
+#
+# Permission to use, copy, modify, and/or distribute this software for any
+# purpose with or without fee is hereby granted, provided that the above
+# copyright notice and this permission notice appear in all copies.
+#
+# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+#
+# $Id: arm9-le-thumb-elf.inc,v 1.2 2008/11/10 03:43:36 sam Exp $
+#
+
+#
+# Compilation configuration for building little-endian ARM9/arm-elf.
+#
+# Known to work on:
+# Arm940T
+
+#
+# Force register read/write operations to go through a function so
+# ARM users can implement a windowing scheme to access registers in
+# the PCI address space.
+#
+AH_REGOPS_FUNC=1
+
+#
+# Built with GNU cross-devel tools:
+#
+# PREFIX=/pub/gnu
+# BINUTILS=binutils-2.14
+# GCC=gcc-3.3.2
+# target=arm-elf
+#
+# ${BINUTILS}/configure --target=$target --prefix=${PREFIX}
+# ${GCC}/configure --target=$target --prefix=${PREFIX} \
+# --enable-languages=c --with-gnu-as --with-gnu-ld \
+# --with-newlib --with-gxx-include-dir=${PREFIX}/$target/include
+#
+ifndef TOOLPREFIX
+TOOLPREFIX= /pub/gnu/bin/arm-elf-
+endif
+#
+CC= ${TOOLPREFIX}gcc
+LD= ${TOOLPREFIX}ld
+STRIP= ${TOOLPREFIX}strip
+OBJCOPY=${TOOLPREFIX}objcopy
+NM= ${TOOLPREFIX}nm
+
+LDOPTS= -EL
+COPTS+= -DAH_BYTE_ORDER=AH_LITTLE_ENDIAN
+COPTS+= -mthumb -mlittle-endian -mcpu=arm9 \
+ -ffunction-sections -fdata-sections
OpenPOWER on IntegriCloud