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.
This commit is contained in:
Liav A 2022-10-02 20:55:22 +03:00 committed by Andreas Kling
commit 74018be739
Notes: sideshowbarker 2024-07-17 06:24:09 +09:00
9 changed files with 12 additions and 12 deletions

View file

@ -91,7 +91,7 @@ fi
if [ -n "$1" ]; then
TARGET="$1"; shift
else
TARGET="${SERENITY_ARCH:-"i686"}"
TARGET="${SERENITY_ARCH:-"x86_64"}"
fi
CMAKE_ARGS=()