我正在尝试将我的c ++代码编译为.wasm,但是我的c ++代码需要-Llibraries/bcrypt -lbcrypt
进行编译,我如何才能在emcc中包含该库
我的g ++编译命令:
g++ --std=c++11 -lbcrypt bcrypt-wasm.cpp -Llibraries/bcrypt -lbcrypt -o bcrypt-wasm
我的主要c ++文件:
#include "bcrypt/BCrypt.hpp"
#include <iostream>
int main(){
BCrypt bcrypt;
std::string password = "test";
std::string hash = bcrypt.generateHash(password);
std::cout << hash << std::endl;
return 1;
}
预期结果:
将我的c ++代码编译为.wasm二进制文件