Merge pull request #199 from llucinat/wasm32-weakref
Fix weak reference macro redefinition in wasm32 target
This commit is contained in:
commit
f731481b25
@ -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…
x
Reference in New Issue
Block a user