mirror of
https://git.planet-casio.com/Lephenixnoir/OpenLibm.git
synced 2025-04-04 09:37:13 +02:00
Fix weak reference macro redefinition in wasm32 target
This commit is contained in:
parent
97de1a46a9
commit
f952e167d2
1 changed files with 2 additions and 4 deletions
|
@ -27,9 +27,7 @@
|
|||
|
||||
#ifdef __wasm__
|
||||
#define openlibm_weak_reference(sym,alias) openlibm_strong_reference(sym,alias)
|
||||
#endif
|
||||
|
||||
#if defined(__weak_alias) && defined(__NetBSD__)
|
||||
#elif defined(__weak_alias) && defined(__NetBSD__)
|
||||
#define openlibm_weak_reference(sym,alias) __weak_alias(alias,sym)
|
||||
#elif defined(__weak_reference)
|
||||
#define openlibm_weak_reference(sym,alias) __weak_reference(sym,alias)
|
||||
|
|
Loading…
Add table
Reference in a new issue