Nobuyoshi Nakada
677c3228d0
Check loading built-in binaries
2023-03-08 13:59:21 +09:00
Takashi Kokubun
23ec248e48
s/mjit/rjit/
2023-03-06 23:44:01 -08:00
Takashi Kokubun
2e875549a9
s/MJIT/RJIT/
2023-03-06 23:44:01 -08:00
Takashi Kokubun
011c08b643
Remove obsoleted mjit_sp_inc.inc.erb
2023-03-06 23:05:50 -08:00
Takashi Kokubun
b2130d5f5d
Remove obsoleted tool/mjit_tabs.rb
2023-03-06 22:53:38 -08:00
Takashi Kokubun
2702d615f5
Remove obsoleted mjit_config.h
2023-03-06 22:31:43 -08:00
Takashi Kokubun
f68580890f
Stop building mjit_build_dir.so
2023-03-06 22:14:44 -08:00
Takashi Kokubun
31f4b2d86b
Drop obsoleted MJIT header ( #7458 )
...
RJIT doesn't need this.
2023-03-06 21:41:48 -08:00
Nobuyoshi Nakada
72811deaa8
MSWin: Use MESSAGE_BEGIN/MESSAGE_END instead of bare `echo`
...
To strip enclosing double quotes.
2023-03-02 19:18:13 +09:00
Alan Wu
675e296641
Add .DELETE_ON_ERROR to Makefile
...
This instructs make to delete target files if the recipe fails midway, like
when make itself is interrupted. This is mostly for development since it
protects against corrupt builds that need a `make clean` to repair. Release
builds normally don't fail mid-recipe.
GNU make and BSD make support this.
From GNU make's manual:
> This is almost always what you want make to do, but it is not historical
> practice; so for compatibility, you must explicitly request it.
See https://innolitics.com/articles/make-delete-on-error/
2023-02-06 14:50:06 -05:00
Nobuyoshi Nakada
be81495c16
Silence dozens of useless warnings from `nm` on macOS
2023-01-31 19:42:01 +09:00
Alan Wu
7d4395cb69
YJIT: Fix shared/static library symbol leaks
...
Rust 1.58.0 unfortunately doesn't provide facilities to control symbol
visibility/presence, but we care about controlling the list of
symbols exported from libruby-static.a and libruby.so.
This commit uses `ld -r` to make a single object out of rustc's
staticlib output, libyjit.a. This moves libyjit.a out of MAINLIBS and adds
libyjit.o into COMMONOBJS, which obviates the code for merging libyjit.a
into libruby-static.a. The odd appearance of libyjit.a in SOLIBS is also
gone.
To filter out symbols we do not want to export on ELF platforms, we use
objcopy after the partial link. On darwin, we supply a symbol list to
the linker which takes care of hiding unprefixed symbols.
[Bug #19255 ]
Co-authored-by: Nobuyoshi Nakada <nobu@ruby-lang.org>
2023-01-27 12:28:09 -05:00
Nobuyoshi Nakada
1e2523fad7
Silence dozens of useless warnings from `ranlib` on macOS [ci skip]
2023-01-23 19:02:36 +09:00
Nobuyoshi Nakada
418b03c750
tool/leaked-globals: ignore function typedef [ci skip]
2023-01-21 19:26:16 +09:00
Hiroshi SHIBATA
18d8333c30
Switch to use gem version of simplecov, not git clone
2023-01-18 20:19:08 +09:00
Nobuyoshi Nakada
1ddeb7473d
Move the dependency of makefiles on revision header [ci skip]
...
Since `REVISION_H` is defined in common.mk which is appended or
included after Makefile.in, it was undefined yet at the point of the
dependency.
2023-01-14 20:30:19 +09:00
Nobuyoshi Nakada
5716c0f1f8
MSVS lacks `touch` [ci skip]
2022-12-20 17:53:41 +09:00
Nobuyoshi Nakada
0344283fd3
Fix missing parentheses [ci skip]
2022-12-20 16:07:10 +09:00
Nobuyoshi Nakada
7a976c1060
[Bug #19181 ] Separate the rule for unicode_normalize/tables.rb timestamp
...
It should depends on only existing data files (except for the tools),
unless `ALWAYS_UPDATE_UNICODE=yes`.
2022-12-10 13:58:20 +09:00
卜部昌平
940b3170c1
document for commit 5bbba76489
[ci skip]
2022-12-07 15:09:12 +09:00
Nobuyoshi Nakada
30379e33c3
Handle depend files on nmake
2022-12-05 17:09:49 +09:00
Takashi Kokubun
a1d70f5b12
MJIT: Rename mjit_compile_attr to mjit_sp_inc
...
There's no mjit_compile.inc, so no need to use this prefix anymore.
2022-11-29 21:45:34 -08:00
Nobuyoshi Nakada
2f7d2662dd
Control non-parallel parts with `.WAIT` if available
2022-11-13 23:54:43 +09:00
Nobuyoshi Nakada
60f12c7d2e
Fix infinite loop when out-of-place build
2022-11-02 11:33:08 +09:00
Nobuyoshi Nakada
9b462aec4a
Follow up "Rework `first_lineno` to be `int`."
2022-10-28 19:33:19 +09:00
Hiroshi SHIBATA
a25c033805
Suppress warning for fgrep
...
>fgrep: warning: fgrep is obsolescent; using ggrep -F
2022-10-19 21:10:00 +09:00
Nobuyoshi Nakada
dc7d929e54
Extract `RUBY_RELEASE_DATE` from also revision.h
...
This make variable is very useful for daily build.
2022-09-25 22:40:05 +09:00
Takashi Kokubun
45ecc30a63
Move mjit/instruction.rb rule to common.mk
...
as suggested by nobu. We don't really need to generate this for Windows,
but using common.mk whenever possible would probably make maintenance
easier.
2022-09-18 21:16:15 +09:00
Takashi Kokubun
a988fe0b3e
Introduce --basedir to insns2vm.rb
...
and leverage that to preserve the directory structure under tool/ruby_vm/views
2022-09-18 14:39:53 +09:00
Takashi Kokubun
12023c833f
Revert "Preserve the directory structure under tool/ruby_vm/views"
...
This reverts commit 62ec621f8c
.
will revisit this once fixing non-MJIT targets
2022-09-18 14:21:40 +09:00
Takashi Kokubun
62ec621f8c
Preserve the directory structure under tool/ruby_vm/views
...
for nested target directories
2022-09-18 14:19:22 +09:00
Takashi Kokubun
0e816e6d30
Demote mjit_instruction.rb from builtin to stdlib
2022-09-18 14:04:20 +09:00
Lars Kanis
518301883e
Fix parallel build on MINGW
...
When the build is running with a base ruby then generating `x64-ucrt-ruby320.rc`
could fail due to a missing dependency to `x64-mingw-ucrt-fake.rb`.
This commit adds this dependency.
A failing build looks like so:
```
generating x64-mingw-ucrt-fake.rb
generating x64-ucrt-ruby320.rc
../snapshot-master/win32/resource.rb:in `require': cannot load such file -- ./x64-mingw-ucrt-fake (LoadError)
make: *** [GNUmakefile:57: x64-ucrt-ruby320.rc] Error 1
make: *** Waiting for unfinished jobs....
linking miniruby.exe
x64-mingw-ucrt-fake.rb updated
```
2022-09-10 09:32:27 +09:00
Nobuyoshi Nakada
9faa9ced96
Support sub-library in builtin-loader
...
Previously, it was supported in prelude.c, but has not followed up the
builtin-loader system.
2022-09-09 15:47:24 +09:00
Nobuyoshi Nakada
be56033248
Move RDoc `--`/`++` directives to comments
2022-09-09 14:23:39 +09:00
Nobuyoshi Nakada
a977c66312
Generate token ID indexes in id.def
...
Separate the logic accross the tables from the template view for
id.h.
2022-09-08 18:18:56 +09:00
Nobuyoshi Nakada
2d57447ae8
Fix missing replacement in 1f91dcdab3
2022-09-07 19:07:24 +09:00
Nobuyoshi Nakada
1f91dcdab3
Define BOOTSTRAPRUBY from HAVE_BASERUBY
2022-09-07 14:33:25 +09:00
Takashi Kokubun
3767c6a90d
Ruby MJIT ( #6028 )
2022-09-04 21:53:46 -07:00
Nobuyoshi Nakada
4d469472e2
Debugging snapshot [ci skip]
2022-09-05 13:08:23 +09:00
Nobuyoshi Nakada
1420333455
Fix fake.rb expansion from preprocessed version.h
2022-09-05 11:25:42 +09:00
Nobuyoshi Nakada
68a092a469
Set fake.rb variables by command line arguments
...
Then fallbacks to preprocessed version.h.
2022-09-05 11:16:20 +09:00
Nobuyoshi Nakada
7c67d0fd79
Make sources by BASERUBY if available instead of miniruby
2022-09-03 19:25:29 +09:00
Nobuyoshi Nakada
6f5305e0d2
Exclude LIBPATHENV wrapper from PREP
2022-09-03 19:20:03 +09:00
Nobuyoshi Nakada
bc5b9be1ee
Move duplicate dependencies
2022-09-03 15:01:05 +09:00
Nobuyoshi Nakada
2b967cd4b7
Let fake.rb allow newlines in expanded strings
2022-08-31 17:56:31 +09:00
Nobuyoshi Nakada
a58a429f8b
Silent configure does not output cached configurations
2022-08-14 14:42:10 +09:00
Nobuyoshi Nakada
32d1ce96e0
Fix race conditions when cleaning extensions
...
Clean built directories by `make distclean`, and then clean leftover
makefiles for skipped extensions.
2022-08-11 17:45:57 +09:00
Nobuyoshi Nakada
0c9803b0fd
The "gems" build directory was rename as ".bundle"
2022-08-11 17:45:39 +09:00
Nobuyoshi Nakada
26054c7461
Fix paths of exts.mk to clean
...
exts.mk files are one level under the top of extension directories.
2022-08-11 17:43:46 +09:00