Skip to content

Commit c6a7f24

Browse files
committed
Update to GCC 14.1.0
1 parent 3cc2efb commit c6a7f24

File tree

3 files changed

+8
-13
lines changed

3 files changed

+8
-13
lines changed

.github/workflows/build.yml

-12
Original file line numberDiff line numberDiff line change
@@ -69,18 +69,6 @@ jobs:
6969
7070
echo 'SPHYNX_HOME=/tmp/sphynx' >> "${GITHUB_ENV}"
7171
echo '/tmp/sphynx/bin' >> "${GITHUB_PATH}"
72-
- name: Setup Linux IA-64 cross-compiler
73-
if: false
74-
run: |
75-
declare -r LAX_TAG="$(jq --raw-output '.tag_name' <<< "$(curl --connect-timeout '10' --retry '15' --retry-all-errors --fail --silent --url 'https://api.github.com/repos/AmanoTeam/Lax/releases/latest')")"
76-
declare -r LAX_TARBALL='/tmp/toolchain.tar.xz'
77-
declare -r LAX_URL="https://github.com/AmanoTeam/Lax/releases/download/${LAX_TAG}/x86_64-unknown-linux-gnu.tar.xz"
78-
79-
curl --connect-timeout '10' --retry '15' --retry-all-errors --fail --silent --location --url "${LAX_URL}" --output "${LAX_TARBALL}"
80-
tar --directory="$(dirname "${LAX_TARBALL}")" --extract --file="${LAX_TARBALL}"
81-
82-
echo 'LAX_HOME=/tmp/lax' >> "${GITHUB_ENV}"
83-
echo '/tmp/lax/bin' >> "${GITHUB_PATH}"
8472
- name: Setup Android cross-compiler
8573
if: false
8674
uses: nttld/setup-ndk@main

.github/workflows/cmake_toolchains/ia64-unknown-linux-gnu.cmake

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ set(CMAKE_SYSTEM_PROCESSOR "ia64")
33

44
set(TOOLCHAIN_PREFIX "${CMAKE_SYSTEM_PROCESSOR}-unknown-linux-gnu")
55

6-
set(TOOLCHAIN_PATH "$ENV{LAX_HOME}")
6+
set(TOOLCHAIN_PATH "$ENV{OBGGCC_HOME}")
77

88
set(CMAKE_C_COMPILER "${TOOLCHAIN_PATH}/bin/${TOOLCHAIN_PREFIX}-gcc" CACHE FILEPATH "cc")
99
set(CMAKE_CXX_COMPILER "${TOOLCHAIN_PATH}/bin/${TOOLCHAIN_PREFIX}-g++" CACHE FILEPATH "c++")

tools/program_help.h.py

+7
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,13 @@
109109
help = "Select which variant stream to download. Defaults to the variant stream with the highest bandwidth (bits per second)."
110110
)
111111

112+
parser.add_argument(
113+
"--disable-autoselection",
114+
required = False,
115+
action = "store_true",
116+
help = "Avoid autoselection of streams based on predefined preferences set by the master playlist."
117+
)
118+
112119
parser.add_argument(
113120
"-c",
114121
"--concurrency",

0 commit comments

Comments
 (0)