diff options
author | Sven Gothel <[email protected]> | 2019-12-10 19:03:20 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2019-12-10 19:03:20 +0100 |
commit | 51ef5eadd9db020412d3a3716b4ab5a25b0522fb (patch) | |
tree | e980c9e1836bcdca2eba291d230d6cf7bafe49bc /make/build.xml | |
parent | eb6dfabd7427a1836f6b1d2080422f98808ea0a4 (diff) |
Bug 1417 - Android: Resulting dynamic libraries require the 'soname' to be set since API level 23
TODO: Do this for all JogAmp modules!
Diffstat (limited to 'make/build.xml')
-rw-r--r-- | make/build.xml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/make/build.xml b/make/build.xml index 12531ea..ce904ea 100644 --- a/make/build.xml +++ b/make/build.xml @@ -515,7 +515,10 @@ <includepath path="${src.generated.c}/Windows" if="isWindows"/> </compiler> - <linker extends="${linker.cfg.id}" /> + <linker extends="${linker.cfg.id}" > + <linkerarg value="-Wl,-soname,${output.lib.name.os}" /> + </linker> + </cc> <antcall target="c.rename.lib.mingw" inheritRefs="true" /> |