mirror of
https://github.com/void-linux/void-packages.git
synced 2025-06-05 06:33:50 +02:00
chromium: not using ld.gold fixes i686*
This commit is contained in:
parent
fd52d8b91a
commit
21ccbfcfc4
1 changed files with 2 additions and 5 deletions
|
@ -40,10 +40,6 @@ case "${XBPS_TARGET_MACHINE}" in
|
||||||
x86_64|i686) build_options_default+=" js_optimize" ;;
|
x86_64|i686) build_options_default+=" js_optimize" ;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
case "${XBPS_TARGET_MACHINE}" in
|
|
||||||
i686) broken="what(): std::bad_alloc during linking" ;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
post_extract() {
|
post_extract() {
|
||||||
case "${XBPS_TARGET_MACHINE}" in
|
case "${XBPS_TARGET_MACHINE}" in
|
||||||
*-musl)
|
*-musl)
|
||||||
|
@ -192,9 +188,10 @@ do_configure() {
|
||||||
'use_lld=false'
|
'use_lld=false'
|
||||||
)
|
)
|
||||||
|
|
||||||
# XXX: gold broken with musl
|
# XXX: gold broken with musl and i686
|
||||||
case "${XBPS_TARGET_MACHINE}" in
|
case "${XBPS_TARGET_MACHINE}" in
|
||||||
*-musl) conf+=( 'use_gold=false' ) ;;
|
*-musl) conf+=( 'use_gold=false' ) ;;
|
||||||
|
i686*) conf+=( 'use_gold=false' ) ;;
|
||||||
*) conf+=( 'use_gold=true' ) ;;
|
*) conf+=( 'use_gold=true' ) ;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue