From 360b66bdc1f710104c088f4c0948af3b3a8c474e Mon Sep 17 00:00:00 2001 From: "Brad Payne (Vir Linden)" Date: Wed, 27 Jan 2021 20:30:52 +0000 Subject: SL-14570 - test 64-bit toolchain for build issues --- BuildParams | 2 ++ 1 file changed, 2 insertions(+) (limited to 'BuildParams') diff --git a/BuildParams b/BuildParams index c5f96d5ee3..bf0eba3e66 100755 --- a/BuildParams +++ b/BuildParams @@ -35,6 +35,8 @@ buildscripts_shared_more_NAMEs="build_secrets build_variables" # should use a viewer_channel that begins with "Second Life" ################################################################ viewer_channel = "Second Life Test" +PreferredToolArchitecture = "x64" + ################################################################ # Special packaging parameters. -- cgit v1.2.3 From dad963eadc3498d2ca8c13b9586f2a4472a824e8 Mon Sep 17 00:00:00 2001 From: "Brad Payne (Vir Linden)" Date: Fri, 29 Jan 2021 20:36:47 +0000 Subject: SL-14570 - moving windows 64-bit toolchain setting to build config params --- BuildParams | 1 - 1 file changed, 1 deletion(-) (limited to 'BuildParams') diff --git a/BuildParams b/BuildParams index bf0eba3e66..e55c0c7bda 100755 --- a/BuildParams +++ b/BuildParams @@ -35,7 +35,6 @@ buildscripts_shared_more_NAMEs="build_secrets build_variables" # should use a viewer_channel that begins with "Second Life" ################################################################ viewer_channel = "Second Life Test" -PreferredToolArchitecture = "x64" ################################################################ -- cgit v1.2.3 From f729cfc33f258781c5fd85a3d8773bf6149d12db Mon Sep 17 00:00:00 2001 From: Bennett Goble Date: Sat, 5 Jun 2021 22:02:54 -0700 Subject: SL-15742: Convert build scripts to Python 3 This changeset makes it possible to build the Second Life viewer using Python 3. It is designed to be used with an equivalent Autobuild branch so that a developer can compile without needing Python 2 on their machine. Breaking change: Python 2 support ending Rather than supporting two versions of Python, including one that was discontinued at the beginning of the year, this branch focuses on pouring future effort into Python 3 only. As a result, scripts do not need to be backwards compatible. This means that build environments, be they on personal computers and on build agents, need to have a compatible interpreter. Notes - SLVersionChecker will still use Python 2 on macOS - Fixed the message template url used by template_verifier.py --- BuildParams | 3 +++ 1 file changed, 3 insertions(+) (limited to 'BuildParams') diff --git a/BuildParams b/BuildParams index c5f96d5ee3..ce2eee73df 100644 --- a/BuildParams +++ b/BuildParams @@ -16,6 +16,9 @@ build_Linux_Doxygen = true # Need viewer-build-variables as well as other shared repositories buildscripts_shared_more_NAMEs="build_secrets build_variables" +# Python 3 / SL-15742 +BUILDSCRIPTS_PY3 = "true" + ################################################################ #### Examples of how to set the viewer_channel #### # -- cgit v1.2.3