mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-22 06:07:49 +00:00
17 lines
323 B
Bash
17 lines
323 B
Bash
# 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
|
|
|
|
}
|