Skip to content

Commit

Permalink
make 64-bit builds the default for scons
Browse files Browse the repository at this point in the history
  • Loading branch information
NQNStudios committed Jun 12, 2024
1 parent 0db1557 commit 5633bde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SConstruct
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ opts = Variables(None, ARGUMENTS)
opts.Add(EnumVariable('OS', "Target platform", str(Platform()), ('darwin', 'win32', 'posix')))
opts.Add('toolset', "Toolset to pass to the SCons builder", 'default')
opts.Add(BoolVariable('debug', "Build with debug symbols and no optimization", False))
opts.Add(EnumVariable('bits', "Build for 32-bit or 64-bit architectures", '32', ('32', '64')))
opts.Add(EnumVariable('bits', "Build for 32-bit or 64-bit architectures", '64', ('32', '64')))

# Partial build flags -- by default, all targets will be built,
# but if at least one is specified, ONLY the specified targets will be built
Expand Down

0 comments on commit 5633bde

Please sign in to comment.