|
SDL 3.0
|
Go to the source code of this file.
Macros | |
| #define | SDL_ELF_NOTE_DLOPEN_PRIORITY_SUGGESTED "suggested" |
| #define | SDL_ELF_NOTE_DLOPEN_PRIORITY_RECOMMENDED "recommended" |
| #define | SDL_ELF_NOTE_DLOPEN_PRIORITY_REQUIRED "required" |
| #define | SDL_DISABLE_DLOPEN_NOTES |
| #define | SDL_ELF_NOTE_DLOPEN(...) |
| #define SDL_DISABLE_DLOPEN_NOTES |
Definition at line 107 of file SDL_dlopennote.h.
| #define SDL_ELF_NOTE_DLOPEN | ( | ... | ) |
Definition at line 230 of file SDL_dlopennote.h.
| #define SDL_ELF_NOTE_DLOPEN_PRIORITY_RECOMMENDED "recommended" |
Use this macro with SDL_ELF_NOTE_DLOPEN() to note that a dynamic shared library dependency is recommended.
Important functionality needs the dependency, the binary will work but in most cases the dependency should be provided.
Definition at line 86 of file SDL_dlopennote.h.
| #define SDL_ELF_NOTE_DLOPEN_PRIORITY_REQUIRED "required" |
Use this macro with SDL_ELF_NOTE_DLOPEN() to note that a dynamic shared library dependency is required.
Core functionality needs the dependency, the binary will not work if it cannot be found.
Definition at line 101 of file SDL_dlopennote.h.
| #define SDL_ELF_NOTE_DLOPEN_PRIORITY_SUGGESTED "suggested" |
This header allows you to annotate your code so external tools know about dynamic shared library dependencies.
If you determine that your toolchain doesn't support dlopen notes, you can disable this feature by defining SDL_DISABLE_DLOPEN_NOTES. You can use this CMake snippet to check for support:
Use this macro with SDL_ELF_NOTE_DLOPEN() to note that a dynamic shared library dependency is optional.
Optional functionality uses the dependency, the binary will work and the dependency is only needed for full-featured installations.
Definition at line 71 of file SDL_dlopennote.h.