Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support MacOS for running MMTk Ruby binding #61

Merged
merged 4 commits into from
Apr 11, 2024
Merged

Conversation

dugiahuy
Copy link

@dugiahuy dugiahuy commented Feb 7, 2024

Description

Currently, MMTk Ruby binding only support development on Linux. However, I want to use my MacBook for support my local development.

Changes

  • Implement memory allocation for MacOS
  • Fix missing function declaration (only happen when enable debug mode)
  • Allow libmmtk_ruby.dylib dynamic library extension for MacOS

@@ -2,6 +2,7 @@ dnl -*- Autoconf -*-
AC_DEFUN([MMTK_RUBY], [

[MMTK_RUBY_SO_NAME=libmmtk_ruby.so]
[MMTK_RUBY_DYLIB_NAME=libmmtk_ruby.dylib]
Copy link
Collaborator

@eileencodes eileencodes Apr 10, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I tried using this locally on macos and these changes threw an error since it was still trying to load the so file.

The Ruby build system already has code to replace the extension, this can use $SOEXT instead and then you don't need two separate variables.

From my testing, if you change [MMTK_RUBY_SO_NAME=libmmtk_ruby.so] to [MMTK_RUBY_SO_NAME=libmmtk_ruby.$SOEXT] you can build with MMTK on macos and it will use the libmmtk_ruby.dylib.

Note: it builds but doesn't run, mmtk panics, haven't debugged that yet, but it definitely builds 😄

@wks
Copy link

wks commented Apr 11, 2024

I updated this PR and made some small changes, including using $SOEXT as @eileencodes suggested.

@dugiahuy @eileencodes Can you confirm if it still compiles on MacOS with my changes applied?

@eileencodes
Copy link
Collaborator

I can confirm this compiles on my mac with your changes @wks.

@wks wks merged commit d64eda9 into mmtk:mmtk Apr 11, 2024
88 of 97 checks passed
@dugiahuy
Copy link
Author

Thank for your help! @eileencodes @wks 👍🏻 👍🏻

@dugiahuy dugiahuy deleted the support-macos branch April 12, 2024 03:34
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants