-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Can't compile with recent nightly #69
Comments
Yep, that's the problem with using unstable APIs. All breakage that results is ours to fix. |
The challenge! :) The signature of |
Yes, but I think we should use conditional compilation to avoid breaking previous builds. |
Nah; lockfiles handle that already. We should stick to nightlies and use travis to find out when we need to fix it. |
Ok then. |
…lexcrichton Closes rust-lang#69 Adds a new syntax for the `build = ` command: ``` build = [ ["./configure"], ["make", "lib/libovr.a"], ["/bin/mkdir", "target"], ["/bin/cp", "lib/libovr.a", "target/"] ] ``` The current syntax `build = "make"` still works. `build = [ "a", "b" ]` is forbidden because it is ambiguous.
Maybe you already know this, but it couldn't find an issue. (I'm compiling this project but it shouldn't matter.)
The text was updated successfully, but these errors were encountered: