summaryrefslogtreecommitdiff
path: root/src/runtime/c/configure.ac
diff options
context:
space:
mode:
authorkr.angelov <kr.angelov@gmail.com>2013-06-20 08:27:04 +0000
committerkr.angelov <kr.angelov@gmail.com>2013-06-20 08:27:04 +0000
commitfa7ac00838827672f5c4a08dd1a37021285326e6 (patch)
treeafa7fced77a8eb31ff83793bc206022094c369c5 /src/runtime/c/configure.ac
parentf8073ea1cd935154a50b0b9b8221db1254119100 (diff)
add x86_64 support to GNU lightning
Diffstat (limited to 'src/runtime/c/configure.ac')
-rw-r--r--src/runtime/c/configure.ac2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/runtime/c/configure.ac b/src/runtime/c/configure.ac
index 82f941cb5..2ead33e3d 100644
--- a/src/runtime/c/configure.ac
+++ b/src/runtime/c/configure.ac
@@ -43,6 +43,8 @@ AC_C_ASCII
case "$target_cpu" in
i?86) cpu=i386; AC_DEFINE(LIGHTNING_I386, 1,
[Define if lightning is targeting the x86 architecture]) ;;
+ x86_64) cpu=i386; AC_DEFINE(LIGHTNING_I386, 1,
+ [Define if lightning is targeting the x86 architecture]) ;;
sparc*) cpu=sparc; AC_DEFINE(LIGHTNING_SPARC, 1,
[Define if lightning is targeting the x86 architecture]) ;;
powerpc) cpu=ppc; AC_DEFINE(LIGHTNING_PPC, 1,