| Summary: | [cmake] Fix installation of shared library for Android | ||
|---|---|---|---|
| Product: | SDL | Reporter: | Boris Pek <tehnick-8> |
| Component: | build | Assignee: | Sam Lantinga <slouken> |
| Status: | RESOLVED FIXED | QA Contact: | Sam Lantinga <slouken> |
| Severity: | normal | ||
| Priority: | P2 | CC: | tehnick-8 |
| Version: | HG 2.1 | ||
| Hardware: | All | ||
| OS: | Android (All) | ||
| Attachments: | fix installation of shared library for Android | ||
|
Description
Boris Pek
2018-01-10 16:46:23 UTC
As a side note: why the size of shared library for release build is bigger than for debug one? Probably you forgot to use 'strip' tool or to use '-s' option in CFLAGS. Created attachment 3130 [details]
fix installation of shared library for Android
I don't have an Android device or do any Android development personally, so assigning the bug to me probably won't speed up the process of getting it addressed. Sorry. I have misinterpreted your recent commit related to Android. Probably initial description is not enough clear... Currently cmake build for Android generates symlink to non-existent file, which forcibly replace the real shared library with the same name. Thus the "Release" build of shared library is could not be produced. My simple patch solves the issue. Added, thanks! |