From 3928af1d744f602d3f67b746d9649d3d715d0633 Mon Sep 17 00:00:00 2001 From: NicJA Date: Tue, 19 May 2015 21:28:58 +0000 Subject: [PATCH] wip. add the smp variant option for pc-x86_64 also git-svn-id: https://svn.aros.org/svn/aros/trunk/AROS@50717 fb15a70f-31f2-0310-bbcc-cdcc74a49acc --- configure | 6 ++++++ configure.in | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/configure b/configure index bde71c2566..de378f7106 100755 --- a/configure +++ b/configure @@ -8028,6 +8028,7 @@ case "$target_os" in ;; *x86_64*) aros_target_cpu="x86_64" + ENABLE_EXECSMP="#define __AROSEXEC_SMP__" aros_serial_debug=1 if test "$aros_object_format" = "" ; then aros_object_format="elf_x86_64" @@ -8038,6 +8039,11 @@ case "$target_os" in aros_kernel_ldflags="" aros_default_wbwidth=640 aros_default_wbheight=480 + case "$aros_target_variant" in + smp) + ENABLE_EXECSMP="#define __AROSEXEC_SMP__" + ;; + esac ;; *) as_fn_error $? "\"Unknown native CPU -- $target_cpu\"" "$LINENO" 5 diff --git a/configure.in b/configure.in index 871f8503dc..c31dcaa6cc 100644 --- a/configure.in +++ b/configure.in @@ -1003,6 +1003,7 @@ case "$target_os" in ;; *x86_64*) aros_target_cpu="x86_64" + ENABLE_EXECSMP="#define __AROSEXEC_SMP__" aros_serial_debug=1 if test "$aros_object_format" = "" ; then aros_object_format="elf_x86_64" @@ -1013,6 +1014,11 @@ case "$target_os" in aros_kernel_ldflags="" aros_default_wbwidth=640 aros_default_wbheight=480 + case "$aros_target_variant" in + smp) + ENABLE_EXECSMP="#define __AROSEXEC_SMP__" + ;; + esac ;; *) AC_MSG_ERROR("Unknown native CPU -- $target_cpu") -- 2.11.4.GIT