diff options
| author | Jeffrey Yasskin <[email protected]> | 2010-07-18 07:35:25 +0800 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2010-07-18 14:25:19 +0800 |
| commit | 22eca31d98ce3e1bc5690799e669911e4d06a5aa (patch) | |
| tree | c964fb3ca34ec34f4b9685d711c5097f7c7d0a22 /src/Makefile | |
| parent | Fix the LLVM ocamlopt build. (diff) | |
| download | rust-22eca31d98ce3e1bc5690799e669911e4d06a5aa.tar.xz rust-22eca31d98ce3e1bc5690799e669911e4d06a5aa.zip | |
Fix argv.rs under the LLVM compiler.
The call to rust_start was assuming that all rust main() functions have the
same signature, but the compiler doesn't actually canonicalize them. So
instead just match the C signature of rust_start, and cast.
Diffstat (limited to 'src/Makefile')
| -rw-r--r-- | src/Makefile | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile index 8a2162eb..7b2f9f01 100644 --- a/src/Makefile +++ b/src/Makefile @@ -366,7 +366,6 @@ TEST_XFAILS_LLVM := $(addprefix test/run-pass/, \ acyclic-unwind.rs \ alt-pattern-simple.rs \ alt-tag.rs \ - argv.rs \ basic.rs \ bind-obj-ctor.rs \ bind-thunk.rs \ |