Skip to content

Commit

Permalink
fix linker flag for android and add separate base64 note to changelog (
Browse files Browse the repository at this point in the history
  • Loading branch information
Luke authored Mar 16, 2023
1 parent a6f8392 commit a82046e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ The format is based on [keep a changelog](http://keepachangelog.com/) and this p
- Fixed encoding issue with some cursors sent to the server.
- Fixed an exception that could be thrown when the client sent match data over a bad network.
- Upgraded libcurl to 7.88.1 which fixed a rare Websocket SSL handshake issue on Unix systems.
- Fixed base64 dependency in Android SSL for broader Android API level support.

### Changed
- Improved build automation around test suite.
Expand Down
2 changes: 1 addition & 1 deletion cmake/linkerFlagsTargets.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU" OR CMAKE_CXX_COMPILER_ID STREQUAL "Clang
# like when we link libc++ statically or openssl
# NOTE: target specifically nakama-sdk (our library), because we DONT want it to be set on
# nakama-test (test executable) in some cases (namely when linking libc++ statically)
target_link_options(nakama-sdk PRIVATE -Wl,--exclude-libs ALL)
target_link_options(nakama-sdk PRIVATE -Wl,--exclude-libs,ALL)
endif()

0 comments on commit a82046e

Please sign in to comment.