mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 23:04:33 +00:00
ed204257a0
There were two main differences with the old libuv and the master version: 1. The uv_last_error function is now gone. The error code returned by each function is the "last error" so now a UvError is just a wrapper around a c_int. 2. The repo no longer includes a makefile, and the build system has change. According to the build directions on joyent/libuv, this now downloads a `gyp` program into the `libuv/build` directory and builds using that. This shouldn't add any dependences on autotools or anything like that. Closes #8407 Closes #6567 Closes #6315
9 lines
213 B
Plaintext
9 lines
213 B
Plaintext
[submodule "src/llvm"]
|
|
path = src/llvm
|
|
url = https://github.com/alexcrichton/llvm.git
|
|
branch = master
|
|
[submodule "src/libuv"]
|
|
path = src/libuv
|
|
url = https://github.com/alexcrichton/libuv.git
|
|
branch = master
|