3

我正在尝试使用 emscripten sdk 将 libpd 编译为 javascript 或 webassembly 根据一些文档,如果有 Makefile,可以使用emmake make, 编译它(没有使用 emconfigure,因为没有 ./configure 文件),但我收到以下错误:

/home/ian/Documents/emsdk/emscripten/1.37.37/emcc.py -DPD -DHAVE_UNISTD_H -DUSEAPI_DUMMY -I./pure-data/src -I./libpd_wrapper -I./libpd_wrapper/util -Wno-int-to-pointer-cast -Wno-pointer-to-int-cast -fPIC -I"/usr/lib/jvm/default-java/include/linux" -DHAVE_LIBDL -ffast-math -funroll-loops -fomit-frame-pointer -O3 -DLIBPD_EXTRA      -c -o pure-data/src/d_array.o pure-data/src/d_array.c
pure-data/src/d_array.c:523:2: error: No byte order defined
#error No byte order defined
 ^
1 error generated.
ERROR:root:compiler frontend failed to generate LLVM bitcode, halting
<integrado>: fallo en las instrucciones para el objetivo 'pure-data/src/d_array.o'
make: *** [pure-data/src/d_array.o] Error 1

有任何想法吗?你认为可以编译这个库吗?

更新:按照@zakki 的回答中的建议调整每个抱怨文件后,我得到另一个错误:

libpd_wrapper/util/ringbuffer.c:18:12: fatal error: 'stdatomic.h' file not found
  #include <stdatomic.h>

该文件具有以下内容:

#if __STDC_VERSION__ >= 201112L // use stdatomic if C11 is available
  #include <stdatomic.h> // HERE IS WHERE ERROR GOES
  #define SYNC_FETCH(ptr) atomic_fetch_or((_Atomic int *)ptr, 0)
  #define SYNC_COMPARE_AND_SWAP(ptr, oldval, newval) \
          atomic_compare_exchange_strong((_Atomic int *)ptr, &oldval, newval)
//Some other definitions that I didn't put here

前段时间我读了一些关于 C++11 的这个问题的帖子,我该如何解决这个问题?

更新2:&& !defined(__EMSCRIPTEN__)现在添加后可以编译,但是我收到了我不明白的警告:

警告:根:Emscripten 目前不支持动态库(.so、.dylib、.dll)。出于构建系统仿真的目的,Emscripten 现在将生成一个带有后缀“.so”的静态库文件 (.bc)。为了获得最佳实践,请通过将输出后缀设置为“.bc”来调整您的构建系统以直接生成静态 LLVM 位码库。)

4

1 回答 1

3

Emscripten 有endian.h. 所以添加defined(__EMSCRIPTEN__)到 ifdef。

#if defined(__linux__) || defined(__CYGWIN__) || defined(__GNU__) || \
    defined(ANDROID) || defined(__EMSCRIPTEN__)
#include <endian.h>
#endif

其次,它看起来像Emscripten 错误

#if __STDC_VERSION__ >= 201112L && !defined(__EMSCRIPTEN__)
于 2018-05-22T09:06:39.903 回答