From ab4ab761f0126e4d14f67200d9b23891dfeda229 Mon Sep 17 00:00:00 2001 From: Patrick Wuttke Date: Tue, 16 Jan 2024 19:11:51 +0100 Subject: [PATCH] Changed default architecture to x86_64 (i686 probably won't work anyway). --- SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index ee7bdb0..b33ae9f 100644 --- a/SConstruct +++ b/SConstruct @@ -8,7 +8,7 @@ AddOption( choices = ('i686', 'x86_64'), nargs = 1, action = 'store', - default = 'i686' + default = 'x86_64' ) target = GetOption('target')