Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ this crate ends up, as long as it's there):

``` toml
[dependencies]
compiler-builtins = { git = "https://github.com/rustc-lang-nursery/compiler-builtins" }
compiler_builtins = { git = "https://github.com/rust-lang-nursery/compiler-builtins" }
```

If you still get an "undefined reference to $INTRINSIC" error after that change,
Expand All @@ -34,8 +34,8 @@ this intrinsic you can temporarily enable a fallback to the actual compiler-rt
implementation as well for unimplemented intrinsics:

```toml
[dependencies.compiler-builtins]
git = "https://github.com/rustc-lang-nursery/compiler-builtins"
[dependencies.compiler_builtins]
git = "https://github.com/rust-lang-nursery/compiler-builtins"
features = ["c"]
```

Expand Down