plter / LearnWebassembly20190319

WebAssembly技术解密课程配套源码
3 stars 3 forks source link

error: argument to 'section' attribute is not valid for this target: mach-o section specifier requires a segment and section separated by a comma #1

Open fsyyft opened 3 years ago

fsyyft commented 3 years ago
#include <iostream>
#include <emscripten.h>

int main() {
    EM_ASM(alert('你好,Emscripten!'));
    return 0;
}

这段代码中,CLion 提示 error: argument to 'section' attribute is not valid for this target: mach-o section specifier requires a segment and section separated by a comma

对这一块不熟悉,请问下如何解决?

plter commented 3 years ago

为什么是CLion提示?不是emcc的提示吗?

fsyyft commented 3 years ago

为什么是CLion提示?不是emcc的提示吗?

使用 ecmm 编译是可以通过的,是在 Clion IDE 中老是有这第一条异常提示,可能是哪儿配置不对,又找不出来原因,所以想请教一下。

使用的 CLion 是 2021.1

plter commented 3 years ago

不用在意CLion的提示,emcc能用就行了