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

Upgrade to newer Rust (a5342d5 2014-02-23) #10

Merged
merged 1 commit into from Mar 4, 2014
Merged
Changes from all commits
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

Upgrade to newer Rust (a5342d5 2014-02-23)

  • Loading branch information
Armavica committed Mar 4, 2014
commit 1d649ef9a50be20f00d474e9374c246b9f375cf9
@@ -9,7 +9,7 @@ RUST_SRC=$(shell find $(VPATH)/. -type f -name '*.rs')
all: libxlib.dummy

libxlib.dummy: lib.rs $(RUST_SRC)
$(RUSTC) $(RUSTFLAGS) $< --lib --out-dir .
$(RUSTC) $(RUSTFLAGS) $< --crate-type=lib --out-dir .
touch $@

xlib-test: lib.rs $(RUST_SRC)
2 lib.rs
@@ -12,6 +12,6 @@

#[feature(globs)];

extern mod std;
extern crate std;

pub mod xlib;
@@ -8,6 +8,7 @@
// except according to those terms.

#[allow(non_uppercase_statics)];
#[allow(non_camel_case_types)];

use std::libc::*;

ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.