monero-gui: use -latomic on ppc

Signed-off-by: Jürgen Buchmüller <pullmoll@t-online.de>
This commit is contained in:
Thomas Batten 2019-05-31 11:02:45 +09:30 committed by Jürgen Buchmüller
parent 18d512a8ec
commit 5458d492a4
No known key found for this signature in database
GPG key ID: DE55AD8DBEBB4EE8

View file

@ -18,7 +18,7 @@ pre_configure() {
echo "var GUI_VERSION = \"${version}\"" > version.js
echo "var GUI_MONERO_VERSION = \"${version}\"" >> version.js
case "$XBPS_TARGET_MACHINE" in
armv[56]*) # armv[56]* need to link libatomic.a for __atomic_fetch_sub_8
armv[56]*|ppc|ppc-musl) # armv[56]* and ppc need to link libatomic.a for __atomic_fetch_sub_8
sed -i *.pro -e "s;-leasylogging;-leasylogging -latomic;"
;;
esac