diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2018-02-19 23:39:56 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2018-02-19 23:39:56 +0100 |
commit | 1602e0cdb9b4f41faba330537f97f8ed8f381b80 (patch) | |
tree | dd4187a1e3e52a5ed4af9337c971c8b9a0f7736e /SConstruct | |
parent | 3e6f2b7d9812b952f7af255a05bfb3fba1e1bf23 (diff) | |
download | redot-engine-1602e0cdb9b4f41faba330537f97f8ed8f381b80.tar.gz |
SCons: Remove references to obsolete "fat" bits
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/SConstruct b/SConstruct index b8d3427690..14f576c595 100644 --- a/SConstruct +++ b/SConstruct @@ -145,7 +145,7 @@ opts = Variables(customs, ARGUMENTS) # Target build options opts.Add('arch', "Platform-dependent architecture (arm/arm64/x86/x64/mips/etc)", '') -opts.Add(EnumVariable('bits', "Target platform bits", 'default', ('default', '32', '64', 'fat'))) +opts.Add(EnumVariable('bits', "Target platform bits", 'default', ('default', '32', '64'))) opts.Add('p', "Platform (alias for 'platform')", '') opts.Add('platform', "Target platform (%s)" % ('|'.join(platform_list), ), '') opts.Add(EnumVariable('target', "Compilation target", 'debug', ('debug', 'release_debug', 'release'))) @@ -382,8 +382,6 @@ if selected_platform in platform_list: suffix += ".32" elif (env["bits"] == "64"): suffix += ".64" - elif (env["bits"] == "fat"): - suffix += ".fat" suffix += env.extra_suffix |