lewissbaker / cppcoro

A library of C++ coroutine abstractions for the coroutines TS
MIT License
3.36k stars 462 forks source link

Question: How cross-compile cppcoro for ARM? #187

Open Michael1249 opened 3 years ago

Michael1249 commented 3 years ago

Hi! I'm not so familiar with cake and cross-compiling in general. And I'm trying to build cppcoro for my project on Rasbery Pi. Is there the way to build cppcoro for Rasbery Pi and use it in my project? Thanks.

ValentiWorkLearning commented 3 years ago

@Michael1249 you can use your own CMakeLists for this, and add library as submodule. Another option is to use the existing CMakeLists from one of the pull requests to this repository. Or you can simply install cake, build library with it and just install it somewhere with corresponding headers.

Michael1249 commented 3 years ago

Thanks a lot, I will try to do this in different ways to achieve the goal.