Browse Source

Fix android soname in src/Makefile (#3211)

pull/3212/head
ndytts 1 year ago
committed by GitHub
parent
commit
44659b7ba8
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/Makefile

+ 1
- 1
src/Makefile View File

@ -516,7 +516,7 @@ ifeq ($(PLATFORM),PLATFORM_DRM)
endif
endif
ifeq ($(PLATFORM),PLATFORM_ANDROID)
LDFLAGS += -Wl,-soname,libraylib.$(API_VERSION).so -Wl,--exclude-libs,libatomic.a
LDFLAGS += -Wl,-soname,libraylib.$(RAYLIB_API_VERSION).so -Wl,--exclude-libs,libatomic.a
LDFLAGS += -Wl,--build-id -Wl,-z,noexecstack -Wl,-z,relro -Wl,-z,now -Wl,--warn-shared-textrel -Wl,--fatal-warnings
# Force linking of library module to define symbol
LDFLAGS += -u ANativeActivity_onCreate

Loading…
Cancel
Save