diff options
author | Liav A <liavalb@gmail.com> | 2022-10-02 20:55:22 +0300 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-10-03 11:14:53 +0200 |
commit | 74018be739aa8fee6979c750beee0105867f6dcc (patch) | |
tree | b33bc4d46484a4ad2bd2431a9376270b07c2b024 /Meta/CMake | |
parent | 4e0f85432a5d7b53555da25c39dee6f6d093f1b9 (diff) | |
download | serenity-74018be739aa8fee6979c750beee0105867f6dcc.zip |
Meta: Make x86-64 target the default
This is a preparation to check if our users find noticeable bugs in the
x86-64 target, before we can decide if we want to remove the i686 target
for good.
Diffstat (limited to 'Meta/CMake')
-rw-r--r-- | Meta/CMake/Superbuild/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Meta/CMake/Superbuild/CMakeLists.txt b/Meta/CMake/Superbuild/CMakeLists.txt index cf774748fb..b9b866ef9f 100644 --- a/Meta/CMake/Superbuild/CMakeLists.txt +++ b/Meta/CMake/Superbuild/CMakeLists.txt @@ -32,7 +32,7 @@ get_filename_component( SERENITY_SOURCE_DIR "${PROJECT_SOURCE_DIR}/../../.." ABSOLUTE CACHE ) -set(SERENITY_ARCH "i686" CACHE STRING "Target architecture for SerenityOS.") +set(SERENITY_ARCH "x86_64" CACHE STRING "Target architecture for SerenityOS.") set(SERENITY_TOOLCHAIN "GNU" CACHE STRING "Compiler toolchain to use for Serenity (GNU or Clang)") # FIXME: It is preferred to keep all the sub-build artifacts below the binary directory for the superbuild |