min-devkit won't build per the command line README instructions
Oct 20 2020 | 1:39 am
I am trying to build the min-devkit. I am following the build instructions on the README and run into an error for the build target:
... === BUILD TARGET mc.min.info_tilde OF PROJECT min-devkit WITH CONFIGURATION Debug ===
...
In file included from /Users/<username>/Documents/Max 8/Packages/min-devkit/source/projects/mc.min.info_tilde/mc.min.info_tilde.cpp:6: In file included from /Users/<username>/Documents/Max 8/Packages/min-devkit/source/min-api/script/../include/c74_min.h:13: /Users/<username>/Documents/Max 8/Packages/min-devkit/source/min-api/script/../include/c74_min_impl.h:154:29: error: self-comparison always evaluates to true [-Werror,-Wtautological-compare] return this->a_type == this->a_type && this->a_w.w_obj == b.a_w.w_obj; ^ 1 error generated.
I can correct the code referenced here by converting the code to what I think was intended at line 154:
return this->a_type == b.a_type && this->a_w.w_obj == b.a_w.w_obj;
However, I run into other errors later if I do this.
Is anyone able to get the README command line build instructions to work?
I installed min-devit via the Package Manager. I tried creating my first custom package per the video tutorial, but ran into the problems that are listed in this forum post:
I'm really excited about the possibility of using min-devkit, so please let me know if there is more info that would help debug this.
Cheers,
Steve