summaryrefslogtreecommitdiff
path: root/config/arch/x86_64
diff options
context:
space:
mode:
Diffstat (limited to 'config/arch/x86_64')
-rw-r--r--config/arch/x86_64/config.in9
-rw-r--r--config/arch/x86_64/functions6
2 files changed, 15 insertions, 0 deletions
diff --git a/config/arch/x86_64/config.in b/config/arch/x86_64/config.in
new file mode 100644
index 0000000..83b6e83
--- /dev/null
+++ b/config/arch/x86_64/config.in
@@ -0,0 +1,9 @@
+# x86_64 specific options
+
+config ARCH_x86_64
+ select ARCH_SUPPORT_ARCH
+ select ARCH_SUPPORT_CPU
+ select ARCH_SUPPORT_TUNE
+ help
+ The x86_64 architecture, as defined by:
+ http://www.amd.com/us-en/Processors/DevelopWithAMD/0,,30_2252_875_7044,00.html
diff --git a/config/arch/x86_64/functions b/config/arch/x86_64/functions
new file mode 100644
index 0000000..2626abf
--- /dev/null
+++ b/config/arch/x86_64/functions
@@ -0,0 +1,6 @@
+# Compute x86_64-specific values
+
+CT_DoArchValues() {
+ # The architecture part of the tuple:
+ CT_TARGET_ARCH="${CT_ARCH}"
+}