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

fix(kernel): fast module loading fails on Windows (EPERM) #4212

Merged
merged 1 commit into from
Aug 8, 2023

Commits on Aug 8, 2023

  1. fix(kernel): fast module loading fails on Windows (EPERM)

    In #4181, a faster method to load
    modules was introduced: symlinking instead of recursing through the
    directory tree, mostly affecting the load times of large modules.
    
    Since Windows Vista, non-Administrator users on Windows aren't allowed
    to create symlinks anymore, so this new loading method fails for users
    working in corporate Windows environments.
    
    Catch the error and fall back to the slower copying method if that
    happens.
    
    Fixes #4208.
    rix0rrr committed Aug 8, 2023
    Configuration menu
    Copy the full SHA
    e0badb2 View commit details
    Browse the repository at this point in the history