File tree 3 files changed +8
-13
lines changed
3 files changed +8
-13
lines changed Original file line number Diff line number Diff line change 69
69
70
70
echo 'SPHYNX_HOME=/tmp/sphynx' >> "${GITHUB_ENV}"
71
71
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}"
84
72
- name : Setup Android cross-compiler
85
73
if : false
86
74
uses : nttld/setup-ndk@main
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ set(CMAKE_SYSTEM_PROCESSOR "ia64")
3
3
4
4
set (TOOLCHAIN_PREFIX "${CMAKE_SYSTEM_PROCESSOR} -unknown-linux-gnu" )
5
5
6
- set (TOOLCHAIN_PATH "$ENV{LAX_HOME } " )
6
+ set (TOOLCHAIN_PATH "$ENV{OBGGCC_HOME } " )
7
7
8
8
set (CMAKE_C_COMPILER "${TOOLCHAIN_PATH} /bin/${TOOLCHAIN_PREFIX} -gcc" CACHE FILEPATH "cc" )
9
9
set (CMAKE_CXX_COMPILER "${TOOLCHAIN_PATH} /bin/${TOOLCHAIN_PREFIX} -g++" CACHE FILEPATH "c++" )
Original file line number Diff line number Diff line change 109
109
help = "Select which variant stream to download. Defaults to the variant stream with the highest bandwidth (bits per second)."
110
110
)
111
111
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
+
112
119
parser .add_argument (
113
120
"-c" ,
114
121
"--concurrency" ,
You can’t perform that action at this time.
0 commit comments