Skip to content

Commit

Permalink
Monero GUI: add -latomic for 32bit architectures
Browse files Browse the repository at this point in the history
  • Loading branch information
theofficialgman authored Oct 1, 2024
1 parent 0ef30bf commit aeb3467
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion apps/Monero GUI/install
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,11 @@ git_clone --recursive https://github.com/monero-project/monero-gui || exit 1

#compile
cd /tmp/monero-gui
make release -j$(nproc) || error "Compiling monero-gui failed. Check errors above."
if [ "$arch" == 32 ]; then
LDFLAGS=-latomic make release -j$(nproc) || error "Compiling monero-gui failed. Check errors above."
else
make release -j$(nproc) || error "Compiling monero-gui failed. Check errors above."
fi
cd

IFS=$'\n'
Expand Down

0 comments on commit aeb3467

Please sign in to comment.