Skip to content

Commit 21314fa

Browse files
committed
Default address size to 64
Get with the times and switch the default address size to 64. This will simplify dev environment setup as most people will be able to drop the AUTOBUILD_ADDRSIZE environment variable. Closes #45
1 parent 107f0ea commit 21314fa

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ For more information, see [Autobuild's wiki page][wiki].
2121

2222
| Name | Default | Description |
2323
|-|-|-|
24-
| AUTOBUILD_ADDRSIZE | 32 | Target address size |
24+
| AUTOBUILD_ADDRSIZE | 64 | Target address size |
2525
| AUTOBUILD_BUILD_ID | - | Build identifier |
2626
| AUTOBUILD_CONFIGURATION | - | Target build configuration |
2727
| AUTOBUILD_CONFIG_FILE | autobuild.xml | Autobuild configuration filename |

autobuild/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class AutobuildError(RuntimeError):
3939
PLATFORM_LINUX64 = 'linux64'
4040
PLATFORM_COMMON = 'common'
4141

42-
DEFAULT_ADDRSIZE = 32
42+
DEFAULT_ADDRSIZE = 64
4343

4444
# Similarly, if we have an explicit platform in the environment, keep it. We
4545
# used to query os.environ in establish_platform(), instead of up here. The

0 commit comments

Comments
 (0)