diff options
author | Bryan Hundven <bryanhundven@gmail.com> | 2015-01-26 11:59:19 -0800 |
---|---|---|
committer | Bryan Hundven <bryanhundven@gmail.com> | 2015-01-26 11:59:19 -0800 |
commit | 6f72000ea87e18ed419a3c1100fce7c11062e526 (patch) | |
tree | f68f3abdbf5355ad480de2c19b78d0070870788a | |
parent | 0a6b755fea0385bc38d07cacc059258338b5be65 (diff) | |
parent | 4ac1653f942bbabc4aa8bdf0bd61107ec81f175d (diff) | |
download | crosstool-ng-6f72000ea87e18ed419a3c1100fce7c11062e526.tar.gz crosstool-ng-6f72000ea87e18ed419a3c1100fce7c11062e526.tar.bz2 crosstool-ng-6f72000ea87e18ed419a3c1100fce7c11062e526.zip |
Merge pull request #35 from netzimme/master
arch/nios2:add nios2
-rw-r--r-- | config/arch/nios2.in | 9 | ||||
-rw-r--r-- | scripts/build/arch/nios2.sh | 13 |
2 files changed, 22 insertions, 0 deletions
diff --git a/config/arch/nios2.in b/config/arch/nios2.in new file mode 100644 index 00000000..2674bfd0 --- /dev/null +++ b/config/arch/nios2.in @@ -0,0 +1,9 @@ +# NIOS232 specific configuration file + +## select ARCH_SUPPORTS_32 +## select ARCH_DEFAULT_32 +## select ARCH_DEFAULT_LE +## select ARCH_SUPPORTS_WITH_CPU +## +## help The NIOS2 architecture, as defined by: +## help http://www.altera.com diff --git a/scripts/build/arch/nios2.sh b/scripts/build/arch/nios2.sh new file mode 100644 index 00000000..8c7d4451 --- /dev/null +++ b/scripts/build/arch/nios2.sh @@ -0,0 +1,13 @@ +# Compute NIOS2-specific values + +CT_DoArchTupleValues() { + # 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=elf + +} |