Commit Graph

6 Commits

Author SHA1 Message Date
Abhishek Arya 40913e07ba
Update build.sh 2021-02-03 00:12:49 -08:00
KOBAYASHI Shuji 8f99fa0170
Fix building mruby fails randomly (#4941)
Building mruby is done with `make clean all -j$(nproc)`, but build fails
randomly because `clean` and `all` run in parallel, and `clean` may be
executed after `all` starts.

Therefore, change it as follows.

* Remove `clean` because it seems to be unneeded in the first place.
* Use `rake` command because mruby uses Rake for builds (`Makefile` is a
  limited wrapper for calling `rake`).
* Use `-m` option to run builds in parallel.
* Remove `-j` option because build time seems to be almost the same even
  if `-j` option is specified.
2021-01-21 20:52:02 +11:00
Bhargava Shastry 80dda19d4f
mruby: Fix build (#4583) 2020-11-04 09:22:49 -08:00
Bhargava Shastry 048ccb79a0 mruby: Move LPM build to dockerfile (#3000) 2019-11-03 09:35:11 -08:00
Bhargava Shastry e7f7996260 [mruby] Update Dockerfile and build scripts for proto fuzzer (#2432) 2019-05-20 11:07:30 -07:00
Bhargava Shastry 8017ffc384 [mruby] Add mruby compile fuzzer (#2380) 2019-05-13 10:40:34 -07:00