Using Boost with Emscripten

前端 未结 6 1885
广开言路
广开言路 2020-12-07 18:08

I have a c++ project I would like to convert to a web application. For this purpose, I would like to use Emscripten to build the project.

The project uses some exter

6条回答
  •  眼角桃花
    2020-12-07 18:29

    For the record, Boost now includes an "emscripten" toolset, which (in my experience) makes the process described above unnecessary.

    To use, boostrap boost as normal, then compile with b2 (or bjam) like so:

    b2 toolset=emscripten 
    

提交回复
热议问题