You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
problem: when the `-lt` flag was used with libtorrent `v1.2` like `-lt v1.2.20` boost was not being defaulted `boost-1.86.0` as it does when setting the env equivalent causing a build error when libtorrent was built.
fix: the flag now properly checks and sets boost to `boost-1.86.0` when libtorrent `v1.2` is being built.
[[ "${github_tag[libtorrent]}"=~ ^RC_ ]] && app_version[libtorrent]="RC_${app_version[libtorrent]//\./_}"# set back to RC_... so that release info has proper version context
# If libtorrent v1.2 is used then set default boost tag to boost-1.86.0
2157
+
if [[ "${qbt_libtorrent_version}"=="1.2"||"${github_tag[libtorrent]}"=~ ^(v1\.2\.|RC_1_2) ]];then
2158
+
github_tag[boost]="boost-1.86.0"
2159
+
app_version[boost]="${github_tag[boost]#boost-}"
2160
+
_boost_url
2161
+
fi
2155
2162
shift 2
2156
2163
else
2157
2164
printf'\n%b\n\n'"${unicode_red_circle}${color_yellow_light}You must provide a tag for this switch:${color_end}${color_blue_light}${1} TAG ${color_end}"
[[ "${github_tag[libtorrent]}"=~ ^RC_ ]] && app_version[libtorrent]="RC_${app_version[libtorrent]//\./_}"# set back to RC_... so that release info has proper version context
# If libtorrent v1.2 is used then set default boost tag to boost-1.86.0
2387
+
if [[ "${qbt_libtorrent_version}"=="1.2"||"${github_tag[libtorrent]}"=~ ^(v1\.2\.|RC_1_2) ]];then
2388
+
github_tag[boost]="boost-1.86.0"
2389
+
app_version[boost]="${github_tag[boost]#boost-}"
2390
+
_boost_url
2391
+
fi
2385
2392
shift 2
2386
2393
else
2387
2394
printf'\n%b\n\n'"${unicode_red_circle}${color_yellow_light}You must provide a tag for this switch:${color_end}${color_blue_light}${1} TAG ${color_end}"
0 commit comments