summaryrefslogtreecommitdiff
path: root/scripts/build/arch
diff options
context:
space:
mode:
authorMartin Lund" <mgl@doredevelopment.dk>2009-05-22 14:46:18 (GMT)
committerMartin Lund" <mgl@doredevelopment.dk>2009-05-22 14:46:18 (GMT)
commita94b87075666680ca0285cd67efc253a5089756f (patch)
treebe807969719bedc90975851175e8759804d6a9a2 /scripts/build/arch
parent7c893bce09f49acab08a2795ff36c066e5ed44fd (diff)
Added initial AVR32 support (bare-metal,newlib)
Diffstat (limited to 'scripts/build/arch')
-rw-r--r--scripts/build/arch/avr32.sh16
1 files changed, 16 insertions, 0 deletions
diff --git a/scripts/build/arch/avr32.sh b/scripts/build/arch/avr32.sh
new file mode 100644
index 0000000..03843a7
--- /dev/null
+++ b/scripts/build/arch/avr32.sh
@@ -0,0 +1,16 @@
+# Compute AVR32-specific values
+
+CT_DoArchTupleValues() {
+ # The architecture part of the tuple:
+ CT_TARGET_ARCH="${CT_ARCH}"
+
+ # gcc ./configure flags
+ CT_ARCH_WITH_ARCH=
+ CT_ARCH_WITH_ABI=
+ CT_ARCH_WITH_CPU=
+ CT_ARCH_WITH_TUNE=
+ CT_ARCH_WITH_FPU=
+ CT_ARCH_WITH_FLOAT=
+ CT_TARGET_SYS=none
+
+}