mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-01-10 21:04:32 +00:00
fix: add ldl to non-static linux builds
proposes a fix to add ldl conditionally on non-static build, to fix build failures
This commit is contained in:
parent
2e8306b341
commit
20517cfd4d
1 changed files with 3 additions and 1 deletions
|
@ -201,6 +201,9 @@ linux {
|
|||
contains(QT_ARCH, x86_64) {
|
||||
LIBS+= -lunbound
|
||||
}
|
||||
} else {
|
||||
# On some distro's we need to all dynload
|
||||
LIBS+= -ldl
|
||||
}
|
||||
|
||||
LIBS+= \
|
||||
|
@ -214,7 +217,6 @@ linux {
|
|||
-lboost_program_options \
|
||||
-lssl \
|
||||
-lcrypto \
|
||||
-ldl \
|
||||
-Wl,-Bdynamic \
|
||||
-lGL
|
||||
# currently monero has an issue with "static" build and linunwind-dev,
|
||||
|
|
Loading…
Reference in a new issue