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

segfault on julia 1.11.2 on m1 macos Sequioa 15.1.1 #92

Open
srikumarks opened this issue Jan 3, 2025 · 1 comment
Open

segfault on julia 1.11.2 on m1 macos Sequioa 15.1.1 #92

srikumarks opened this issue Jan 3, 2025 · 1 comment

Comments

@srikumarks
Copy link

srikumarks commented Jan 3, 2025

Perhaps related to #46

The following code works -

using Mousetrap
function run()
    main() do app::Application
        window = Window(app)
        set_child!(window, Label("Hello World!"))
        present!(window)
    end
end
run()

The following segfaults -

module M
using Mousetrap
function run()
    main() do app::Application
        window = Window(app)
        set_child!(window, Label("Hello World!"))
        present!(window)
    end
end
end
M.run()
@HyperSphereStudio
Copy link

The current Mousetrap doesn't support version 1.11 because of the array update to libjulia. I made some patches on my fork for it that seemed to fix it but decided it was easier to just restrict the julia version as the GTK warning messages started creating pop-ups everytime it opened.

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

No branches or pull requests

2 participants