diff options
author | Alan Wu <[email protected]> | 2025-02-06 10:32:19 -0500 |
---|---|---|
committer | Takashi Kokubun <[email protected]> | 2025-04-18 21:52:55 +0900 |
commit | a65b79c6537d84cac82b1e0f76ff0fd8c69931af (patch) | |
tree | ac3a96a49fe0db69280ccc260d2865208b410732 /zjit/src | |
parent | 82606faaea562980fa2988c8a73ef1267adbe97b (diff) |
Turn ZJIT into staticlib
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/13131
Diffstat (limited to 'zjit/src')
-rw-r--r-- | zjit/src/lib.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/zjit/src/lib.rs b/zjit/src/lib.rs new file mode 100644 index 0000000000..a135192397 --- /dev/null +++ b/zjit/src/lib.rs @@ -0,0 +1,3 @@ +extern "C" fn zjit_init() { + println!("zjit_init"); +} |