summaryrefslogtreecommitdiffhomepage
path: root/target/appveyor.rb
AgeCommit message (Collapse)Author
2020-10-12Remove `full-core` from `target/appveyor.rb`.Yukihiro "Matz" Matsumoto
2020-10-12Enable method cache by default.Yukihiro "Matz" Matsumoto
Introduced `MRB_NO_METHOD_CACHE` which is inverse of `MRB_METHOD_CACHE` that should be enabled intestinally. In addition, the default cache is made bigger (128 -> 256).
2020-10-12Stop `CXX_ABI` test with VisualC++.Yukihiro "Matz" Matsumoto
This combination is too hard to support. Difference between C and C++ is too big with VisualC++. GCC and clang are OK.
2020-10-12Add `/std:c++latest` option to VC `CXX_ABI` build.Yukihiro "Matz" Matsumoto
2020-10-12Build process updated:Yukihiro "Matz" Matsumoto
You have to specify `TARGET` to specify a configuration, e.g. ``` rake TARGET=host-debug all test ``` When you port `mruby` to a new configuration: 1. copy an existing configuration under `target` directory 2. modify the new configuration file 3. build using the new configuration 4. send PR if you please