Skip to content

Commit

Permalink
Merge pull request #630
Browse files Browse the repository at this point in the history
b4f01b9 linux32: use vendored libunbound (Jaquee)
f653535 linux 32 build config test (Jaquee)
  • Loading branch information
fluffypony committed Mar 28, 2017
2 parents a154eab + b4f01b9 commit 4ca35af
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion get_libwallet_api.sh
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ elif [ "$platform" == "linux64" ]; then
elif [ "$platform" == "linux32" ]; then
echo "Configuring build for Linux i686"
if [ "$STATIC" == true ]; then
cmake -D CMAKE_BUILD_TYPE=$CMAKE_BUILD_TYPE -D STATIC=ON -D ARCH="i686" -D BUILD_64=OFF -D BUILD_GUI_DEPS=ON -D CMAKE_INSTALL_PREFIX="$MONERO_DIR" ../..
cmake -D CMAKE_BUILD_TYPE=$CMAKE_BUILD_TYPE -D STATIC=ON -D ARCH="i686" -D BUILD_64=OFF -D BUILD_GUI_DEPS=ON -D INSTALL_VENDORED_LIBUNBOUND=ON -D CMAKE_INSTALL_PREFIX="$MONERO_DIR" ../..
else
cmake -D CMAKE_BUILD_TYPE=$CMAKE_BUILD_TYPE -D BUILD_GUI_DEPS=ON -D CMAKE_INSTALL_PREFIX="$MONERO_DIR" ../..
fi
Expand Down
4 changes: 2 additions & 2 deletions monero-wallet-gui.pro
Original file line number Diff line number Diff line change
Expand Up @@ -217,9 +217,9 @@ linux {
message("using static libraries")
LIBS+= -Wl,-Bstatic
QMAKE_LFLAGS += -static-libgcc -static-libstdc++
contains(QT_ARCH, x86_64) {
# contains(QT_ARCH, x86_64) {
LIBS+= -lunbound
}
# }
} else {
# On some distro's we need to add dynload
LIBS+= -ldl
Expand Down

0 comments on commit 4ca35af

Please sign in to comment.