Merge remote-tracking branch 'origin/master' into no_std

This commit is contained in:
Dan Gohman
2018-03-30 15:14:30 -07:00
260 changed files with 4509 additions and 5074 deletions

View File

@@ -1,6 +1,6 @@
[package]
name = "cretonne-native"
version = "0.3.4"
version = "0.4.1"
authors = ["The Cretonne Project Developers"]
description = "Support for targeting the host with Cretonne"
repository = "https://github.com/Cretonne/cretonne"
@@ -11,7 +11,7 @@ readme = "README.md"
name = "cton_native"
[dependencies]
cretonne = { path = "../cretonne", version = "0.3.4", default-features = false }
cretonne = { path = "../cretonne", version = "0.4.1", default-features = false }
[target.'cfg(any(target_arch = "x86", target_arch = "x86_64"))'.dependencies]
raw-cpuid = "3.0.0"
@@ -20,3 +20,7 @@ raw-cpuid = "3.0.0"
default = ["std"]
std = ["cretonne/std"]
core = ["cretonne/core"]
[badges]
maintenance = { status = "experimental" }
travis-ci = { repository = "Cretonne/cretonne" }

View File

@@ -1,9 +1,7 @@
//! Performs autodetection of the host for the purposes of running
//! Cretonne to generate code to run on the same machine.
#![deny(missing_docs,
trivial_numeric_casts,
unused_extern_crates)]
#![deny(missing_docs, trivial_numeric_casts, unused_extern_crates)]
#![cfg_attr(not(feature = "std"), no_std)]