Skip to content

Commit a82046e

Browse files
author
Luke
authored
fix linker flag for android and add separate base64 note to changelog (#123)
1 parent a6f8392 commit a82046e

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ The format is based on [keep a changelog](http://keepachangelog.com/) and this p
1212
- Fixed encoding issue with some cursors sent to the server.
1313
- Fixed an exception that could be thrown when the client sent match data over a bad network.
1414
- Upgraded libcurl to 7.88.1 which fixed a rare Websocket SSL handshake issue on Unix systems.
15+
- Fixed base64 dependency in Android SSL for broader Android API level support.
1516

1617
### Changed
1718
- Improved build automation around test suite.

cmake/linkerFlagsTargets.cmake

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU" OR CMAKE_CXX_COMPILER_ID STREQUAL "Clang
44
# like when we link libc++ statically or openssl
55
# NOTE: target specifically nakama-sdk (our library), because we DONT want it to be set on
66
# nakama-test (test executable) in some cases (namely when linking libc++ statically)
7-
target_link_options(nakama-sdk PRIVATE -Wl,--exclude-libs ALL)
7+
target_link_options(nakama-sdk PRIVATE -Wl,--exclude-libs,ALL)
88
endif()

0 commit comments

Comments
 (0)