Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ For more information, see [Autobuild's wiki page][wiki].

| Name | Default | Description |
|-|-|-|
| AUTOBUILD_ADDRSIZE | 32 | Target address size |
| AUTOBUILD_ADDRSIZE | 64 | Target address size |
| AUTOBUILD_BUILD_ID | - | Build identifier |
| AUTOBUILD_CONFIGURATION | - | Target build configuration |
| AUTOBUILD_CONFIG_FILE | autobuild.xml | Autobuild configuration filename |
Expand Down
2 changes: 1 addition & 1 deletion autobuild/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class AutobuildError(RuntimeError):
PLATFORM_LINUX64 = 'linux64'
PLATFORM_COMMON = 'common'

DEFAULT_ADDRSIZE = 32
DEFAULT_ADDRSIZE = 64

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