ensure em_asm template get C++ linkage

This commit is contained in:
pmp-p 2024-01-16 10:25:36 +01:00
parent e7f947c987
commit bb90d76a11
2 changed files with 4 additions and 2 deletions

View File

@ -5,7 +5,6 @@
#define PK_EXPORT __declspec(dllexport) #define PK_EXPORT __declspec(dllexport)
#define PK_SYS_PLATFORM 0 #define PK_SYS_PLATFORM 0
#elif __EMSCRIPTEN__ #elif __EMSCRIPTEN__
#include <emscripten.h>
#define PK_EXPORT EMSCRIPTEN_KEEPALIVE #define PK_EXPORT EMSCRIPTEN_KEEPALIVE
#define PK_SYS_PLATFORM 1 #define PK_SYS_PLATFORM 1
#elif __APPLE__ #elif __APPLE__
@ -31,4 +30,4 @@
#else #else
#define PK_EXPORT #define PK_EXPORT
#define PK_SYS_PLATFORM 6 #define PK_SYS_PLATFORM 6
#endif #endif

View File

@ -2,6 +2,9 @@
#define POCKETPY_C_H #define POCKETPY_C_H
#ifdef __cplusplus #ifdef __cplusplus
#if __EMSCRIPTEN__
#include <emscripten.h>
#endif
extern "C" { extern "C" {
#endif #endif