mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
Attempt to fix broken compilation on some systems caused by #1074
This commit is contained in:
parent
0fde289e2f
commit
1855213c8f
1 changed files with 9 additions and 6 deletions
|
@ -502,13 +502,16 @@ else()
|
|||
# -DCHOST=... or -DCMAKE_AR=... and -DCMAKE_RANLIB=...
|
||||
if (DEFINED CHOST)
|
||||
set(CHOST_PREFIX "${CHOST}-")
|
||||
endif()
|
||||
if (NOT DEFINED CMAKE_AR)
|
||||
set(CMAKE_AR "${CHOST_PREFIX}gcc-ar")
|
||||
endif()
|
||||
if (NOT DEFINED CMAKE_RANLIB)
|
||||
set(CMAKE_RANLIB "${CHOST_PREFIX}gcc-ranlib")
|
||||
endif()
|
||||
else()
|
||||
set(CMAKE_AR "gcc-ar")
|
||||
set(CMAKE_RANLIB "gcc-ranlib")
|
||||
endif()
|
||||
endif()
|
||||
endif()
|
||||
|
||||
|
|
Loading…
Reference in a new issue