-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #46 from m3m0r7/bump-ruby-3.3.0
Bump ruby 3.3.0
- Loading branch information
Showing
321 changed files
with
3,796 additions
and
1,236 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
3.2.2 | ||
3.3.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,11 +2,11 @@ | |
|
||
|
||
The RubyVM on PHP is implementation RubyVM written in PHP 100%. | ||
Completely documentation not exists how to implement RubyVM and I was referred [Ruby source code](https://github.com/ruby/ruby) when contributing this project. | ||
Completely documentation not exists how to implement RubyVM, and I was referred [Ruby source code](https://github.com/ruby/ruby) when contributing this project. | ||
|
||
_Notice: This project is very ultra super hyper maximum experimental implementation_ | ||
|
||
_Notice: I tested Ruby version 3.2 only_ | ||
_Notice: I tested Ruby version 3.2 and 3.3 only_ | ||
|
||
### See also | ||
- https://github.com/ruby/ruby/blob/master/compile.c | ||
|
@@ -252,11 +252,13 @@ $ ./vendor/bin/phpunit tests/ | |
|
||
1) Build your ruby environment from source code with `-DIBF_ISEQ_DEBUG` flag | ||
|
||
See: https://docs.ruby-lang.org/en/master/contributing/building_ruby_md.html | ||
|
||
``` | ||
$ git clone [email protected]:ruby/ruby.git | ||
$ mkdir build && cd build | ||
$ ../configure cppflags="-DIBF_ISEQ_DEBUG=1" | ||
$ make -j16 | ||
$ make -j$(nproc) | ||
``` | ||
|
||
2) When you built ruby environment, you will got `vm.inc` file which is wrote how to execute each INSN commands | ||
|
Oops, something went wrong.