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

Wrap all intrinsics in the intrinsics! macro #452

Merged
merged 2 commits into from
Feb 6, 2022

Commits on Feb 6, 2022

  1. Configuration menu
    Copy the full SHA
    c3325dc View commit details
    Browse the repository at this point in the history
  2. Wrap all intrinsics in the intrinsics! macro

    This ensures that each intrinsic ends up in a separate module, which in
    turn (because rustc treats compiler_builtins specially) will result in
    each intrinsic ending up in its own object file. This allows the linker
    to only pick up object files for intrinsics that are missing and avoids
    duplicate symbol definition errors.
    Amanieu committed Feb 6, 2022
    Configuration menu
    Copy the full SHA
    fe04b8d View commit details
    Browse the repository at this point in the history