Results 49 comments of KojiYoshioka

This is full output of `cmake ..` Seems something wrong with FFTW. Can someone help? ``` [koji@MacBook-Pro:~/work/PartScratch/spleeterpp/build]$ cmake .. -- The C compiler identification is AppleClang 11.0.3.11030032 -- The CXX...

I add more. Here is contents of build/_deps/rttf-build/fftw/fftw-3.3.7/config.log. This log says stdio.h not found... ``` This file contains any messages produced by compilers while running configure, to aid debugging if...

I've found workaround for this. (macOS Catalina with Xcode11.7). ``` $ cd /path/to/spleeterpp $ rm -rf build $ export SDKROOT="$(xcrun --sdk macosx --show-sdk-path)" $ mkdir build && cd build $...

Maybe M1 mac(arm64) version of tensorflow required. Someone should help..

I've succeeded with libmaple in AeroQuad. README.md should be updated.

Seems like you missed WProgram.h. please check and add include path which contains WProgram.h or Arduino.h in you environment. I could consult more if I could setup build environment for...

And also tell me what board you are using. AeroQuad32 Flight Control Board? http://www.aeroquadstore.com/AeroQuad_32_Flight_Control_Board_p/aq32-001.htm

Thanks for info. I noticed you specified `g.cc.include_paths` but mruby-arduino is written in C++, so you should use `g.cxx.include_paths` You can check full command line by ./minirake -v on mruby...

It says Serial class is not found, Do you have Serial class available in your environment? If not, remove all related function or use #ifdef in mruby-arduino.cpp.

OK, replace mruby-arduino.cpp with below, disable `-Wunused-variable` temporaly, and try again. Then show me all compile error and build_config.rb(if changed). ``` cpp #include #include "mruby.h" #include "mruby/class.h" #include "mruby/string.h" #include...