File tree 1 file changed +13
-3
lines changed
1 file changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -31,17 +31,27 @@ pushd $RUBY_PATH
31
31
32
32
case $DEBUG_LEVEL in
33
33
debug)
34
- ../configure --with-mmtk-ruby=$BINDING_PATH --with-mmtk-ruby-debug --prefix=$RUBY_INSTALL_PATH --disable-install-doc cppflags=' -g3 -O0 -DRUBY_DEBUG=1 -DRUBY_DEVEL -DUSE_RUBY_DEBUG_LOG=1'
34
+ ../configure \
35
+ --with-mmtk-ruby=$BINDING_PATH \
36
+ --with-mmtk-ruby-debug \
37
+ --prefix=$RUBY_INSTALL_PATH \
38
+ --disable-install-doc \
39
+ cppflags=' -g3 -O0 -DRUBY_DEBUG=1 -DRUBY_DEVEL -DUSE_RUBY_DEBUG_LOG=1 -DMMTK_WB_ASSERT_VO'
35
40
make miniruby -j $CI_JOBS
36
41
;;
37
42
38
43
release)
39
- ../configure --with-mmtk-ruby=$BINDING_PATH --prefix=$RUBY_INSTALL_PATH --disable-install-doc cppflags=' -g3'
44
+ ../configure \
45
+ --with-mmtk-ruby=$BINDING_PATH \
46
+ --prefix=$RUBY_INSTALL_PATH \
47
+ --disable-install-doc cppflags=' -g3 -DMMTK_WB_ASSERT_VO'
40
48
make install -j $CI_JOBS
41
49
;;
42
50
43
51
vanilla)
44
- ../configure --prefix=$RUBY_INSTALL_PATH --disable-install-doc cppflags=' -g3'
52
+ ../configure \
53
+ --prefix=$RUBY_INSTALL_PATH \
54
+ --disable-install-doc cppflags=' -g3'
45
55
make install -j $CI_JOBS
46
56
;;
47
57
* )
You can’t perform that action at this time.
0 commit comments