diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2024-01-31 15:35:33 +0100 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2024-01-31 15:35:33 +0100 |
| commit | d60ba04cf4d770288703649c761f17cf170f9cfc (patch) | |
| tree | 6b1ae2f652258b154bf1c5a0fd30e3658661542a | |
| parent | 8b3949497a675086f5f0da209a539caf613478ca (diff) | |
| download | box64-d60ba04cf4d770288703649c761f17cf170f9cfc.tar.gz box64-d60ba04cf4d770288703649c761f17cf170f9cfc.zip | |
[ANDROID] Fix build
| -rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index b5859ce2..d7e8abbd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -838,9 +838,9 @@ if(STATICBUILD) else() if(ANDROID) if(TERMUX) - target_link_libraries(${BOX64} c m dl util android-sysv-semaphore) + target_link_libraries(${BOX64} c m dl android-sysv-semaphore) else() - target_link_libraries(${BOX64} c m dl util) + target_link_libraries(${BOX64} c m dl) endif() else() set_target_properties(${BOX64} PROPERTIES LINK_FLAGS "-Wl,--no-as-needed -lc -lm -ldl -lrt -lpthread -lresolv -lutil -Wl,--as-needed -pthread") |