Compare commits
17 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4305b558b3 | ||
|
|
3a3381b8d0 | ||
|
|
9a1f1aad8d | ||
|
|
0653dc1572 | ||
|
|
be7e8c8ee6 | ||
|
|
344a19bafb | ||
|
|
640b962181 | ||
|
|
d19f3cb6cf | ||
|
|
a526e7a435 | ||
|
|
6ae148d342 | ||
|
|
ff13d3319d | ||
|
|
a018f9586b | ||
|
|
3406a2920c | ||
|
|
559214fceb | ||
|
|
8702fd31f7 | ||
|
|
1280c29fa7 | ||
|
|
2f703c9f1f |
9
.github/ISSUE_TEMPLATE.md
vendored
9
.github/ISSUE_TEMPLATE.md
vendored
@@ -1,9 +0,0 @@
|
||||
## Version(s) of meta-rust
|
||||
|
||||
## Version(s) of poky and/or oe-core
|
||||
|
||||
## Expected result
|
||||
|
||||
## Actual result
|
||||
|
||||
## Steps to reproduce
|
||||
33
.github/workflows/main.yml
vendored
33
.github/workflows/main.yml
vendored
@@ -1,33 +0,0 @@
|
||||
on: [pull_request]
|
||||
jobs:
|
||||
build:
|
||||
env:
|
||||
YOCTO_VERSION: 3.3.2
|
||||
YOCTO_BRANCH: hardknott
|
||||
runs-on: self-hosted
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
with:
|
||||
path: 'meta-rust'
|
||||
- name: Fetch poky
|
||||
run: |
|
||||
mv poky/build/sstate-cache . || true
|
||||
rm -rf poky meta-openembedded
|
||||
git clone -b $YOCTO_BRANCH --single-branch git://git.yoctoproject.org/poky
|
||||
git clone -b $YOCTO_BRANCH --single-branch git://git.openembedded.org/meta-openembedded
|
||||
- name: Configure build
|
||||
run: |
|
||||
cd poky
|
||||
. oe-init-build-env
|
||||
mv ../../sstate-cache . || true
|
||||
bitbake-layers add-layer ../../meta-openembedded/meta-oe
|
||||
bitbake-layers add-layer ../../meta-rust
|
||||
echo 'PARALLEL_MAKE:pn-rust-llvm-native = "-j2"' >> conf/local.conf
|
||||
echo 'TOOLCHAIN_HOST_TASK:append = " packagegroup-rust-cross-canadian-${MACHINE}"' >> conf/local.conf
|
||||
echo 'PREFERRED_PROVIDER_virtual/kernel = "linux-dummy"' >> conf/local.conf
|
||||
echo 'INHERIT_remove = "uninative"' >> conf/local.conf
|
||||
- name: Run bitbake
|
||||
run: |
|
||||
cd poky
|
||||
. oe-init-build-env
|
||||
bitbake rust-hello-world
|
||||
3
.gitignore
vendored
3
.gitignore
vendored
@@ -1,3 +0,0 @@
|
||||
*.pyc
|
||||
build/
|
||||
poky/
|
||||
39
Jenkinsfile
vendored
39
Jenkinsfile
vendored
@@ -1,39 +0,0 @@
|
||||
def targets = [ 'qemux86', 'qemux86-64', 'qemuarm', 'qemuarm64', 'qemumips' ]
|
||||
|
||||
def machine_builds = [:]
|
||||
|
||||
for (int i = 0; i < targets.size(); i++) {
|
||||
def machine = targets.get(i)
|
||||
|
||||
machine_builds["$machine"] = {
|
||||
node {
|
||||
try {
|
||||
stage("checkout $machine") {
|
||||
checkout scm
|
||||
}
|
||||
stage("setup-env $machine") {
|
||||
sh "./scripts/setup-env.sh"
|
||||
}
|
||||
stage("fetch $machine") {
|
||||
sh "GIT_LOCAL_REF_DIR=/srv/git-cache/ ./scripts/fetch.sh master"
|
||||
}
|
||||
stage("build $machine") {
|
||||
sh "MACHINE=${machine} ./scripts/build.sh"
|
||||
}
|
||||
} catch (e) {
|
||||
echo "Caught: ${e}"
|
||||
throw e
|
||||
} finally {
|
||||
stage("push build cache $machine") {
|
||||
sh "./scripts/publish-build-cache.sh master"
|
||||
}
|
||||
stage("cleanup $machine") {
|
||||
sh "./scripts/cleanup-env.sh"
|
||||
deleteDir()
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
parallel machine_builds
|
||||
64
README.md
64
README.md
@@ -5,65 +5,61 @@ This OpenEmbedded layer provides the rust compiler, tools for building packages
|
||||
|
||||
## What works:
|
||||
|
||||
- Building `rust-native` and `cargo-native`
|
||||
- Building Rust based projects with Cargo for the TARGET
|
||||
- e.g. `rustfmt` which is used by the CI system
|
||||
- `-buildsdk` and `-crosssdk` packages
|
||||
- MACHINE="beaglebone" (TARGET_SYS=arm-poky-linux-gnueabi)
|
||||
- Building rust-native, rust-cross, rust-hello-world, cargo-native
|
||||
- Running/using all of these (including rust-hello-world)
|
||||
|
||||
## What doesn't:
|
||||
|
||||
- Using anything but x86_64 as the build environment
|
||||
- rust (built for target) [issue #81](https://github.com/meta-rust/meta-rust/issues/81)
|
||||
- Probably some of the untested things
|
||||
|
||||
## What's untested:
|
||||
|
||||
- cargo (built for target)
|
||||
- rust (built for target)
|
||||
- Other TARGETs
|
||||
|
||||
## Building a rust package
|
||||
## Common issues when packaging things using cargo
|
||||
|
||||
When building a rust package in bitbake, it's usually easiest to build with
|
||||
cargo using cargo.bbclass. If the package already has a Cargo.toml file (most
|
||||
rust packages do), then it's especially easy. Otherwise you should probably
|
||||
get the code building in cargo first.
|
||||
You may run into errors similar to:
|
||||
|
||||
Once your package builds in cargo, you can use
|
||||
[cargo-bitbake](https://github.com/meta-rust/cargo-bitbake) to generate a bitbake
|
||||
recipe for it. This allows bitbake to fetch all the necessary dependent
|
||||
crates, as well as a pegged version of the crates.io index, to ensure maximum
|
||||
reproducibility.
|
||||
```
|
||||
| src/lib.rs:12:1: 12:35 error: can't find crate for `ffi`
|
||||
| src/lib.rs:12 extern crate "openssl-sys" as ffi;
|
||||
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
```
|
||||
|
||||
NOTE: You will have to edit the generated recipe based on the comments
|
||||
contained within it
|
||||
Where a "-sys" crate (or other crate) is not found. These are typically caused
|
||||
by a crate's Cargo.toml including triplet-specific dependencies and then using
|
||||
the crate based on a feature (most often, `#[cfg(unix)]`). Until cargo and it's
|
||||
ecosystem get their act together, you'll need to supply patches to the
|
||||
misbehaving packages. See `recipies/cargo/cargo_*.bb` for an example of how to
|
||||
do this.
|
||||
|
||||
## TODO
|
||||
|
||||
- -crosssdk and -buildsdk packages
|
||||
- Upstream local rustc patches for libdir and bindir support
|
||||
- add bitbake fetch support for crates.io
|
||||
- add required cargo package registry clones in SRC_URI to prevent the need
|
||||
for network when building.
|
||||
|
||||
## Pitfalls
|
||||
|
||||
- TARGET_SYS _must_ be different from BUILD_SYS. This is due to the way Rust configuration options are tracked for different targets. This is the reason we use the Yocto triples instead of the native Rust triples. See [rust-lang/cargo#3349](https://github.com/rust-lang/cargo/issues/3349).
|
||||
- TARGET_SYS _must_ be different from BUILD_SYS. This is due to the way configuration options are tracked for different targets.
|
||||
|
||||
## Dependencies
|
||||
|
||||
On the host:
|
||||
- Any `-sys` packages your project might need must have RDEPENDs for
|
||||
the native library.
|
||||
unknown
|
||||
|
||||
On the target:
|
||||
- Any `-sys` packages your project might need must have RDEPENDs for
|
||||
the native library.
|
||||
unknown
|
||||
|
||||
## Maintainer(s) & Patch policy
|
||||
|
||||
Open a Pull Request.
|
||||
|
||||
The master branch supports the latest master of poky. When poky creates releases, we will create a branch with the same name as the poky release. This release branch should always work with that poky release. Note that these release branches will typically be less tested than the master branch.
|
||||
|
||||
All new patches against rust, rust-llvm, and cargo must have referenced
|
||||
upstream issues or PRs opened or an explanation why the patch cannot be
|
||||
upstreamed. This corresponds to the OpenEmbedded policy for other meta layers.
|
||||
|
||||
More info can be seen on the wiki.
|
||||
Open a Pull Request
|
||||
|
||||
## Copyright
|
||||
|
||||
MIT OR Apache-2.0 - Same as rust
|
||||
MIT/Apache-2.0 - Same as rust
|
||||
|
||||
|
||||
@@ -1,89 +1,116 @@
|
||||
##
|
||||
## Purpose:
|
||||
## This class is used by any recipes that are built using
|
||||
## Cargo.
|
||||
inherit rust
|
||||
|
||||
inherit cargo_common
|
||||
CARGO ?= "cargo"
|
||||
export CARGO_HOME = "${WORKDIR}/cargo_home"
|
||||
|
||||
# the binary we will use
|
||||
CARGO = "cargo"
|
||||
def cargo_base_dep(d):
|
||||
deps = ""
|
||||
if not d.getVar('INHIBIT_DEFAULT_DEPS') and not d.getVar('INHIBIT_CARGO_DEP'):
|
||||
deps += " cargo-native"
|
||||
return deps
|
||||
|
||||
# We need cargo to compile for the target
|
||||
BASEDEPENDS:append = " cargo-native"
|
||||
BASEDEPENDS_append = " ${@cargo_base_dep(d)}"
|
||||
|
||||
# Ensure we get the right rust variant
|
||||
DEPENDS:append:class-target = " virtual/${TARGET_PREFIX}rust ${RUSTLIB_DEP}"
|
||||
DEPENDS:append:class-native = " rust-native"
|
||||
# FIXME: this is a workaround for a misbehavior in cargo when used with quilt.
|
||||
# See https://github.com/rust-lang/cargo/issues/978
|
||||
PATCHTOOL = "patch"
|
||||
|
||||
# Cargo only supports in-tree builds at the moment
|
||||
B = "${S}"
|
||||
|
||||
# Enable build separation
|
||||
B = "${WORKDIR}/build"
|
||||
|
||||
# In case something fails in the build process, give a bit more feedback on
|
||||
# where the issue occured
|
||||
export RUST_BACKTRACE = "1"
|
||||
|
||||
# The directory of the Cargo.toml relative to the root directory, per default
|
||||
# assume there's a Cargo.toml directly in the root directory
|
||||
CARGO_SRC_DIR ??= ""
|
||||
# The pkg-config-rs library used by cargo build scripts disables itself when
|
||||
# cross compiling unless this is defined. We set up pkg-config appropriately
|
||||
# for cross compilation, so tell it we know better than it.
|
||||
export PKG_CONFIG_ALLOW_CROSS = "1"
|
||||
|
||||
# The actual path to the Cargo.toml
|
||||
MANIFEST_PATH ??= "${S}/${CARGO_SRC_DIR}/Cargo.toml"
|
||||
EXTRA_OECARGO_PATHS ??= ""
|
||||
|
||||
RUSTFLAGS ??= ""
|
||||
BUILD_MODE = "${@['--release', ''][d.getVar('DEBUG_BUILD') == '1']}"
|
||||
CARGO_BUILD_FLAGS = "-v --target ${HOST_SYS} ${BUILD_MODE} --manifest-path=${MANIFEST_PATH}"
|
||||
cargo_do_configure () {
|
||||
mkdir -p .cargo
|
||||
# FIXME: we currently blow away the entire config because duplicate
|
||||
# sections are treated as a parse error by cargo (causing the entire
|
||||
# config to be silently ignored.
|
||||
# NOTE: we cannot pass more flags via this interface, the 'linker' is
|
||||
# assumed to be a path to a binary. If flags are needed, a wrapper must
|
||||
# be used.
|
||||
echo "paths = [" >.cargo/config
|
||||
|
||||
for p in ${EXTRA_OECARGO_PATHS}; do
|
||||
printf "\"%s\"\n" "$p"
|
||||
done | sed -e 's/$/,/' >>.cargo/config
|
||||
echo "]" >>.cargo/config
|
||||
}
|
||||
|
||||
rust_cargo_patch () {
|
||||
# FIXME: if there is already an entry for this target, in an existing
|
||||
# cargo/config, this won't work.
|
||||
cd "${S}"
|
||||
cat >>Cargo.toml <<EOF
|
||||
[profile.dev]
|
||||
rpath = true
|
||||
[profile.release]
|
||||
rpath = true
|
||||
EOF
|
||||
}
|
||||
|
||||
# All the rust & cargo ecosystem assume that CC, LD, etc are a path to a single
|
||||
# command. Fixup the ones we give it so that is the case.
|
||||
# XXX: this is hard coded based on meta/conf/bitbake.conf
|
||||
# TODO: we do quite a bit very similar to this in rust.inc, see if it can be
|
||||
# generalized.
|
||||
export RUST_CC = "${CCACHE}${HOST_PREFIX}gcc"
|
||||
export RUST_CFLAGS = "${HOST_CC_ARCH}${TOOLCHAIN_OPTIONS} ${CFLAGS}"
|
||||
export RUST_BUILD_CC = "${CCACHE}${BUILD_PREFIX}gcc"
|
||||
export RUST_BUILD_CFLAGS = "${BUILD_CC_ARCH} ${BUILD_CFLAGS}"
|
||||
|
||||
export CARGO_BUILD_FLAGS = "-v --target ${HOST_SYS} --release"
|
||||
|
||||
# This is based on the content of CARGO_BUILD_FLAGS and generally will need to
|
||||
# change if CARGO_BUILD_FLAGS changes.
|
||||
BUILD_DIR = "${@['release', 'debug'][d.getVar('DEBUG_BUILD') == '1']}"
|
||||
CARGO_TARGET_SUBDIR="${HOST_SYS}/${BUILD_DIR}"
|
||||
export CARGO_TARGET_SUBDIR="${HOST_SYS}/release"
|
||||
oe_cargo_build () {
|
||||
export RUSTFLAGS="${RUSTFLAGS}"
|
||||
export RUST_TARGET_PATH="${RUST_TARGET_PATH}"
|
||||
bbnote "cargo = $(which ${CARGO})"
|
||||
bbnote "rustc = $(which ${RUSTC})"
|
||||
bbnote "${CARGO} build ${CARGO_BUILD_FLAGS} $@"
|
||||
echo "cargo: $(which cargo)"
|
||||
echo "rustc: $(which rustc)"
|
||||
bbnote ${CARGO} build ${CARGO_BUILD_FLAGS} "$@"
|
||||
"${CARGO}" build ${CARGO_BUILD_FLAGS} "$@"
|
||||
}
|
||||
|
||||
do_compile[progress] = "outof:\s+(\d+)/(\d+)"
|
||||
oe_cargo_fix_env () {
|
||||
export CC="${RUST_CC}"
|
||||
export CFLAGS="${RUST_CFLAGS}"
|
||||
export AR="${AR}"
|
||||
export TARGET_CC="${RUST_CC}"
|
||||
export TARGET_CFLAGS="${RUST_CFLAGS}"
|
||||
export TARGET_AR="${AR}"
|
||||
export HOST_CC="${RUST_BUILD_CC}"
|
||||
export HOST_CFLAGS="${RUST_BUILD_CFLAGS}"
|
||||
export HOST_AR="${BUILD_AR}"
|
||||
}
|
||||
|
||||
cargo_do_compile () {
|
||||
cd "${B}"
|
||||
oe_cargo_fix_env
|
||||
oe_cargo_build
|
||||
}
|
||||
|
||||
# All but the most simple projects will need to override this.
|
||||
cargo_do_install () {
|
||||
local have_installed=false
|
||||
install -d "${D}${bindir}"
|
||||
for tgt in "${B}/target/${CARGO_TARGET_SUBDIR}/"*; do
|
||||
case $tgt in
|
||||
*.so|*.rlib)
|
||||
install -d "${D}${rustlibdir}"
|
||||
install -m755 "$tgt" "${D}${rustlibdir}"
|
||||
if [ -f "$tgt" ] && [ -x "$tgt" ]; then
|
||||
install -m755 "$tgt" "${D}${bindir}"
|
||||
have_installed=true
|
||||
;;
|
||||
*examples)
|
||||
if [ -d "$tgt" ]; then
|
||||
for example in "$tgt/"*; do
|
||||
if [ -f "$example" ] && [ -x "$example" ]; then
|
||||
install -d "${D}${bindir}"
|
||||
install -m755 "$example" "${D}${bindir}"
|
||||
have_installed=true
|
||||
fi
|
||||
done
|
||||
fi
|
||||
;;
|
||||
*)
|
||||
if [ -f "$tgt" ] && [ -x "$tgt" ]; then
|
||||
install -d "${D}${bindir}"
|
||||
install -m755 "$tgt" "${D}${bindir}"
|
||||
have_installed=true
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
fi
|
||||
done
|
||||
if ! $have_installed; then
|
||||
die "Did not find anything to install"
|
||||
fi
|
||||
}
|
||||
|
||||
EXPORT_FUNCTIONS do_compile do_install
|
||||
EXPORT_FUNCTIONS do_compile do_install do_configure
|
||||
|
||||
@@ -1,129 +0,0 @@
|
||||
##
|
||||
## Purpose:
|
||||
## This class is to support building with cargo. It
|
||||
## must be different than cargo.bbclass because Rust
|
||||
## now builds with Cargo but cannot use cargo.bbclass
|
||||
## due to dependencies and assumptions in cargo.bbclass
|
||||
## that Rust & Cargo are already installed. So this
|
||||
## is used by cargo.bbclass and Rust
|
||||
##
|
||||
|
||||
# add crate fetch support
|
||||
inherit crate-fetch
|
||||
inherit rust-common
|
||||
|
||||
# Where we download our registry and dependencies to
|
||||
export CARGO_HOME = "${WORKDIR}/cargo_home"
|
||||
|
||||
# The pkg-config-rs library used by cargo build scripts disables itself when
|
||||
# cross compiling unless this is defined. We set up pkg-config appropriately
|
||||
# for cross compilation, so tell it we know better than it.
|
||||
export PKG_CONFIG_ALLOW_CROSS = "1"
|
||||
|
||||
# Don't instruct cargo to use crates downloaded by bitbake. Some rust packages,
|
||||
# for example the rust compiler itself, come with their own vendored sources.
|
||||
# Specifying two [source.crates-io] will not work.
|
||||
CARGO_DISABLE_BITBAKE_VENDORING ?= "0"
|
||||
|
||||
# Used by libstd-rs to point to the vendor dir included in rustc src
|
||||
CARGO_VENDORING_DIRECTORY ?= "${CARGO_HOME}/bitbake"
|
||||
|
||||
CARGO_RUST_TARGET_CCLD ?= "${RUST_TARGET_CCLD}"
|
||||
cargo_common_do_configure () {
|
||||
mkdir -p ${CARGO_HOME}/bitbake
|
||||
|
||||
cat <<- EOF > ${CARGO_HOME}/config
|
||||
# EXTRA_OECARGO_PATHS
|
||||
paths = [
|
||||
$(for p in ${EXTRA_OECARGO_PATHS}; do echo \"$p\",; done)
|
||||
]
|
||||
EOF
|
||||
|
||||
cat <<- EOF >> ${CARGO_HOME}/config
|
||||
|
||||
# Local mirror vendored by bitbake
|
||||
[source.bitbake]
|
||||
directory = "${CARGO_VENDORING_DIRECTORY}"
|
||||
EOF
|
||||
|
||||
if [ -z "${EXTERNALSRC}" ] && [ ${CARGO_DISABLE_BITBAKE_VENDORING} = "0" ]; then
|
||||
cat <<- EOF >> ${CARGO_HOME}/config
|
||||
|
||||
[source.crates-io]
|
||||
replace-with = "bitbake"
|
||||
local-registry = "/nonexistant"
|
||||
EOF
|
||||
fi
|
||||
|
||||
cat <<- EOF >> ${CARGO_HOME}/config
|
||||
|
||||
[http]
|
||||
# Multiplexing can't be enabled because http2 can't be enabled
|
||||
# in curl-native without dependency loops
|
||||
multiplexing = false
|
||||
|
||||
# Ignore the hard coded and incorrect path to certificates
|
||||
cainfo = "${STAGING_ETCDIR_NATIVE}/ssl/certs/ca-certificates.crt"
|
||||
|
||||
EOF
|
||||
|
||||
if [ -n "${http_proxy}" ]; then
|
||||
echo "proxy = \"${http_proxy}\"" >> ${CARGO_HOME}/config
|
||||
fi
|
||||
|
||||
cat <<- EOF >> ${CARGO_HOME}/config
|
||||
|
||||
# HOST_SYS
|
||||
[target.${HOST_SYS}]
|
||||
linker = "${CARGO_RUST_TARGET_CCLD}"
|
||||
EOF
|
||||
|
||||
if [ "${HOST_SYS}" != "${BUILD_SYS}" ]; then
|
||||
cat <<- EOF >> ${CARGO_HOME}/config
|
||||
|
||||
# BUILD_SYS
|
||||
[target.${BUILD_SYS}]
|
||||
linker = "${RUST_BUILD_CCLD}"
|
||||
EOF
|
||||
fi
|
||||
|
||||
# Put build output in build directory preferred by bitbake instead of
|
||||
# inside source directory unless they are the same
|
||||
if [ "${B}" != "${S}" ]; then
|
||||
cat <<- EOF >> ${CARGO_HOME}/config
|
||||
|
||||
[build]
|
||||
# Use out of tree build destination to avoid poluting the source tree
|
||||
target-dir = "${B}/target"
|
||||
EOF
|
||||
fi
|
||||
|
||||
cat <<- EOF >> ${CARGO_HOME}/config
|
||||
|
||||
[term]
|
||||
progress.when = 'always'
|
||||
progress.width = 80
|
||||
EOF
|
||||
}
|
||||
|
||||
oe_cargo_fix_env () {
|
||||
export CC="${RUST_TARGET_CC}"
|
||||
export CXX="${RUST_TARGET_CXX}"
|
||||
export CFLAGS="${CFLAGS}"
|
||||
export CXXFLAGS="${CXXFLAGS}"
|
||||
export AR="${AR}"
|
||||
export TARGET_CC="${RUST_TARGET_CC}"
|
||||
export TARGET_CXX="${RUST_TARGET_CXX}"
|
||||
export TARGET_CFLAGS="${CFLAGS}"
|
||||
export TARGET_CXXFLAGS="${CXXFLAGS}"
|
||||
export TARGET_AR="${AR}"
|
||||
export HOST_CC="${RUST_BUILD_CC}"
|
||||
export HOST_CXX="${RUST_BUILD_CXX}"
|
||||
export HOST_CFLAGS="${BUILD_CFLAGS}"
|
||||
export HOST_CXXFLAGS="${BUILD_CXXFLAGS}"
|
||||
export HOST_AR="${BUILD_AR}"
|
||||
}
|
||||
|
||||
EXTRA_OECARGO_PATHS ??= ""
|
||||
|
||||
EXPORT_FUNCTIONS do_configure
|
||||
@@ -1,13 +0,0 @@
|
||||
#
|
||||
# crate-fetch class
|
||||
#
|
||||
# Registers 'crate' method for Bitbake fetch2.
|
||||
#
|
||||
# Adds support for following format in recipe SRC_URI:
|
||||
# crate://<packagename>/<version>
|
||||
#
|
||||
|
||||
python () {
|
||||
import crate
|
||||
bb.fetch2.methods.append( crate.Crate() )
|
||||
}
|
||||
@@ -1,8 +1,15 @@
|
||||
inherit rust
|
||||
|
||||
RDEPENDS:${PN}:append:class-target = " ${RUSTLIB_DEP}"
|
||||
RUSTLIB_DEP ?= " rustlib"
|
||||
DEPENDS .= "${RUSTLIB_DEP}"
|
||||
DEPENDS += "patchelf-native"
|
||||
|
||||
RUSTC_ARCHFLAGS += "-C opt-level=3 -g -L ${STAGING_DIR_HOST}/${rustlibdir} -C linker=${RUST_TARGET_CCLD}"
|
||||
export rustlibdir = "${libdir}/rust"
|
||||
FILES_${PN} += "${rustlibdir}/*.so"
|
||||
FILES_${PN}-dev += "${rustlibdir}/*.rlib"
|
||||
FILES_${PN}-dbg += "${rustlibdir}/.debug"
|
||||
|
||||
RUSTC_ARCHFLAGS += "-C opt-level=3 -g -L ${STAGING_DIR_HOST}/${rustlibdir}"
|
||||
EXTRA_OEMAKE += 'RUSTC_ARCHFLAGS="${RUSTC_ARCHFLAGS}"'
|
||||
|
||||
# Some libraries alias with the standard library but libstd is configured to
|
||||
@@ -12,12 +19,11 @@ OVERLAP_LIBS = "\
|
||||
libc \
|
||||
log \
|
||||
getopts \
|
||||
rand \
|
||||
"
|
||||
def get_overlap_deps(d):
|
||||
deps = d.getVar("DEPENDS").split()
|
||||
overlap_deps = []
|
||||
for o in d.getVar("OVERLAP_LIBS").split():
|
||||
for o in d.getVar("OVERLAP_LIBS", True).split():
|
||||
l = len([o for dep in deps if (o + '-rs' in dep)])
|
||||
if l > 0:
|
||||
overlap_deps.append(o)
|
||||
@@ -26,58 +32,20 @@ OVERLAP_DEPS = "${@get_overlap_deps(d)}"
|
||||
|
||||
# Prevents multiple static copies of standard library modules
|
||||
# See https://github.com/rust-lang/rust/issues/19680
|
||||
RUSTC_PREFER_DYNAMIC = "-C prefer-dynamic"
|
||||
RUSTC_FLAGS += "${RUSTC_PREFER_DYNAMIC}"
|
||||
RUSTC_FLAGS += "-C prefer-dynamic"
|
||||
|
||||
CRATE_NAME ?= "${@d.getVar('BPN').replace('-rs', '').replace('-', '_')}"
|
||||
rustlib="${libdir}/${TUNE_PKGARCH}${TARGET_VENDOR}-${TARGET_OS}/rustlib/${HOST_SYS}/lib"
|
||||
CRATE_NAME ?= "${@d.getVar('BPN', True).replace('-rs', '').replace('-', '_')}"
|
||||
BINNAME ?= "${BPN}"
|
||||
LIBNAME ?= "lib${CRATE_NAME}-rs"
|
||||
LIBNAME ?= "lib${CRATE_NAME}"
|
||||
CRATE_TYPE ?= "dylib"
|
||||
BIN_SRC ?= "${S}/src/main.rs"
|
||||
LIB_SRC ?= "${S}/src/lib.rs"
|
||||
|
||||
rustbindest ?= "${bindir}"
|
||||
rustlibdest ?= "${rustlibdir}"
|
||||
RUST_RPATH_ABS ?= "${rustlibdir}:${rustlib}"
|
||||
|
||||
def relative_rpaths(paths, base):
|
||||
relpaths = set()
|
||||
for p in paths.split(':'):
|
||||
if p == base:
|
||||
relpaths.add('$ORIGIN')
|
||||
continue
|
||||
relpaths.add(os.path.join('$ORIGIN', os.path.relpath(p, base)))
|
||||
return '-rpath=' + ':'.join(relpaths) if len(relpaths) else ''
|
||||
|
||||
RUST_LIB_RPATH_FLAGS ?= "${@relative_rpaths(d.getVar('RUST_RPATH_ABS', True), d.getVar('rustlibdest', True))}"
|
||||
RUST_BIN_RPATH_FLAGS ?= "${@relative_rpaths(d.getVar('RUST_RPATH_ABS', True), d.getVar('rustbindest', True))}"
|
||||
|
||||
def libfilename(d):
|
||||
if d.getVar('CRATE_TYPE', True) == 'dylib':
|
||||
return d.getVar('LIBNAME', True) + '.so'
|
||||
else:
|
||||
return d.getVar('LIBNAME', True) + '.rlib'
|
||||
|
||||
def link_args(d, bin):
|
||||
linkargs = []
|
||||
if bin:
|
||||
rpaths = d.getVar('RUST_BIN_RPATH_FLAGS', False)
|
||||
else:
|
||||
rpaths = d.getVar('RUST_LIB_RPATH_FLAGS', False)
|
||||
if d.getVar('CRATE_TYPE', True) == 'dylib':
|
||||
linkargs.append('-soname')
|
||||
linkargs.append(libfilename(d))
|
||||
if len(rpaths):
|
||||
linkargs.append(rpaths)
|
||||
if len(linkargs):
|
||||
return ' '.join(['-Wl,' + arg for arg in linkargs])
|
||||
else:
|
||||
return ''
|
||||
|
||||
get_overlap_externs () {
|
||||
externs=
|
||||
for dep in ${OVERLAP_DEPS}; do
|
||||
extern=$(ls ${STAGING_DIR_HOST}/${rustlibdir}/lib$dep-rs.{so,rlib} 2>/dev/null \
|
||||
extern=$(ls ${STAGING_DIR_HOST}/${rustlibdir}/lib$dep.{so,rlib} 2>/dev/null \
|
||||
| awk '{print $1}');
|
||||
if [ -n "$extern" ]; then
|
||||
externs="$externs --extern $dep=$extern"
|
||||
@@ -89,26 +57,16 @@ get_overlap_externs () {
|
||||
echo "$externs"
|
||||
}
|
||||
|
||||
do_configure () {
|
||||
}
|
||||
|
||||
oe_runrustc () {
|
||||
export RUST_TARGET_PATH="${RUST_TARGET_PATH}"
|
||||
bbnote ${RUSTC} ${RUSTC_ARCHFLAGS} ${RUSTC_FLAGS} "$@"
|
||||
"${RUSTC}" ${RUSTC_ARCHFLAGS} ${RUSTC_FLAGS} "$@"
|
||||
}
|
||||
|
||||
oe_compile_rust_lib () {
|
||||
rm -rf ${LIBNAME}.{rlib,so}
|
||||
local -a link_args
|
||||
if [ -n '${@link_args(d, False)}' ]; then
|
||||
link_args[0]='-C'
|
||||
link_args[1]='link-args=${@link_args(d, False)}'
|
||||
if [ "${CRATE_TYPE}" == "dylib" ]; then
|
||||
link_args[0]="-C"
|
||||
link_args[1]="link-args=-Wl,-soname -Wl,${LIBNAME}.so"
|
||||
fi
|
||||
oe_runrustc $(get_overlap_externs) \
|
||||
"${link_args[@]}" \
|
||||
${LIB_SRC} \
|
||||
-o ${@libfilename(d)} \
|
||||
--crate-name=${CRATE_NAME} --crate-type=${CRATE_TYPE} \
|
||||
"$@"
|
||||
}
|
||||
@@ -116,27 +74,20 @@ oe_compile_rust_lib[vardeps] += "get_overlap_externs"
|
||||
|
||||
oe_compile_rust_bin () {
|
||||
rm -rf ${BINNAME}
|
||||
local -a link_args
|
||||
if [ -n '${@link_args(d, True)}' ]; then
|
||||
link_args[0]='-C'
|
||||
link_args[1]='link-args=${@link_args(d, True)}'
|
||||
fi
|
||||
oe_runrustc $(get_overlap_externs) \
|
||||
"${link_args[@]}" \
|
||||
${BIN_SRC} -o ${BINNAME} "$@"
|
||||
oe_runrustc $(get_overlap_externs) ${BIN_SRC} -o ${BINNAME} "$@"
|
||||
}
|
||||
oe_compile_rust_bin[vardeps] += "get_overlap_externs"
|
||||
|
||||
oe_install_rust_lib () {
|
||||
for lib in $(ls ${LIBNAME}.{so,rlib} 2>/dev/null); do
|
||||
echo Installing $lib
|
||||
install -D -m 755 $lib ${D}/${rustlibdest}/$lib
|
||||
install -D -m 755 $lib ${D}/${rustlibdir}/$lib
|
||||
done
|
||||
}
|
||||
|
||||
oe_install_rust_bin () {
|
||||
echo Installing ${BINNAME}
|
||||
install -D -m 755 ${BINNAME} ${D}/${rustbindest}/${BINNAME}
|
||||
install -D -m 755 ${BINNAME} ${D}/${bindir}/${BINNAME}
|
||||
}
|
||||
|
||||
do_rust_bin_fixups() {
|
||||
@@ -144,6 +95,13 @@ do_rust_bin_fixups() {
|
||||
echo "Strip rust note: $f"
|
||||
${OBJCOPY} -R .note.rustc $f $f
|
||||
done
|
||||
}
|
||||
PACKAGE_PREPROCESS_FUNCS += "do_rust_bin_fixups"
|
||||
|
||||
for f in `find ${PKGD}`; do
|
||||
file "$f" | grep -q ELF || continue
|
||||
readelf -d "$f" | grep RPATH | grep -q rustlib || continue
|
||||
echo "Set rpath:" "$f"
|
||||
patchelf --set-rpath '$ORIGIN:'${rustlibdir}:${rustlib} "$f"
|
||||
done
|
||||
}
|
||||
|
||||
PACKAGE_PREPROCESS_FUNCS += "do_rust_bin_fixups"
|
||||
|
||||
@@ -1,174 +0,0 @@
|
||||
# Common variables used by all Rust builds
|
||||
export rustlibdir = "${libdir}/rust"
|
||||
FILES:${PN} += "${rustlibdir}/*.so"
|
||||
FILES:${PN}-dev += "${rustlibdir}/*.rlib ${rustlibdir}/*.rmeta"
|
||||
FILES:${PN}-dbg += "${rustlibdir}/.debug"
|
||||
|
||||
RUSTLIB = "-L ${STAGING_LIBDIR}/rust"
|
||||
RUST_DEBUG_REMAP = "--remap-path-prefix=${WORKDIR}=/usr/src/debug/${PN}/${EXTENDPE}${PV}-${PR}"
|
||||
RUSTFLAGS += "${RUSTLIB} ${RUST_DEBUG_REMAP}"
|
||||
RUSTLIB_DEP ?= "libstd-rs"
|
||||
RUST_TARGET_PATH = "${STAGING_LIBDIR_NATIVE}/rustlib"
|
||||
RUST_PANIC_STRATEGY ?= "unwind"
|
||||
|
||||
# Native builds are not effected by TCLIBC. Without this, rust-native
|
||||
# thinks it's "target" (i.e. x86_64-linux) is a musl target.
|
||||
RUST_LIBC = "${TCLIBC}"
|
||||
RUST_LIBC:class-native = "glibc"
|
||||
|
||||
def determine_libc(d, thing):
|
||||
'''Determine which libc something should target'''
|
||||
|
||||
# BUILD is never musl, TARGET may be musl or glibc,
|
||||
# HOST could be musl, but only if a compiler is built to be run on
|
||||
# target in which case HOST_SYS != BUILD_SYS.
|
||||
if thing == 'TARGET':
|
||||
libc = d.getVar('RUST_LIBC')
|
||||
elif thing == 'BUILD' and (d.getVar('HOST_SYS') != d.getVar('BUILD_SYS')):
|
||||
libc = d.getVar('RUST_LIBC')
|
||||
else:
|
||||
libc = d.getVar('RUST_LIBC:class-native')
|
||||
|
||||
return libc
|
||||
|
||||
def target_is_armv7(d):
|
||||
'''Determine if target is armv7'''
|
||||
# TUNE_FEATURES may include arm* even if the target is not arm
|
||||
# in the case of *-native packages
|
||||
if d.getVar('TARGET_ARCH') != 'arm':
|
||||
return False
|
||||
|
||||
feat = d.getVar('TUNE_FEATURES')
|
||||
feat = frozenset(feat.split())
|
||||
mach_overrides = d.getVar('MACHINEOVERRIDES')
|
||||
mach_overrides = frozenset(mach_overrides.split(':'))
|
||||
|
||||
v7=frozenset(['armv7a', 'armv7r', 'armv7m', 'armv7ve'])
|
||||
if mach_overrides.isdisjoint(v7) and feat.isdisjoint(v7):
|
||||
return False
|
||||
else:
|
||||
return True
|
||||
|
||||
# Responsible for taking Yocto triples and converting it to Rust triples
|
||||
def rust_base_triple(d, thing):
|
||||
'''
|
||||
Mangle bitbake's *_SYS into something that rust might support (see
|
||||
rust/mk/cfg/* for a list)
|
||||
|
||||
Note that os is assumed to be some linux form
|
||||
'''
|
||||
|
||||
# The llvm-target for armv7 is armv7-unknown-linux-gnueabihf
|
||||
if thing == "TARGET" and target_is_armv7(d):
|
||||
arch = "armv7"
|
||||
else:
|
||||
arch = d.getVar('{}_ARCH'.format(thing))
|
||||
|
||||
# All the Yocto targets are Linux and are 'unknown'
|
||||
vendor = "-unknown"
|
||||
os = d.getVar('{}_OS'.format(thing))
|
||||
libc = determine_libc(d, thing)
|
||||
|
||||
# Prefix with a dash and convert glibc -> gnu
|
||||
if libc == "glibc":
|
||||
libc = "-gnu"
|
||||
elif libc == "musl":
|
||||
libc = "-musl"
|
||||
|
||||
# Don't double up musl (only appears to be the case on aarch64)
|
||||
if os == "linux-musl":
|
||||
if libc != "-musl":
|
||||
bb.fatal("{}_OS was '{}' but TCLIBC was not 'musl'".format(thing, os))
|
||||
os = "linux"
|
||||
|
||||
# This catches ARM targets and appends the necessary hard float bits
|
||||
if os == "linux-gnueabi" or os == "linux-musleabi":
|
||||
libc = bb.utils.contains('TUNE_FEATURES', 'callconvention-hard', 'hf', '', d)
|
||||
return arch + vendor + '-' + os + libc
|
||||
|
||||
# Naming explanation
|
||||
# Yocto
|
||||
# - BUILD_SYS - Yocto triple of the build environment
|
||||
# - HOST_SYS - What we're building for in Yocto
|
||||
# - TARGET_SYS - What we're building for in Yocto
|
||||
#
|
||||
# So when building '-native' packages BUILD_SYS == HOST_SYS == TARGET_SYS
|
||||
# When building packages for the image HOST_SYS == TARGET_SYS
|
||||
# This is a gross over simplification as there are other modes but
|
||||
# currently this is all that's supported.
|
||||
#
|
||||
# Rust
|
||||
# - TARGET - the system where the binary will run
|
||||
# - HOST - the system where the binary is being built
|
||||
#
|
||||
# Rust additionally will use two additional cases:
|
||||
# - undecorated (e.g. CC) - equivalent to TARGET
|
||||
# - triple suffix (e.g. CC:x86_64_unknown_linux_gnu) - both
|
||||
# see: https://github.com/alexcrichton/gcc-rs
|
||||
# The way that Rust's internal triples and Yocto triples are mapped together
|
||||
# its likely best to not use the triple suffix due to potential confusion.
|
||||
|
||||
RUST_BUILD_SYS = "${@rust_base_triple(d, 'BUILD')}"
|
||||
RUST_HOST_SYS = "${@rust_base_triple(d, 'HOST')}"
|
||||
RUST_TARGET_SYS = "${@rust_base_triple(d, 'TARGET')}"
|
||||
|
||||
# wrappers to get around the fact that Rust needs a single
|
||||
# binary but Yocto's compiler and linker commands have
|
||||
# arguments. Technically the archiver is always one command but
|
||||
# this is necessary for builds that determine the prefix and then
|
||||
# use those commands based on the prefix.
|
||||
WRAPPER_DIR = "${WORKDIR}/wrapper"
|
||||
RUST_BUILD_CC = "${WRAPPER_DIR}/build-rust-cc"
|
||||
RUST_BUILD_CXX = "${WRAPPER_DIR}/build-rust-cxx"
|
||||
RUST_BUILD_CCLD = "${WRAPPER_DIR}/build-rust-ccld"
|
||||
RUST_BUILD_AR = "${WRAPPER_DIR}/build-rust-ar"
|
||||
RUST_TARGET_CC = "${WRAPPER_DIR}/target-rust-cc"
|
||||
RUST_TARGET_CXX = "${WRAPPER_DIR}/target-rust-cxx"
|
||||
RUST_TARGET_CCLD = "${WRAPPER_DIR}/target-rust-ccld"
|
||||
RUST_TARGET_AR = "${WRAPPER_DIR}/target-rust-ar"
|
||||
|
||||
create_wrapper () {
|
||||
file="$1"
|
||||
shift
|
||||
|
||||
cat <<- EOF > "${file}"
|
||||
#!/bin/sh
|
||||
exec $@ "\$@"
|
||||
EOF
|
||||
chmod +x "${file}"
|
||||
}
|
||||
|
||||
export WRAPPER_TARGET_CC = "${CC}"
|
||||
export WRAPPER_TARGET_CXX = "${CXX}"
|
||||
export WRAPPER_TARGET_CCLD = "${CCLD}"
|
||||
export WRAPPER_TARGET_LDFLAGS = "${LDFLAGS}"
|
||||
export WRAPPER_TARGET_AR = "${AR}"
|
||||
|
||||
# compiler is used by gcc-rs
|
||||
# linker is used by rustc/cargo
|
||||
# archiver is used by the build of libstd-rs
|
||||
do_rust_create_wrappers () {
|
||||
mkdir -p "${WRAPPER_DIR}"
|
||||
|
||||
# Yocto Build / Rust Host C compiler
|
||||
create_wrapper "${RUST_BUILD_CC}" "${BUILD_CC}"
|
||||
# Yocto Build / Rust Host C++ compiler
|
||||
create_wrapper "${RUST_BUILD_CXX}" "${BUILD_CXX}"
|
||||
# Yocto Build / Rust Host linker
|
||||
create_wrapper "${RUST_BUILD_CCLD}" "${BUILD_CCLD}" "${BUILD_LDFLAGS}"
|
||||
# Yocto Build / Rust Host archiver
|
||||
create_wrapper "${RUST_BUILD_AR}" "${BUILD_AR}"
|
||||
|
||||
# Yocto Target / Rust Target C compiler
|
||||
create_wrapper "${RUST_TARGET_CC}" "${WRAPPER_TARGET_CC}"
|
||||
# Yocto Target / Rust Target C++ compiler
|
||||
create_wrapper "${RUST_TARGET_CXX}" "${WRAPPER_TARGET_CXX}"
|
||||
# Yocto Target / Rust Target linker
|
||||
create_wrapper "${RUST_TARGET_CCLD}" "${WRAPPER_TARGET_CCLD}" "${WRAPPER_TARGET_LDFLAGS}"
|
||||
# Yocto Target / Rust Target archiver
|
||||
create_wrapper "${RUST_TARGET_AR}" "${WRAPPER_TARGET_AR}"
|
||||
|
||||
}
|
||||
|
||||
addtask rust_create_wrappers before do_configure after do_patch
|
||||
do_rust_create_wrappers[dirs] += "${WRAPPER_DIR}"
|
||||
15
classes/rust-installer.bbclass
Normal file
15
classes/rust-installer.bbclass
Normal file
@@ -0,0 +1,15 @@
|
||||
# Rust installer isn't very nice and drops a bunch of junk in our filesystem,
|
||||
# clean it up after the install.
|
||||
|
||||
rust_installer_do_install () {
|
||||
rm ${D}/${libdir}/rustlib/install.log
|
||||
rm ${D}/${libdir}/rustlib/rust-installer-version
|
||||
rm ${D}/${libdir}/rustlib/uninstall.sh
|
||||
rm ${D}/${libdir}/rustlib/components
|
||||
}
|
||||
|
||||
do_install_append () {
|
||||
rust_installer_do_install
|
||||
}
|
||||
|
||||
EXPORT_FUNCTIONS rust_installer_do_install
|
||||
@@ -1,21 +1,48 @@
|
||||
inherit rust-common
|
||||
|
||||
RUSTC = "rustc"
|
||||
|
||||
RUSTC_ARCHFLAGS += "--target=${HOST_SYS} ${RUSTFLAGS}"
|
||||
# FIXME: --sysroot might be needed
|
||||
RUSTC_ARCHFLAGS += "--target=${TARGET_SYS} -C rpath"
|
||||
|
||||
def rust_base_dep(d):
|
||||
# Taken from meta/classes/base.bbclass `base_dep_prepend` and modified to
|
||||
# use rust instead of gcc
|
||||
deps = ""
|
||||
if not d.getVar('INHIBIT_DEFAULT_RUST_DEPS'):
|
||||
if (d.getVar('HOST_SYS') != d.getVar('BUILD_SYS')):
|
||||
deps += " virtual/${TARGET_PREFIX}rust ${RUSTLIB_DEP}"
|
||||
if (d.getVar('HOST_SYS', True) != d.getVar('BUILD_SYS', True)):
|
||||
deps += " virtual/${TARGET_PREFIX}rust"
|
||||
else:
|
||||
deps += " rust-native"
|
||||
return deps
|
||||
|
||||
DEPENDS:append = " ${@rust_base_dep(d)}"
|
||||
DEPENDS_append = " ${@rust_base_dep(d)}"
|
||||
|
||||
def rust_base_triple(d, thing):
|
||||
'''
|
||||
Mangle bitbake's *_SYS into something that rust might support (see
|
||||
rust/mk/cfg/* for a list)
|
||||
|
||||
Note that os is assumed to be some linux form
|
||||
'''
|
||||
|
||||
arch = d.getVar('{}_ARCH'.format(thing), True)
|
||||
vendor = d.getVar('{}_VENDOR'.format(thing), True)
|
||||
os = d.getVar('{}_OS'.format(thing), True)
|
||||
|
||||
vendor = "-unknown"
|
||||
|
||||
if arch.startswith("arm"):
|
||||
if os.endswith("gnueabi"):
|
||||
os += bb.utils.contains('TUNE_FEATURES', 'callconvention-hard', 'hf', '', d)
|
||||
elif arch.startswith("x86_64"):
|
||||
os = "linux-gnu"
|
||||
elif arch.startswith("i586"):
|
||||
arch = "i686"
|
||||
os = "linux-gnu"
|
||||
return arch + vendor + '-' + os
|
||||
|
||||
RUST_BUILD_SYS = "${@rust_base_triple(d, 'BUILD')}"
|
||||
RUST_HOST_SYS = "${@rust_base_triple(d, 'HOST')}"
|
||||
RUST_TARGET_SYS = "${@rust_base_triple(d, 'TARGET')}"
|
||||
|
||||
# BUILD_LDFLAGS
|
||||
# ${STAGING_LIBDIR_NATIVE}
|
||||
@@ -30,16 +57,26 @@ DEPENDS:append = " ${@rust_base_dep(d)}"
|
||||
# -L${STAGING_BASE_LIBDIR_NATIVE} \
|
||||
#"
|
||||
|
||||
RUST_PATH_NATIVE = "${STAGING_LIBDIR_NATIVE}:${STAGING_BASE_LIBDIR_NATIVE}"
|
||||
|
||||
## Note: the 'rustlib' element of this was a workaround rustc forgetting the
|
||||
## libdir it was built with. It now remembers so this should be unneeded
|
||||
#RUST_PATH_NATIVE .= ":${STAGING_LIBDIR_NATIVE}/${TARGET_SYS}/rustlib/${TARGET_SYS}/lib"
|
||||
|
||||
# FIXME: set based on whether we are native vs cross vs buildsdk, etc
|
||||
#export RUST_PATH ??= "${RUST_PATH_NATIVE}"
|
||||
|
||||
## This is builtin to rustc with the value "$libdir/rust/targets"
|
||||
# RUST_TARGET_PATH = "foo:bar"
|
||||
|
||||
oe_runrustc () {
|
||||
bbnote ${RUSTC} ${RUSTC_ARCHFLAGS} ${RUSTC_FLAGS} "$@"
|
||||
"${RUSTC}" ${RUSTC_ARCHFLAGS} ${RUSTC_FLAGS} "$@"
|
||||
}
|
||||
|
||||
# XXX: for some reason bitbake sets BUILD_* & TARGET_* but uses the bare
|
||||
# variables for HOST. Alias things to make it easier for us.
|
||||
HOST_LDFLAGS ?= "${LDFLAGS}"
|
||||
HOST_CFLAGS ?= "${CFLAGS}"
|
||||
HOST_CXXFLAGS ?= "${CXXFLAGS}"
|
||||
HOST_CPPFLAGS ?= "${CPPFLAGS}"
|
||||
|
||||
rustlib_suffix="${TUNE_ARCH}${TARGET_VENDOR}-${TARGET_OS}/rustlib/${HOST_SYS}/lib"
|
||||
# Native sysroot standard library path
|
||||
rustlib_src="${prefix}/lib/${rustlib_suffix}"
|
||||
# Host sysroot standard library path
|
||||
rustlib="${libdir}/${rustlib_suffix}"
|
||||
rustlib:class-native="${libdir}/rustlib/${BUILD_SYS}/lib"
|
||||
|
||||
@@ -1,20 +0,0 @@
|
||||
# LAYER_CONF_VERSION is increased each time build/conf/bblayers.conf
|
||||
# changes incompatibly
|
||||
LCONF_VERSION = "6"
|
||||
|
||||
BBPATH = "${TOPDIR}"
|
||||
BBFILES ?= ""
|
||||
|
||||
BBLAYERS ?= " \
|
||||
##OEROOT##/meta-rust \
|
||||
##OEROOT##/meta \
|
||||
##OEROOT##/meta-poky \
|
||||
##OEROOT##/meta-yocto-bsp \
|
||||
##OEROOT##/meta-openembedded/meta-oe \
|
||||
##OEROOT##/meta-openembedded/meta-networking \
|
||||
##OEROOT##/meta-openembedded/meta-python \
|
||||
"
|
||||
BBLAYERS_NON_REMOVABLE ?= " \
|
||||
##OEROOT##/meta \
|
||||
##OEROOT##/meta-yocto \
|
||||
"
|
||||
@@ -1,7 +1,6 @@
|
||||
# Build errors with PIE options enabled
|
||||
SECURITY_CFLAGS:pn-rust-native = "${SECURITY_NO_PIE_CFLAGS}"
|
||||
SECURITY_CFLAGS:pn-rust-cross-${TARGET_ARCH} = "${SECURITY_NO_PIE_CFLAGS}"
|
||||
SECURITY_CFLAGS:pn-rust = "${SECURITY_NO_PIE_CFLAGS}"
|
||||
SECURITY_CFLAGS:pn-rust-llvm = "${SECURITY_NO_PIE_CFLAGS}"
|
||||
|
||||
SECURITY_LDFLAGS:pn-rust-cross-arm = " -lssp_nonshared -lssp"
|
||||
SECURITY_CFLAGS_pn-rust-native = "${SECURITY_NO_PIE_CFLAGS}"
|
||||
SECURITY_CFLAGS_pn-rust-cross = "${SECURITY_NO_PIE_CFLAGS}"
|
||||
SECURITY_CFLAGS_pn-rust-cross-${TARGET_ARCH} = "${SECURITY_NO_PIE_CFLAGS}"
|
||||
SECURITY_CFLAGS_pn-rust = "${SECURITY_NO_PIE_CFLAGS}"
|
||||
SECURITY_CFLAGS_pn-rust-llvm = "${SECURITY_NO_PIE_CFLAGS}"
|
||||
|
||||
@@ -1,13 +0,0 @@
|
||||
# include this in your distribution to easily switch between versions
|
||||
# just by changing RUST_VERSION variable
|
||||
|
||||
RUST_VERSION ?= "1.51.0"
|
||||
|
||||
PREFERRED_VERSION_cargo ?= "${RUST_VERSION}"
|
||||
PREFERRED_VERSION_cargo-native ?= "${RUST_VERSION}"
|
||||
PREFERRED_VERSION_libstd-rs ?= "${RUST_VERSION}"
|
||||
PREFERRED_VERSION_rust ?= "${RUST_VERSION}"
|
||||
PREFERRED_VERSION_rust-cross-${TARGET_ARCH} ?= "${RUST_VERSION}"
|
||||
PREFERRED_VERSION_rust-llvm ?= "${RUST_VERSION}"
|
||||
PREFERRED_VERSION_rust-llvm-native ?= "${RUST_VERSION}"
|
||||
PREFERRED_VERSION_rust-native ?= "${RUST_VERSION}"
|
||||
@@ -8,8 +8,7 @@ BBFILE_COLLECTIONS += "rust-layer"
|
||||
BBFILE_PATTERN_rust-layer := "^${LAYERDIR}/"
|
||||
BBFILE_PRIORITY_rust-layer = "7"
|
||||
|
||||
LAYERDEPENDS_rust-layer = "core openembedded-layer"
|
||||
LAYERSERIES_COMPAT_rust-layer = "dunfell gatesgarth hardknott honister"
|
||||
LICENSE_PATH += "${LAYERDIR}/licenses"
|
||||
|
||||
# Override security flags
|
||||
require conf/distro/include/rust_security_flags.inc
|
||||
|
||||
@@ -1,242 +0,0 @@
|
||||
#
|
||||
# This file is your local configuration file and is where all local user settings
|
||||
# are placed. The comments in this file give some guide to the options a new user
|
||||
# to the system might want to change but pretty much any configuration option can
|
||||
# be set in this file. More adventurous users can look at local.conf.extended
|
||||
# which contains other examples of configuration which can be placed in this file
|
||||
# but new users likely won't need any of them initially.
|
||||
#
|
||||
# Lines starting with the '#' character are commented out and in some cases the
|
||||
# default values are provided as comments to show people example syntax. Enabling
|
||||
# the option is a question of removing the # character and making any change to the
|
||||
# variable as required.
|
||||
|
||||
#
|
||||
# Machine Selection
|
||||
#
|
||||
# You need to select a specific machine to target the build with. There are a selection
|
||||
# of emulated machines available which can boot and run in the QEMU emulator:
|
||||
#
|
||||
#MACHINE ?= "qemuarm"
|
||||
#MACHINE ?= "qemuarm64"
|
||||
#MACHINE ?= "qemumips"
|
||||
#MACHINE ?= "qemumips64"
|
||||
#MACHINE ?= "qemuppc"
|
||||
#MACHINE ?= "qemux86"
|
||||
#MACHINE ?= "qemux86-64"
|
||||
#
|
||||
# There are also the following hardware board target machines included for
|
||||
# demonstration purposes:
|
||||
#
|
||||
#MACHINE ?= "beaglebone"
|
||||
#MACHINE ?= "genericx86"
|
||||
#MACHINE ?= "genericx86-64"
|
||||
#MACHINE ?= "mpc8315e-rdb"
|
||||
#MACHINE ?= "edgerouter"
|
||||
#
|
||||
# This sets the default machine to be qemux86 if no other machine is selected:
|
||||
MACHINE ??= "qemux86-64"
|
||||
|
||||
#
|
||||
# Where to place downloads
|
||||
#
|
||||
# During a first build the system will download many different source code tarballs
|
||||
# from various upstream projects. This can take a while, particularly if your network
|
||||
# connection is slow. These are all stored in DL_DIR. When wiping and rebuilding you
|
||||
# can preserve this directory to speed up this part of subsequent builds. This directory
|
||||
# is safe to share between multiple builds on the same machine too.
|
||||
#
|
||||
# The default is a downloads directory under TOPDIR which is the build directory.
|
||||
#
|
||||
#DL_DIR ?= "${TOPDIR}/downloads"
|
||||
|
||||
#
|
||||
# Where to place shared-state files
|
||||
#
|
||||
# BitBake has the capability to accelerate builds based on previously built output.
|
||||
# This is done using "shared state" files which can be thought of as cache objects
|
||||
# and this option determines where those files are placed.
|
||||
#
|
||||
# You can wipe out TMPDIR leaving this directory intact and the build would regenerate
|
||||
# from these files if no changes were made to the configuration. If changes were made
|
||||
# to the configuration, only shared state files where the state was still valid would
|
||||
# be used (done using checksums).
|
||||
#
|
||||
# The default is a sstate-cache directory under TOPDIR.
|
||||
#
|
||||
#SSTATE_DIR ?= "${TOPDIR}/sstate-cache"
|
||||
|
||||
#
|
||||
# Where to place the build output
|
||||
#
|
||||
# This option specifies where the bulk of the building work should be done and
|
||||
# where BitBake should place its temporary files and output. Keep in mind that
|
||||
# this includes the extraction and compilation of many applications and the toolchain
|
||||
# which can use Gigabytes of hard disk space.
|
||||
#
|
||||
# The default is a tmp directory under TOPDIR.
|
||||
#
|
||||
#TMPDIR = "${TOPDIR}/tmp"
|
||||
|
||||
#
|
||||
# Default policy config
|
||||
#
|
||||
# The distribution setting controls which policy settings are used as defaults.
|
||||
# The default value is fine for general Yocto project use, at least initially.
|
||||
# Ultimately when creating custom policy, people will likely end up subclassing
|
||||
# these defaults.
|
||||
#
|
||||
DISTRO ?= "poky"
|
||||
# As an example of a subclass there is a "bleeding" edge policy configuration
|
||||
# where many versions are set to the absolute latest code from the upstream
|
||||
# source control systems. This is just mentioned here as an example, its not
|
||||
# useful to most new users.
|
||||
# DISTRO ?= "poky-bleeding"
|
||||
|
||||
#
|
||||
# Package Management configuration
|
||||
#
|
||||
# This variable lists which packaging formats to enable. Multiple package backends
|
||||
# can be enabled at once and the first item listed in the variable will be used
|
||||
# to generate the root filesystems.
|
||||
# Options are:
|
||||
# - 'package_deb' for debian style deb files
|
||||
# - 'package_ipk' for ipk files are used by opkg (a debian style embedded package manager)
|
||||
# - 'package_rpm' for rpm style packages
|
||||
# E.g.: PACKAGE_CLASSES ?= "package_rpm package_deb package_ipk"
|
||||
# We default to rpm:
|
||||
PACKAGE_CLASSES ?= "package_rpm"
|
||||
|
||||
#
|
||||
# SDK target architecture
|
||||
#
|
||||
# This variable specifies the architecture to build SDK items for and means
|
||||
# you can build the SDK packages for architectures other than the machine you are
|
||||
# running the build on (i.e. building i686 packages on an x86_64 host).
|
||||
# Supported values are i686 and x86_64
|
||||
#SDKMACHINE ?= "i686"
|
||||
|
||||
#
|
||||
# Extra image configuration defaults
|
||||
#
|
||||
# The EXTRA_IMAGE_FEATURES variable allows extra packages to be added to the generated
|
||||
# images. Some of these options are added to certain image types automatically. The
|
||||
# variable can contain the following options:
|
||||
# "dbg-pkgs" - add -dbg packages for all installed packages
|
||||
# (adds symbol information for debugging/profiling)
|
||||
# "dev-pkgs" - add -dev packages for all installed packages
|
||||
# (useful if you want to develop against libs in the image)
|
||||
# "ptest-pkgs" - add -ptest packages for all ptest-enabled packages
|
||||
# (useful if you want to run the package test suites)
|
||||
# "tools-sdk" - add development tools (gcc, make, pkgconfig etc.)
|
||||
# "tools-debug" - add debugging tools (gdb, strace)
|
||||
# "eclipse-debug" - add Eclipse remote debugging support
|
||||
# "tools-profile" - add profiling tools (oprofile, lttng, valgrind)
|
||||
# "tools-testapps" - add useful testing tools (ts_print, aplay, arecord etc.)
|
||||
# "debug-tweaks" - make an image suitable for development
|
||||
# e.g. ssh root access has a blank password
|
||||
# There are other application targets that can be used here too, see
|
||||
# meta/classes/image.bbclass and meta/classes/core-image.bbclass for more details.
|
||||
# We default to enabling the debugging tweaks.
|
||||
EXTRA_IMAGE_FEATURES ?= "debug-tweaks"
|
||||
|
||||
#
|
||||
# Additional image features
|
||||
#
|
||||
# The following is a list of additional classes to use when building images which
|
||||
# enable extra features. Some available options which can be included in this variable
|
||||
# are:
|
||||
# - 'buildstats' collect build statistics
|
||||
# - 'image-mklibs' to reduce shared library files size for an image
|
||||
# - 'image-prelink' in order to prelink the filesystem image
|
||||
# - 'image-swab' to perform host system intrusion detection
|
||||
# NOTE: if listing mklibs & prelink both, then make sure mklibs is before prelink
|
||||
# NOTE: mklibs also needs to be explicitly enabled for a given image, see local.conf.extended
|
||||
# image-prelink disabled for now due to issues with IFUNC symbol relocation
|
||||
USER_CLASSES ?= "buildstats image-mklibs"
|
||||
|
||||
#
|
||||
# Runtime testing of images
|
||||
#
|
||||
# The build system can test booting virtual machine images under qemu (an emulator)
|
||||
# after any root filesystems are created and run tests against those images. To
|
||||
# enable this uncomment this line. See classes/testimage(-auto).bbclass for
|
||||
# further details.
|
||||
#TEST_IMAGE = "1"
|
||||
#
|
||||
# Interactive shell configuration
|
||||
#
|
||||
# Under certain circumstances the system may need input from you and to do this it
|
||||
# can launch an interactive shell. It needs to do this since the build is
|
||||
# multithreaded and needs to be able to handle the case where more than one parallel
|
||||
# process may require the user's attention. The default is iterate over the available
|
||||
# terminal types to find one that works.
|
||||
#
|
||||
# Examples of the occasions this may happen are when resolving patches which cannot
|
||||
# be applied, to use the devshell or the kernel menuconfig
|
||||
#
|
||||
# Supported values are auto, gnome, xfce, rxvt, screen, konsole (KDE 3.x only), none
|
||||
# Note: currently, Konsole support only works for KDE 3.x due to the way
|
||||
# newer Konsole versions behave
|
||||
#OE_TERMINAL = "auto"
|
||||
# By default disable interactive patch resolution (tasks will just fail instead):
|
||||
PATCHRESOLVE = "noop"
|
||||
|
||||
#
|
||||
# Disk Space Monitoring during the build
|
||||
#
|
||||
# Monitor the disk space during the build. If there is less that 1GB of space or less
|
||||
# than 100K inodes in any key build location (TMPDIR, DL_DIR, SSTATE_DIR), gracefully
|
||||
# shutdown the build. If there is less that 100MB or 1K inodes, perform a hard abort
|
||||
# of the build. The reason for this is that running completely out of space can corrupt
|
||||
# files and damages the build in ways which may not be easily recoverable.
|
||||
# It's necesary to monitor /tmp, if there is no space left the build will fail
|
||||
# with very exotic errors.
|
||||
BB_DISKMON_DIRS = "\
|
||||
STOPTASKS,${TMPDIR},1G,100K \
|
||||
STOPTASKS,${DL_DIR},1G,100K \
|
||||
STOPTASKS,${SSTATE_DIR},1G,100K \
|
||||
STOPTASKS,/tmp,100M,100K \
|
||||
ABORT,${TMPDIR},100M,1K \
|
||||
ABORT,${DL_DIR},100M,1K \
|
||||
ABORT,${SSTATE_DIR},100M,1K \
|
||||
ABORT,/tmp,10M,1K"
|
||||
|
||||
#
|
||||
# Shared-state files from other locations
|
||||
#
|
||||
# As mentioned above, shared state files are prebuilt cache data objects which can
|
||||
# used to accelerate build time. This variable can be used to configure the system
|
||||
# to search other mirror locations for these objects before it builds the data itself.
|
||||
#
|
||||
# This can be a filesystem directory, or a remote url such as http or ftp. These
|
||||
# would contain the sstate-cache results from previous builds (possibly from other
|
||||
# machines). This variable works like fetcher MIRRORS/PREMIRRORS and points to the
|
||||
# cache locations to check for the shared objects.
|
||||
# NOTE: if the mirror uses the same structure as SSTATE_DIR, you need to add PATH
|
||||
# at the end as shown in the examples below. This will be substituted with the
|
||||
# correct path within the directory structure.
|
||||
#SSTATE_MIRRORS ?= "\
|
||||
#file://.* http://someserver.tld/share/sstate/PATH;downloadfilename=PATH \n \
|
||||
#file://.* file:///some/local/dir/sstate/PATH"
|
||||
|
||||
SSTATE_MIRRORS ?= "file://.* http://build-cache.asterius.io/master/sstate-cache/PATH;downloadfilename=PATH \n"
|
||||
|
||||
SOURCE_MIRROR_URL ?= "http://build-cache.asterius.io/downloads/"
|
||||
INHERIT += "own-mirrors rm_work"
|
||||
|
||||
#
|
||||
# Qemu configuration
|
||||
#
|
||||
# By default qemu will build with a builtin VNC server where graphical output can be
|
||||
# seen. The two lines below enable the SDL backend too. By default libsdl-native will
|
||||
# be built, if you want to use your host's libSDL instead of the minimal libsdl built
|
||||
# by libsdl-native then uncomment the ASSUME_PROVIDED line below.
|
||||
PACKAGECONFIG:append:pn-qemu-native = " sdl"
|
||||
PACKAGECONFIG:append:pn-nativesdk-qemu = " sdl"
|
||||
#ASSUME_PROVIDED += "libsdl-native"
|
||||
|
||||
# CONF_VERSION is increased each time build/conf/ changes incompatibly and is used to
|
||||
# track the version of this file when it was generated. This can safely be ignored if
|
||||
# this doesn't mean anything to you.
|
||||
CONF_VERSION = "1"
|
||||
149
lib/crate.py
149
lib/crate.py
@@ -1,149 +0,0 @@
|
||||
# ex:ts=4:sw=4:sts=4:et
|
||||
# -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*-
|
||||
"""
|
||||
BitBake 'Fetch' implementation for crates.io
|
||||
"""
|
||||
|
||||
# Copyright (C) 2016 Doug Goldstein
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License version 2 as
|
||||
# published by the Free Software Foundation.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License along
|
||||
# with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
#
|
||||
# Based on functions from the base bb module, Copyright 2003 Holger Schurig
|
||||
|
||||
import hashlib
|
||||
import json
|
||||
import os
|
||||
import shutil
|
||||
import subprocess
|
||||
import bb
|
||||
from bb.fetch2 import logger, subprocess_setup, UnpackError
|
||||
from bb.fetch2.wget import Wget
|
||||
|
||||
|
||||
class Crate(Wget):
|
||||
|
||||
"""Class to fetch crates via wget"""
|
||||
|
||||
def _cargo_bitbake_path(self, rootdir):
|
||||
return os.path.join(rootdir, "cargo_home", "bitbake")
|
||||
|
||||
def supports(self, ud, d):
|
||||
"""
|
||||
Check to see if a given url is for this fetcher
|
||||
"""
|
||||
return ud.type in ['crate']
|
||||
|
||||
def recommends_checksum(self, urldata):
|
||||
return False
|
||||
|
||||
def urldata_init(self, ud, d):
|
||||
"""
|
||||
Sets up to download the respective crate from crates.io
|
||||
"""
|
||||
|
||||
if ud.type == 'crate':
|
||||
self._crate_urldata_init(ud, d)
|
||||
|
||||
super(Crate, self).urldata_init(ud, d)
|
||||
|
||||
def _crate_urldata_init(self, ud, d):
|
||||
"""
|
||||
Sets up the download for a crate
|
||||
"""
|
||||
|
||||
# URL syntax is: crate://NAME/VERSION
|
||||
# break the URL apart by /
|
||||
parts = ud.url.split('/')
|
||||
if len(parts) < 5:
|
||||
raise bb.fetch2.ParameterError("Invalid URL: Must be crate://HOST/NAME/VERSION", ud.url)
|
||||
|
||||
# last field is version
|
||||
version = parts[len(parts) - 1]
|
||||
# second to last field is name
|
||||
name = parts[len(parts) - 2]
|
||||
# host (this is to allow custom crate registries to be specified
|
||||
host = '/'.join(parts[2:len(parts) - 2])
|
||||
|
||||
# if using upstream just fix it up nicely
|
||||
if host == 'crates.io':
|
||||
host = 'crates.io/api/v1/crates'
|
||||
|
||||
ud.url = "https://%s/%s/%s/download" % (host, name, version)
|
||||
ud.parm['downloadfilename'] = "%s-%s.crate" % (name, version)
|
||||
ud.parm['name'] = name
|
||||
|
||||
logger.debug(2, "Fetching %s to %s" % (ud.url, ud.parm['downloadfilename']))
|
||||
|
||||
def unpack(self, ud, rootdir, d):
|
||||
"""
|
||||
Uses the crate to build the necessary paths for cargo to utilize it
|
||||
"""
|
||||
if ud.type == 'crate':
|
||||
return self._crate_unpack(ud, rootdir, d)
|
||||
else:
|
||||
super(Crate, self).unpack(ud, rootdir, d)
|
||||
|
||||
def _crate_unpack(self, ud, rootdir, d):
|
||||
"""
|
||||
Unpacks a crate
|
||||
"""
|
||||
thefile = ud.localpath
|
||||
|
||||
# possible metadata we need to write out
|
||||
metadata = {}
|
||||
|
||||
# change to the rootdir to unpack but save the old working dir
|
||||
save_cwd = os.getcwd()
|
||||
os.chdir(rootdir)
|
||||
|
||||
pn = d.getVar('BPN')
|
||||
if pn == ud.parm.get('name'):
|
||||
cmd = "tar -xz --no-same-owner -f %s" % thefile
|
||||
else:
|
||||
cargo_bitbake = self._cargo_bitbake_path(rootdir)
|
||||
|
||||
cmd = "tar -xz --no-same-owner -f %s -C %s" % (thefile, cargo_bitbake)
|
||||
|
||||
# ensure we've got these paths made
|
||||
bb.utils.mkdirhier(cargo_bitbake)
|
||||
|
||||
# generate metadata necessary
|
||||
with open(thefile, 'rb') as f:
|
||||
# get the SHA256 of the original tarball
|
||||
tarhash = hashlib.sha256(f.read()).hexdigest()
|
||||
|
||||
metadata['files'] = {}
|
||||
metadata['package'] = tarhash
|
||||
|
||||
# path it
|
||||
path = d.getVar('PATH')
|
||||
if path:
|
||||
cmd = "PATH=\"%s\" %s" % (path, cmd)
|
||||
bb.note("Unpacking %s to %s/" % (thefile, os.getcwd()))
|
||||
|
||||
ret = subprocess.call(cmd, preexec_fn=subprocess_setup, shell=True)
|
||||
|
||||
os.chdir(save_cwd)
|
||||
|
||||
if ret != 0:
|
||||
raise UnpackError("Unpack command %s failed with return value %s" % (cmd, ret), ud.url)
|
||||
|
||||
# if we have metadata to write out..
|
||||
if len(metadata) > 0:
|
||||
cratepath = os.path.splitext(os.path.basename(thefile))[0]
|
||||
bbpath = self._cargo_bitbake_path(rootdir)
|
||||
mdfile = '.cargo-checksum.json'
|
||||
mdpath = os.path.join(bbpath, cratepath, mdfile)
|
||||
with open(mdpath, "w") as f:
|
||||
json.dump(metadata, f)
|
||||
11
licenses/GPL-2.0-with-linking-exception
Normal file
11
licenses/GPL-2.0-with-linking-exception
Normal file
@@ -0,0 +1,11 @@
|
||||
LINKING EXCEPTION
|
||||
|
||||
In addition to the permissions in the GNU General Public License, the authors
|
||||
give you unlimited permission to link the compiled version of this library into
|
||||
combinations with other programs, and to distribute those combinations without
|
||||
any restriction coming from the use of this file. (The General Public License
|
||||
restrictions do apply in other respects; for example, they cover modification
|
||||
of the file, and distribution when not linked into a combined executable.)
|
||||
|
||||
|
||||
insert GPL v2 text here
|
||||
20
recipes-core/aho-corasick/aho-corasick-rs_0.2.1.bb
Normal file
20
recipes-core/aho-corasick/aho-corasick-rs_0.2.1.bb
Normal file
@@ -0,0 +1,20 @@
|
||||
DESCRIPTION = "Fast multiple substring searching with finite state machines."
|
||||
HOMEPAGE = "https://github.com/BurntSushi/aho-corasick"
|
||||
LICENSE = "MIT"
|
||||
LIC_FILES_CHKSUM = "file://LICENSE-MIT;md5=8d0d0aa488af0ab9aafa3b85a7fc8e12"
|
||||
DEPENDS = "memchr-rs"
|
||||
|
||||
inherit rust-bin
|
||||
|
||||
SRC_URI = "git://github.com/BurntSushi/aho-corasick.git;protocol=https"
|
||||
SRCREV = "e1bca33dcc060d587e802320a79cbb035f37f8fa"
|
||||
|
||||
S = "${WORKDIR}/git"
|
||||
|
||||
do_compile () {
|
||||
oe_compile_rust_lib
|
||||
}
|
||||
|
||||
do_install () {
|
||||
oe_install_rust_lib
|
||||
}
|
||||
20
recipes-core/dbus/dbus-rs_0.1.0.bb
Normal file
20
recipes-core/dbus/dbus-rs_0.1.0.bb
Normal file
@@ -0,0 +1,20 @@
|
||||
DESCRIPTION = "DBus binding for rust"
|
||||
HOMEPAGE = "https://github.com/diwic/dbus-rs"
|
||||
LICENSE = "Apache-2.0"
|
||||
LIC_FILES_CHKSUM = "file://LICENSE;md5=d2794c0df5b907fdace235a619d80314"
|
||||
DEPENDS = "libc-rs dbus"
|
||||
|
||||
inherit rust-bin
|
||||
|
||||
SRC_URI = "git://github.com/diwic/dbus-rs.git;protocol=https"
|
||||
SRCREV = "d23c8b7fecd5a8e82131893250a5ac376799faff"
|
||||
|
||||
S = "${WORKDIR}/git"
|
||||
|
||||
do_compile () {
|
||||
oe_compile_rust_lib
|
||||
}
|
||||
|
||||
do_install () {
|
||||
oe_install_rust_lib
|
||||
}
|
||||
23
recipes-core/getopts/getopts-rs_0.2.11.bb
Normal file
23
recipes-core/getopts/getopts-rs_0.2.11.bb
Normal file
@@ -0,0 +1,23 @@
|
||||
DESCRIPTION = "getopts-like option parsing"
|
||||
HOMEPAGE = "https://github.com/rust-lang/getopts"
|
||||
LICENSE = "MIT | Apache-2.0"
|
||||
LIC_FILES_CHKSUM = "\
|
||||
file://LICENSE-MIT;md5=362255802eb5aa87810d12ddf3cfedb4 \
|
||||
file://LICENSE-APACHE;md5=1836efb2eb779966696f473ee8540542 \
|
||||
"
|
||||
DEPENDS = "log-rs"
|
||||
|
||||
inherit rust-bin
|
||||
|
||||
SRC_URI = "git://github.com/rust-lang/getopts.git;protocol=https"
|
||||
SRCREV = "a13c62b7d860b6d370129ebb972bf5e0373c5be7"
|
||||
|
||||
S = "${WORKDIR}/git"
|
||||
|
||||
do_compile () {
|
||||
oe_compile_rust_lib
|
||||
}
|
||||
|
||||
do_install () {
|
||||
oe_install_rust_lib
|
||||
}
|
||||
24
recipes-core/libc/libc-rs_0.1.8.bb
Normal file
24
recipes-core/libc/libc-rs_0.1.8.bb
Normal file
@@ -0,0 +1,24 @@
|
||||
DESCRIPTION = "A Rust library with native bindings to the types and functions commonly found on various systems, including libc."
|
||||
HOMEPAGE = "https://github.com/rust-lang/libc"
|
||||
LICENSE = "MIT | Apache-2.0"
|
||||
LIC_FILES_CHKSUM = "\
|
||||
file://LICENSE-MIT;md5=615cc94ba6f721c4ed3d6988605e85ca \
|
||||
file://LICENSE-APACHE;md5=1836efb2eb779966696f473ee8540542 \
|
||||
"
|
||||
|
||||
inherit rust-bin
|
||||
|
||||
# SRC_URI = "git://git@github.com:rust-lang/libc.git;protocol=https"
|
||||
# libc lives in rust-lang/rust which is a submodule of rust-lang/libc
|
||||
SRC_URI = "gitsm://github.com/rust-lang/rust.git;protocol=https"
|
||||
SRCREV = "8b7c17db2235a2a3f2c71242b11fc429a8d05a90"
|
||||
|
||||
S = "${WORKDIR}/git"
|
||||
|
||||
do_compile () {
|
||||
oe_runrustc ${S}/src/liblibc/lib.rs --cfg feature='"cargo-build"'
|
||||
}
|
||||
|
||||
do_install () {
|
||||
install -D -m 644 liblibc.rlib ${D}/${rustlibdir}/liblibc.rlib
|
||||
}
|
||||
6
recipes-core/log/env-logger-rs_0.3.1.bb
Normal file
6
recipes-core/log/env-logger-rs_0.3.1.bb
Normal file
@@ -0,0 +1,6 @@
|
||||
DESCRIPTION = "An logging implementation for `log` which is configured via an environment variable"
|
||||
DEPENDS = "regex-rs log-rs"
|
||||
|
||||
require log.inc
|
||||
|
||||
LIB_SRC = "${S}/env/src/lib.rs"
|
||||
4
recipes-core/log/log-rs.bb
Normal file
4
recipes-core/log/log-rs.bb
Normal file
@@ -0,0 +1,4 @@
|
||||
DESCRIPTION = "A Rust library providing a lightweight logging facade"
|
||||
DEPENDS = "libc-rs"
|
||||
|
||||
require log.inc
|
||||
22
recipes-core/log/log.inc
Normal file
22
recipes-core/log/log.inc
Normal file
@@ -0,0 +1,22 @@
|
||||
HOMEPAGE = "https://github.com/rust-lang/log"
|
||||
LICENSE = "MIT | Apache-2.0"
|
||||
LIC_FILES_CHKSUM = "\
|
||||
file://LICENSE-MIT;md5=362255802eb5aa87810d12ddf3cfedb4 \
|
||||
file://LICENSE-APACHE;md5=1836efb2eb779966696f473ee8540542 \
|
||||
"
|
||||
|
||||
inherit rust-bin
|
||||
|
||||
SRC_URI = "git://github.com/rust-lang/log.git;protocol=https"
|
||||
SRCREV = "5453e16166ec451afc9738978ca01f162127ebbe"
|
||||
PV = "0.3.1"
|
||||
|
||||
S = "${WORKDIR}/git"
|
||||
|
||||
do_compile () {
|
||||
oe_compile_rust_lib
|
||||
}
|
||||
|
||||
do_install () {
|
||||
oe_install_rust_lib
|
||||
}
|
||||
23
recipes-core/memchr/memchr-rs_0.1.3.bb
Normal file
23
recipes-core/memchr/memchr-rs_0.1.3.bb
Normal file
@@ -0,0 +1,23 @@
|
||||
DESCRIPTION = "Safe interface to memchr"
|
||||
HOMEPAGE = "https://github.com/BurntSushi/rust-memchr"
|
||||
LICENSE = "MIT"
|
||||
LIC_FILES_CHKSUM = "file://LICENSE-MIT;md5=8d0d0aa488af0ab9aafa3b85a7fc8e12"
|
||||
DEPENDS = "libc-rs"
|
||||
|
||||
inherit rust-bin
|
||||
|
||||
SRC_URI = "git://github.com/BurntSushi/rust-memchr.git;protocol=https"
|
||||
SRCREV = "a91e63378bf6f4bba5c7d88f4fe98efdcb432c99"
|
||||
|
||||
S = "${WORKDIR}/git"
|
||||
|
||||
# This module is tiny. One wrapper function only.
|
||||
CRATE_TYPE = "rlib"
|
||||
|
||||
do_compile () {
|
||||
oe_compile_rust_lib
|
||||
}
|
||||
|
||||
do_install () {
|
||||
oe_install_rust_lib
|
||||
}
|
||||
@@ -1,18 +0,0 @@
|
||||
SUMMARY = "Host SDK package for Rust cross canadian toolchain"
|
||||
PN = "packagegroup-rust-cross-canadian-${MACHINE}"
|
||||
|
||||
inherit cross-canadian packagegroup
|
||||
|
||||
PACKAGEGROUP_DISABLE_COMPLEMENTARY = "1"
|
||||
|
||||
RUST="rust-cross-canadian-${TRANSLATED_TARGET_ARCH}"
|
||||
CARGO="cargo-cross-canadian-${TRANSLATED_TARGET_ARCH}"
|
||||
RUST_TOOLS="rust-tools-cross-canadian-${TRANSLATED_TARGET_ARCH}"
|
||||
|
||||
RDEPENDS:${PN} = " \
|
||||
${@all_multilib_tune_values(d, 'RUST')} \
|
||||
${@all_multilib_tune_values(d, 'CARGO')} \
|
||||
rust-cross-canadian-src \
|
||||
${@all_multilib_tune_values(d, 'RUST_TOOLS')} \
|
||||
"
|
||||
|
||||
10
recipes-core/regex/regex-rs.bb
Normal file
10
recipes-core/regex/regex-rs.bb
Normal file
@@ -0,0 +1,10 @@
|
||||
DESCRIPTION = "An implementation of regular expressions for Rust"
|
||||
DEPENDS = "\
|
||||
aho-corasick-rs \
|
||||
memchr-rs \
|
||||
regex-syntax-rs \
|
||||
"
|
||||
|
||||
require regex.inc
|
||||
|
||||
S = "${WORKDIR}/git"
|
||||
7
recipes-core/regex/regex-syntax-rs.bb
Normal file
7
recipes-core/regex/regex-syntax-rs.bb
Normal file
@@ -0,0 +1,7 @@
|
||||
DESCRIPTION = "A regular expression parser"
|
||||
|
||||
require regex.inc
|
||||
|
||||
# Should only be used directly by regex
|
||||
CRATE_TYPE = "rlib"
|
||||
LIB_SRC = "${S}/regex-syntax/src/lib.rs"
|
||||
22
recipes-core/regex/regex.inc
Normal file
22
recipes-core/regex/regex.inc
Normal file
@@ -0,0 +1,22 @@
|
||||
HOMEPAGE = "https://github.com/rust-lang/regex"
|
||||
LICENSE = "MIT | Apache-2.0"
|
||||
LIC_FILES_CHKSUM = "\
|
||||
file://LICENSE-MIT;md5=362255802eb5aa87810d12ddf3cfedb4 \
|
||||
file://LICENSE-APACHE;md5=1836efb2eb779966696f473ee8540542 \
|
||||
"
|
||||
|
||||
SRC_URI = "git://github.com/rust-lang/regex.git;protocol=https"
|
||||
SRCREV = "c9e6781a6845478aa2d8ebc86972755f854fdbe0"
|
||||
PV = "0.1.38"
|
||||
|
||||
inherit rust-bin
|
||||
|
||||
S = "${WORKDIR}/git"
|
||||
|
||||
do_compile () {
|
||||
oe_compile_rust_lib
|
||||
}
|
||||
|
||||
do_install () {
|
||||
oe_install_rust_lib
|
||||
}
|
||||
23
recipes-core/time/time-rs_0.1.26.bb
Normal file
23
recipes-core/time/time-rs_0.1.26.bb
Normal file
@@ -0,0 +1,23 @@
|
||||
DESCRIPTION = "Utilities for working with time-related functions in Rust"
|
||||
HOMEPAGE = "https://github.com/rust-lang/time"
|
||||
LICENSE = "MIT | Apache-2.0"
|
||||
LIC_FILES_CHKSUM = "\
|
||||
file://LICENSE-MIT;md5=362255802eb5aa87810d12ddf3cfedb4 \
|
||||
file://LICENSE-APACHE;md5=1836efb2eb779966696f473ee8540542 \
|
||||
"
|
||||
DEPENDS = "libc-rs"
|
||||
|
||||
inherit rust-bin
|
||||
|
||||
SRC_URI = "git://github.com/rust-lang/time.git;protocol=https"
|
||||
SRCREV = "32b212b877b836dbfdc97af5674d91672e70ecbd"
|
||||
|
||||
S = "${WORKDIR}/git"
|
||||
|
||||
do_compile () {
|
||||
oe_compile_rust_lib
|
||||
}
|
||||
|
||||
do_install () {
|
||||
oe_install_rust_lib
|
||||
}
|
||||
20
recipes-core/udev/libudev-rs_0.1.0.bb
Normal file
20
recipes-core/udev/libudev-rs_0.1.0.bb
Normal file
@@ -0,0 +1,20 @@
|
||||
DESCRIPTION = "FFI bindings to libudev"
|
||||
HOMEPAGE = "https://github.com/dcuddeback/libudev-sys"
|
||||
LICENSE = "MIT"
|
||||
LIC_FILES_CHKSUM = "file://LICENSE;md5=bbd2acd29c4ba5d4591b03e2757c04a3"
|
||||
DEPENDS = "libudev-sys-rs"
|
||||
|
||||
inherit rust-bin
|
||||
|
||||
SRC_URI = "git://github.com/dcuddeback/libudev-rs.git;protocol=https"
|
||||
SRCREV = "d55763c626790e2e8724947503238731843a969a"
|
||||
|
||||
S = "${WORKDIR}/git"
|
||||
|
||||
do_compile () {
|
||||
oe_compile_rust_lib
|
||||
}
|
||||
|
||||
do_install () {
|
||||
oe_install_rust_lib
|
||||
}
|
||||
23
recipes-core/udev/libudev-sys-rs_0.1.1.bb
Normal file
23
recipes-core/udev/libudev-sys-rs_0.1.1.bb
Normal file
@@ -0,0 +1,23 @@
|
||||
DESCRIPTION = "FFI bindings to libudev"
|
||||
HOMEPAGE = "https://github.com/dcuddeback/libudev-sys"
|
||||
LICENSE = "MIT"
|
||||
LIC_FILES_CHKSUM = "file://LICENSE;md5=bbd2acd29c4ba5d4591b03e2757c04a3"
|
||||
DEPENDS = "libc-rs udev"
|
||||
|
||||
inherit rust-bin
|
||||
|
||||
SRC_URI = "git://github.com/dcuddeback/libudev-sys.git;protocol=https"
|
||||
SRCREV = "14c24afc61e3315dffddab2c7f36999a16a002d8"
|
||||
|
||||
S = "${WORKDIR}/git"
|
||||
|
||||
RUSTC_FLAGS += "-ludev"
|
||||
CRATE_TYPE = "rlib"
|
||||
|
||||
do_compile () {
|
||||
oe_compile_rust_lib
|
||||
}
|
||||
|
||||
do_install () {
|
||||
oe_install_rust_lib
|
||||
}
|
||||
27
recipes-deps/curl/curl_%.bbappend
Normal file
27
recipes-deps/curl/curl_%.bbappend
Normal file
@@ -0,0 +1,27 @@
|
||||
|
||||
## An excerpt from curl-sys's build script:
|
||||
#export CFLAGS := $(CFLAGS) -fPIC -ffunction-sections -fdata-sections
|
||||
#OPTS := $(OPTS) \
|
||||
# --enable-static=yes \
|
||||
# --enable-shared=no \
|
||||
# --disable-ldap --disable-ldaps --disable-ftp --disable-rtsp \
|
||||
# --disable-dict --disable-telnet --disable-tftp --disable-pop3 \
|
||||
# --disable-imap --disable-smtp --disable-gopher --disable-manual \
|
||||
# --enable-optimize --without-librtmp --without-libidn \
|
||||
# --prefix="$(OUT_DIR)"
|
||||
## Due to how rust links, we need -fPIC. Without it,
|
||||
|
||||
#EXTRA_OECONF_append = " \
|
||||
# --with-zlib \
|
||||
# --enable-static \
|
||||
# --enable-hidden-symbols \
|
||||
#"
|
||||
|
||||
#BUILD_CFLAGS += "-fPIC"
|
||||
#TARGET_CFLAGS += "-fPIC"
|
||||
|
||||
#| note: /usr/bin/ld: .../tmp/work/x86_64-linux/cargo-native/2014-11-07-r0/git/target/x86_64-unknown-linux-gnu/deps/libcurl-f3f9ef32955b72e6.rlib(r-curl-libcurl_la-openssl.o): undefined reference to symbol 'SSL_CTX_set_cipher_list'
|
||||
#| /usr/lib/libssl.so.1.0.0: error adding symbols: DSO missing from command line
|
||||
#DEPENDS_append = "openssl"
|
||||
PACKAGECONFIG = "ipv6"
|
||||
CFLAGS_append = " -fPIC"
|
||||
3
recipes-deps/libgit2/libgit2-git.inc
Normal file
3
recipes-deps/libgit2/libgit2-git.inc
Normal file
@@ -0,0 +1,3 @@
|
||||
require libgit2.inc
|
||||
S = "${WORKDIR}/git"
|
||||
SRC_URI = "git://github.com/libgit2/libgit2.git;protocol=https"
|
||||
3
recipes-deps/libgit2/libgit2-release.inc
Normal file
3
recipes-deps/libgit2/libgit2-release.inc
Normal file
@@ -0,0 +1,3 @@
|
||||
require libgit2.inc
|
||||
SRC_URI = "https://github.com/libgit2/libgit2/archive/v${PV}.tar.gz"
|
||||
|
||||
32
recipes-deps/libgit2/libgit2.inc
Normal file
32
recipes-deps/libgit2/libgit2.inc
Normal file
@@ -0,0 +1,32 @@
|
||||
SUMMARY = "the Git linkable library"
|
||||
HOMEPAGE = "http://libgit2.github.com/"
|
||||
LICENSE = "GPL-2.0-with-linking-exception"
|
||||
|
||||
DEPENDS = "zlib"
|
||||
|
||||
inherit cmake
|
||||
|
||||
# CLAR = tests, needs python-native
|
||||
EXTRA_OECMAKE = "\
|
||||
-DTHREADSAFE=ON \
|
||||
-DBUILD_CLAR=OFF \
|
||||
-DSHA1_TYPE="builtin" \
|
||||
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
|
||||
-DBUILD_SHARED_LIBS=OFF \
|
||||
-DBUILD_EXAMPLES=OFF \
|
||||
"
|
||||
|
||||
CFLAGS_append .= " -fPIC"
|
||||
|
||||
# Prior to poky commit 60d504b431fa7cdc6ded141def7ae18edb1834e5,
|
||||
# the cmake class did not define CMAKE_AR in the generated toolchain
|
||||
# file. This is needed to support building a static library.
|
||||
# See https://github.com/jmesmon/meta-rust/issues/1
|
||||
OECMAKE_AR ?= "${AR}"
|
||||
cmake_do_generate_toolchain_file_append() {
|
||||
cat >> ${WORKDIR}/toolchain.cmake <<EOF
|
||||
set( CMAKE_AR ${OECMAKE_AR} CACHE FILEPATH "Archiver" )
|
||||
EOF
|
||||
}
|
||||
|
||||
BBCLASSEXTEND = "native"
|
||||
6
recipes-deps/libgit2/libgit2_0.22.1.bb
Normal file
6
recipes-deps/libgit2/libgit2_0.22.1.bb
Normal file
@@ -0,0 +1,6 @@
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=29c24df0df4c2bab5efb8d5a33a73202"
|
||||
|
||||
SRC_URI[md5sum] = "dbf516d18e176bbb131de3efccfee533"
|
||||
SRC_URI[sha256sum] = "c7f1bf99ed8aeba65a485489869e2a50f022f3cd847df85e192fc99fdd6c8b5e"
|
||||
|
||||
require libgit2-release.inc
|
||||
10
recipes-deps/libgit2/libgit2_0.23.2.bb
Normal file
10
recipes-deps/libgit2/libgit2_0.23.2.bb
Normal file
@@ -0,0 +1,10 @@
|
||||
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=34197a479f637beb9e09e56893f48bc2"
|
||||
|
||||
SRC_URI[md5sum] = "ade3b85d759866c03b6188e397b652fa"
|
||||
SRC_URI[sha256sum] = "20c0a6ee92c0e19207dac6ddc336b4ae4a1c4ddf91be0891e4b6e6ccba16df0b"
|
||||
|
||||
require libgit2-release.inc
|
||||
|
||||
# Broken due to too old cargo using too old git2-rs
|
||||
DEFAULT_PREFERENCE = "-1"
|
||||
3
recipes-deps/libgit2/libgit2_git.bb
Normal file
3
recipes-deps/libgit2/libgit2_git.bb
Normal file
@@ -0,0 +1,3 @@
|
||||
require libgit2-git.inc
|
||||
SRCREV ?= "47f37400253210f483d84fb9c2ecf44fb5986849"
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=5ddd5fb64b24982b32a490dccccdabc5"
|
||||
2
recipes-deps/libssh2/libssh2_%.bbappend
Normal file
2
recipes-deps/libssh2/libssh2_%.bbappend
Normal file
@@ -0,0 +1,2 @@
|
||||
# meta-oe/recipes-support/libssh2
|
||||
BBCLASSEXTEND = "native"
|
||||
3
recipes-deps/zlib/zlib_%.bbappend
Normal file
3
recipes-deps/zlib/zlib_%.bbappend
Normal file
@@ -0,0 +1,3 @@
|
||||
# cargo tries to build a shared object using several static objects, one of
|
||||
# which includes the contents of zlib (zutil.o as 'libcurl-f3f9ef32955b72e6.rlib(r-z-zutil.o)')
|
||||
CFLAGS_append = " -fPIC"
|
||||
@@ -1,74 +0,0 @@
|
||||
SUMMARY = "Cargo, a package manager for Rust cross canadian flavor."
|
||||
|
||||
RUST_ALTERNATE_EXE_PATH = "${STAGING_LIBDIR_NATIVE}/llvm-rust/bin/llvm-config"
|
||||
|
||||
HOST_SYS = "${HOST_ARCH}-unknown-linux-gnu"
|
||||
CARGO_RUST_TARGET_CCLD = "${RUST_BUILD_CCLD}"
|
||||
|
||||
require recipes-devtools/rust/rust-common.inc
|
||||
require cargo.inc
|
||||
|
||||
CARGO = "${WORKDIR}/${CARGO_SNAPSHOT}/bin/cargo"
|
||||
BASEDEPENDS:remove = "cargo-native"
|
||||
|
||||
export RUST_TARGET_PATH="${WORKDIR}/targets/"
|
||||
|
||||
RUSTLIB = " \
|
||||
-L ${STAGING_DIR_NATIVE}/${SDKPATHNATIVE}/usr/lib/${TARGET_SYS}/rustlib/${HOST_SYS}/lib \
|
||||
"
|
||||
|
||||
DEPENDS += "rust-native \
|
||||
rust-cross-canadian-${TRANSLATED_TARGET_ARCH} \
|
||||
virtual/nativesdk-${HOST_PREFIX}compilerlibs \
|
||||
nativesdk-openssl nativesdk-zlib \
|
||||
virtual/nativesdk-libc \
|
||||
"
|
||||
|
||||
inherit cross-canadian
|
||||
|
||||
PN = "cargo-cross-canadian-${TRANSLATED_TARGET_ARCH}"
|
||||
|
||||
LLVM_TARGET[x86_64] = "${RUST_HOST_SYS}"
|
||||
|
||||
python do_rust_gen_targets () {
|
||||
wd = d.getVar('WORKDIR') + '/targets/'
|
||||
|
||||
rust_gen_target(d, 'BUILD', wd, "", "generic", d.getVar('BUILD_ARCH'))
|
||||
rust_gen_target(d, 'HOST', wd, "", "generic", d.getVar('HOST_ARCH'))
|
||||
}
|
||||
|
||||
do_compile:prepend () {
|
||||
PKG_CONFIG_PATH="${RECIPE_SYSROOT_NATIVE}/usr/lib/pkgconfig:${PKG_CONFIG_PATH}"
|
||||
}
|
||||
|
||||
do_install () {
|
||||
SYS_BINDIR=$(dirname ${D}${bindir})
|
||||
install -d "${SYS_BINDIR}"
|
||||
install -m 755 "${B}/target/${CARGO_TARGET_SUBDIR}/cargo" "${SYS_BINDIR}"
|
||||
for i in ${SYS_BINDIR}/*; do
|
||||
chrpath -r "\$ORIGIN/../lib" ${i}
|
||||
done
|
||||
|
||||
ENV_SETUP_DIR=${D}${base_prefix}/environment-setup.d
|
||||
mkdir "${ENV_SETUP_DIR}"
|
||||
ENV_SETUP_SH="${ENV_SETUP_DIR}/cargo.sh"
|
||||
cat <<- EOF > "${ENV_SETUP_SH}"
|
||||
export CARGO_HOME="\$OECORE_TARGET_SYSROOT/home/cargo"
|
||||
mkdir -p "\$CARGO_HOME"
|
||||
# Init the default target once, it might be otherwise user modified.
|
||||
if [ ! -f "\$CARGO_HOME/config" ]; then
|
||||
touch "\$CARGO_HOME/config"
|
||||
echo "[build]" >> "\$CARGO_HOME/config"
|
||||
echo 'target = "'${TARGET_SYS}'"' >> "\$CARGO_HOME/config"
|
||||
fi
|
||||
|
||||
# Keep the below off as long as HTTP/2 is disabled.
|
||||
export CARGO_HTTP_MULTIPLEXING=false
|
||||
|
||||
export CARGO_HTTP_CAINFO="\$OECORE_NATIVE_SYSROOT/etc/ssl/certs/ca-certificates.crt"
|
||||
EOF
|
||||
}
|
||||
|
||||
PKG_SYS_BINDIR = "${SDKPATHNATIVE}/usr/bin"
|
||||
FILES:${PN} += "${base_prefix}/environment-setup.d ${PKG_SYS_BINDIR}"
|
||||
|
||||
@@ -1,6 +0,0 @@
|
||||
require recipes-devtools/rust/rust-source-${PV}.inc
|
||||
require recipes-devtools/rust/rust-snapshot-${PV}.inc
|
||||
|
||||
FILESEXTRAPATHS:prepend := "${THISDIR}/cargo-${PV}:"
|
||||
|
||||
require cargo-cross-canadian.inc
|
||||
@@ -1,6 +0,0 @@
|
||||
require recipes-devtools/rust/rust-source.inc
|
||||
require recipes-devtools/rust/rust-snapshot.inc
|
||||
|
||||
FILESEXTRAPATHS:prepend := "${THISDIR}/cargo-${PV}:"
|
||||
|
||||
require cargo-cross-canadian.inc
|
||||
36
recipes-devtools/cargo/cargo-native_git.bb
Normal file
36
recipes-devtools/cargo/cargo-native_git.bb
Normal file
@@ -0,0 +1,36 @@
|
||||
SUMMARY = "Cargo downloads your Rust project's dependencies and builds your project"
|
||||
HOMEPAGE = "http://crates.io"
|
||||
SECTION = "devel"
|
||||
LICENSE = "MIT | Apache-2.0"
|
||||
|
||||
PR = "r2"
|
||||
|
||||
DEPENDS += "rust-native"
|
||||
|
||||
LIC_FILES_CHKSUM ="\
|
||||
file://LICENSE-MIT;md5=362255802eb5aa87810d12ddf3cfedb4 \
|
||||
file://LICENSE-APACHE;md5=1836efb2eb779966696f473ee8540542 \
|
||||
file://LICENSE-THIRD-PARTY;md5=afbb7ae0aa70c8e437a007314eae5f3b \
|
||||
"
|
||||
|
||||
SRC_URI = " \
|
||||
https://static.rust-lang.org/cargo-dist/2015-04-02/cargo-nightly-x86_64-unknown-linux-gnu.tar.gz \
|
||||
"
|
||||
|
||||
SRC_URI[md5sum] = "3d62194d02a9088cd8aae379e9498134"
|
||||
SRC_URI[sha256sum] = "16b6338ba2942989693984ba4dbd057c2801e8805e6da8fa7b781b00e722d117"
|
||||
|
||||
S = "${WORKDIR}/cargo-nightly-x86_64-unknown-linux-gnu/"
|
||||
|
||||
inherit native
|
||||
|
||||
do_install() {
|
||||
install -d ${D}
|
||||
sh ${S}/install.sh --destdir=${D}${STAGING_DIR_NATIVE} --prefix=
|
||||
|
||||
# Remove files provided by rust
|
||||
rm -f ${D}${STAGING_DIR_NATIVE}/lib/rustlib/uninstall.sh
|
||||
rm -f ${D}${STAGING_DIR_NATIVE}/lib/rustlib/install.log
|
||||
rm -f ${D}${STAGING_DIR_NATIVE}/lib/rustlib/components
|
||||
rm -f ${D}${STAGING_DIR_NATIVE}/lib/rustlib/rust-installer-version
|
||||
}
|
||||
@@ -1,56 +1,72 @@
|
||||
SUMMARY ?= "Cargo, a package manager for Rust."
|
||||
HOMEPAGE = "https://crates.io"
|
||||
LICENSE = "MIT | Apache-2.0"
|
||||
INHIBIT_CARGO_DEP = "1"
|
||||
|
||||
inherit cargo
|
||||
inherit patch
|
||||
inherit rust-installer
|
||||
|
||||
SUMMARY = "Cargo downloads your Rust project's dependencies and builds your project"
|
||||
HOMEPAGE = "http://crates.io"
|
||||
SECTION = "devel"
|
||||
LICENSE = "MIT | Apache-2.0"
|
||||
|
||||
DEPENDS = "openssl zlib curl ca-certificates libssh2"
|
||||
DEPENDS = "openssl zlib libgit2 curl ca-certificates libssh2"
|
||||
|
||||
LIC_FILES_CHKSUM = " \
|
||||
file://LICENSE-MIT;md5=b377b220f43d747efdec40d69fcaa69d \
|
||||
file://LICENSE-APACHE;md5=71b224ca933f0676e26d5c2e2271331c \
|
||||
file://LICENSE-THIRD-PARTY;md5=f257ad009884cb88a3a87d6920e7180a \
|
||||
SRC_URI = "\
|
||||
git://github.com/rust-lang/cargo.git;protocol=https;name=cargo \
|
||||
git://github.com/rust-lang/rust-installer.git;protocol=https;name=rust-installer;destsuffix=git/src/rust-installer \
|
||||
http://static-rust-lang-org.s3.amazonaws.com/cargo-dist/${CARGO_SNAPSHOT} \
|
||||
"
|
||||
|
||||
LIC_FILES_CHKSUM ="\
|
||||
file://LICENSE-MIT;md5=362255802eb5aa87810d12ddf3cfedb4 \
|
||||
file://LICENSE-APACHE;md5=1836efb2eb779966696f473ee8540542 \
|
||||
file://LICENSE-THIRD-PARTY;md5=afbb7ae0aa70c8e437a007314eae5f3b \
|
||||
"
|
||||
SRCREV_FORMAT = "cargo_rust-installer"
|
||||
PV .= "+git${SRCPV}"
|
||||
|
||||
S = "${RUSTSRC}/src/tools/cargo"
|
||||
CARGO_VENDORING_DIRECTORY = "${RUSTSRC}/vendor"
|
||||
EXCLUDE_FROM_WORLD = "1"
|
||||
S = "${WORKDIR}/git"
|
||||
B = "${S}"
|
||||
|
||||
inherit cargo pkgconfig
|
||||
PACKAGECONFIG ??= ""
|
||||
|
||||
do_cargo_setup_snapshot () {
|
||||
${WORKDIR}/rust-snapshot-components/${CARGO_SNAPSHOT}/install.sh --prefix="${WORKDIR}/${CARGO_SNAPSHOT}" --disable-ldconfig
|
||||
# Need to use uninative's loader if enabled/present since the library paths
|
||||
# are used internally by rust and result in symbol mismatches if we don't
|
||||
if [ ! -z "${UNINATIVE_LOADER}" -a -e "${UNINATIVE_LOADER}" ]; then
|
||||
patchelf-uninative ${WORKDIR}/${CARGO_SNAPSHOT}/bin/cargo --set-interpreter ${UNINATIVE_LOADER}
|
||||
fi
|
||||
# Note: this does not appear to work very well due to our use of bitbake triples
|
||||
# & rust's use of cooked triples
|
||||
PACKAGECONFIG[rust-snapshot] = "--local-rust-root=${B}/rustc"
|
||||
|
||||
do_configure () {
|
||||
${@bb.utils.contains('PACKAGECONFIG', 'rust-snapshot', '${S}/.travis.install.deps.sh', ':', d)}
|
||||
|
||||
"${S}/configure" \
|
||||
"--prefix=${prefix}" \
|
||||
"--build=${BUILD_SYS}" \
|
||||
"--host=${HOST_SYS}" \
|
||||
"--target=${TARGET_SYS}" \
|
||||
"--localstatedir=${localstatedir}" \
|
||||
"--sysconfdir=${sysconfdir}" \
|
||||
"--datadir=${datadir}" \
|
||||
"--infodir=${infodir}" \
|
||||
"--mandir=${mandir}" \
|
||||
"--libdir=${libdir}" \
|
||||
"--disable-verify-install" \
|
||||
${EXTRA_OECONF} \
|
||||
|| die "Could not configure cargo"
|
||||
|
||||
# cargo downloads a cargo snapshot to build itself using cargo, we need
|
||||
# to override it's arch info.
|
||||
cargo_do_configure
|
||||
}
|
||||
|
||||
addtask cargo_setup_snapshot after do_unpack before do_configure
|
||||
do_cargo_setup_snapshot[dirs] += "${WORKDIR}/${CARGO_SNAPSHOT}"
|
||||
do_cargo_setup_snapshot[vardepsexclude] += "UNINATIVE_LOADER"
|
||||
do_compile () {
|
||||
oe_cargo_fix_env
|
||||
|
||||
rm -rf target/snapshot
|
||||
mkdir -p target
|
||||
cp -R ${WORKDIR}/$(basename ${CARGO_SNAPSHOT} .tar.gz) target/snapshot
|
||||
|
||||
do_compile:prepend () {
|
||||
export RUSTC_BOOTSTRAP="1"
|
||||
oe_runmake ARGS="--verbose"
|
||||
}
|
||||
|
||||
do_install () {
|
||||
install -d "${D}${bindir}"
|
||||
install -m 755 "${B}/target/${CARGO_TARGET_SUBDIR}/cargo" "${D}${bindir}"
|
||||
oe_runmake DESTDIR="${D}" install
|
||||
}
|
||||
|
||||
# Disabled due to incompatibility with libgit2 0.28.x (https://github.com/rust-lang/git2-rs/issues/458, https://bugs.gentoo.org/707746#c1)
|
||||
# as shipped by Yocto Dunfell.
|
||||
# According to https://github.com/rust-lang/git2-rs/issues/458#issuecomment-522567539, there are no compatibility guarantees between
|
||||
# libgit2-sys and arbitrary system libgit2 versions, so better keep this turned off.
|
||||
#export LIBGIT2_SYS_USE_PKG_CONFIG = "1"
|
||||
|
||||
# Needed for pkg-config to be used
|
||||
export LIBSSH2_SYS_USE_PKG_CONFIG = "1"
|
||||
|
||||
# When building cargo-native we don't have cargo-native to use and depend on,
|
||||
# so we must use the locally set up snapshot to bootstrap the build.
|
||||
BASEDEPENDS:remove:class-native = "cargo-native"
|
||||
CARGO:class-native = "${WORKDIR}/${CARGO_SNAPSHOT}/bin/cargo"
|
||||
|
||||
@@ -1,4 +0,0 @@
|
||||
require recipes-devtools/rust/rust-source-${PV}.inc
|
||||
require recipes-devtools/rust/rust-snapshot-${PV}.inc
|
||||
require cargo.inc
|
||||
BBCLASSEXTEND = "native nativesdk"
|
||||
@@ -1,4 +0,0 @@
|
||||
require recipes-devtools/rust/rust-source.inc
|
||||
require recipes-devtools/rust/rust-snapshot.inc
|
||||
require cargo.inc
|
||||
BBCLASSEXTEND = "native nativesdk"
|
||||
51
recipes-devtools/cargo/cargo_git.bb
Normal file
51
recipes-devtools/cargo/cargo_git.bb
Normal file
@@ -0,0 +1,51 @@
|
||||
# 2015-06-29
|
||||
SRCREV_cargo = "339a103fa71701541229316a568fca12cf07fc8d"
|
||||
SRCREV_rust-installer = "8e4f8ea581502a2edc8177a040300e05ff7f91e3"
|
||||
|
||||
require cargo.inc
|
||||
|
||||
SRC_URI += " \
|
||||
git://github.com/carllerche/curl-rust.git;protocol=https;destsuffix=curl-rust;name=curl-rust \
|
||||
file://curl-rust/0001-curl-sys-avoid-explicitly-linking-in-openssl.-If-it-.patch;patchdir=../curl-rust \
|
||||
file://curl-rust/0002-remove-per-triple-deps-on-openssl-sys.patch;patchdir=../curl-rust \
|
||||
\
|
||||
git://github.com/alexcrichton/ssh2-rs.git;protocol=https;name=ssh2-rs;destsuffix=ssh2-rs \
|
||||
file://ssh2-rs/0001-Unconditionally-depend-on-openssl-sys.patch;patchdir=../ssh2-rs \
|
||||
\
|
||||
git://github.com/alexcrichton/git2-rs.git;protocol=https;name=git2-rs;destsuffix=git2-rs \
|
||||
file://git2-rs/0001-Add-generic-openssl-sys-dep.patch;patchdir=../git2-rs \
|
||||
"
|
||||
|
||||
# 0.2.10 / -sys 0.1.24
|
||||
SRCREV_curl-rust = "9fbf39fa8765e777d110ad18a2a2a3ea42dcb717"
|
||||
|
||||
# 0.2.8 / -sys 0.1.25
|
||||
SRCREV_ssh2-rs = "afc39c6e7236b87d7ebde21ee4d4743d9437b85f"
|
||||
|
||||
# 0.2.11 / -sys 0.2.14
|
||||
SRCREV_git2-rs = "3a7a990607a766fa65a40b920d70c8289691d2f8"
|
||||
|
||||
SRCREV_FORMAT .= "_curl-rust_curl_ssh2-rs_git2-rs"
|
||||
EXTRA_OECARGO_PATHS = "\
|
||||
${WORKDIR}/curl-rust \
|
||||
${WORKDIR}/ssh2-rs \
|
||||
${WORKDIR}/git2-rs \
|
||||
"
|
||||
|
||||
CARGO_SNAPSHOT = "2015-04-02/cargo-nightly-x86_64-unknown-linux-gnu.tar.gz"
|
||||
SRC_URI[md5sum] = "3d62194d02a9088cd8aae379e9498134"
|
||||
SRC_URI[sha256sum] = "16b6338ba2942989693984ba4dbd057c2801e8805e6da8fa7b781b00e722d117"
|
||||
|
||||
# Used in libgit2-sys's build.rs, needed for pkg-config to be used
|
||||
export LIBGIT2_SYS_USE_PKG_CONFIG = "1"
|
||||
|
||||
# FIXME: we don't actually use these, and shouldn't need to fetch it, but not having it results in:
|
||||
## target/snapshot/bin/cargo build --target x86_64-linux --verbose
|
||||
## Failed to resolve path '/home/cody/obj/y/tmp/work/x86_64-linux/cargo-native/git+gitAUTOINC+0b84923203_9181ea8f4e_8baa8ccb39-r0/curl-rust/curl-sys/curl/.git': No such file or directory
|
||||
|
||||
SRC_URI += "\
|
||||
git://github.com/alexcrichton/curl.git;protocol=https;destsuffix=curl-rust/curl-sys/curl;name=curl;branch=configure \
|
||||
git://github.com/libgit2/libgit2.git;protocol=https;destsuffix=git2-rs/libgit2-sys/libgit2;name=libgit2 \
|
||||
"
|
||||
SRCREV_curl = "9a300aa13e5035a795396e429aa861229424c9dc"
|
||||
SRCREV_libgit2 = "47f37400253210f483d84fb9c2ecf44fb5986849"
|
||||
906
recipes-devtools/cargo/files/0001-update-Rust.patch
Normal file
906
recipes-devtools/cargo/files/0001-update-Rust.patch
Normal file
@@ -0,0 +1,906 @@
|
||||
From d122d57536df9fbfcdfda08b2918dc6e0c6209c0 Mon Sep 17 00:00:00 2001
|
||||
From: Andrew Paseltiner <apaseltiner@gmail.com>
|
||||
Date: Thu, 12 Feb 2015 23:10:07 -0500
|
||||
Subject: [PATCH] update Rust
|
||||
|
||||
---
|
||||
Cargo.lock | 32 ++++++++++++------------
|
||||
src/bin/build.rs | 4 +--
|
||||
src/bin/cargo.rs | 2 +-
|
||||
src/bin/clean.rs | 4 +--
|
||||
src/bin/generate_lockfile.rs | 4 +--
|
||||
src/bin/new.rs | 4 +--
|
||||
src/bin/update.rs | 4 +--
|
||||
src/bin/verify_project.rs | 4 +--
|
||||
src/bin/version.rs | 4 +--
|
||||
src/cargo/lib.rs | 2 +-
|
||||
src/cargo/ops/cargo_new.rs | 4 +--
|
||||
src/cargo/ops/cargo_rustc/engine.rs | 2 +-
|
||||
src/cargo/ops/registry.rs | 4 +--
|
||||
src/cargo/sources/git/utils.rs | 3 ++-
|
||||
src/cargo/util/config.rs | 2 +-
|
||||
src/cargo/util/hex.rs | 5 ++--
|
||||
src/cargo/util/profile.rs | 2 +-
|
||||
src/rustversion.txt | 2 +-
|
||||
tests/support/mod.rs | 2 +-
|
||||
tests/test_cargo.rs | 2 +-
|
||||
tests/test_cargo_compile.rs | 10 ++++----
|
||||
tests/test_cargo_compile_custom_build.rs | 42 ++++++++++++++++----------------
|
||||
tests/test_cargo_compile_git_deps.rs | 24 +++++++++---------
|
||||
tests/test_cargo_compile_plugins.rs | 6 ++---
|
||||
tests/test_cargo_cross_compile.rs | 28 ++++++++++-----------
|
||||
tests/test_cargo_profiles.rs | 6 ++---
|
||||
26 files changed, 103 insertions(+), 105 deletions(-)
|
||||
|
||||
diff --git a/Cargo.lock b/Cargo.lock
|
||||
index 14dd876..629585c 100644
|
||||
--- a/Cargo.lock
|
||||
+++ b/Cargo.lock
|
||||
@@ -4,7 +4,7 @@ version = "0.1.0"
|
||||
dependencies = [
|
||||
"advapi32-sys 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"curl 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
- "docopt 0.6.36 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
+ "docopt 0.6.37 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"env_logger 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"flate2 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"git2 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
@@ -18,8 +18,8 @@ dependencies = [
|
||||
"semver 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"tar 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"term 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
- "time 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
- "toml 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
+ "time 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
+ "toml 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"url 0.2.20 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"winapi 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
]
|
||||
@@ -44,7 +44,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
dependencies = [
|
||||
"curl-sys 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"libc 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
- "openssl-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
+ "openssl-sys 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"url 0.2.20 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
]
|
||||
|
||||
@@ -55,13 +55,13 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
dependencies = [
|
||||
"libc 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"libz-sys 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
- "openssl-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
+ "openssl-sys 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"pkg-config 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "docopt"
|
||||
-version = "0.6.36"
|
||||
+version = "0.6.37"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
dependencies = [
|
||||
"regex 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
@@ -97,7 +97,7 @@ version = "0.1.17"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
dependencies = [
|
||||
"bitflags 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
- "libgit2-sys 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
+ "libgit2-sys 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"url 0.2.20 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
]
|
||||
|
||||
@@ -136,13 +136,13 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
|
||||
[[package]]
|
||||
name = "libgit2-sys"
|
||||
-version = "0.1.12"
|
||||
+version = "0.1.13"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
dependencies = [
|
||||
"libssh2-sys 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"libz-sys 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
- "openssl-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
- "pkg-config 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
+ "openssl-sys 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
+ "pkg-config 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
@@ -159,7 +159,7 @@ version = "0.1.5"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
dependencies = [
|
||||
"libz-sys 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
- "openssl-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
+ "openssl-sys 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"pkg-config 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
]
|
||||
|
||||
@@ -192,12 +192,12 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "openssl-sys"
|
||||
-version = "0.3.3"
|
||||
+version = "0.3.6"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
dependencies = [
|
||||
"gcc 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"libressl-pnacl-sys 2.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
- "pkg-config 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
+ "pkg-config 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
@@ -207,7 +207,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
|
||||
[[package]]
|
||||
name = "pkg-config"
|
||||
-version = "0.2.0"
|
||||
+version = "0.2.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
|
||||
[[package]]
|
||||
@@ -255,7 +255,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "time"
|
||||
-version = "0.1.16"
|
||||
+version = "0.1.17"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
dependencies = [
|
||||
"gcc 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
@@ -264,7 +264,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "toml"
|
||||
-version = "0.1.16"
|
||||
+version = "0.1.17"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
dependencies = [
|
||||
"rustc-serialize 0.2.12 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
diff --git a/src/bin/build.rs b/src/bin/build.rs
|
||||
index a617f64..0784c04 100644
|
||||
--- a/src/bin/build.rs
|
||||
+++ b/src/bin/build.rs
|
||||
@@ -1,4 +1,4 @@
|
||||
-use std::os;
|
||||
+use std::env;
|
||||
|
||||
use cargo::ops::CompileOptions;
|
||||
use cargo::ops;
|
||||
@@ -47,7 +47,7 @@ the --release flag will use the `release` profile instead.
|
||||
";
|
||||
|
||||
pub fn execute(options: Options, config: &Config) -> CliResult<Option<()>> {
|
||||
- debug!("executing; cmd=cargo-build; args={:?}", os::args());
|
||||
+ debug!("executing; cmd=cargo-build; args={:?}", env::args().collect::<Vec<_>>());
|
||||
config.shell().set_verbose(options.flag_verbose);
|
||||
|
||||
let root = try!(find_root_manifest_for_cwd(options.flag_manifest_path));
|
||||
diff --git a/src/bin/cargo.rs b/src/bin/cargo.rs
|
||||
index 7bf0a11..53c904d 100644
|
||||
--- a/src/bin/cargo.rs
|
||||
+++ b/src/bin/cargo.rs
|
||||
@@ -245,7 +245,7 @@ fn list_command_directory() -> Vec<Path> {
|
||||
dirs.push(path.join("../lib/cargo"));
|
||||
dirs.push(path);
|
||||
}
|
||||
- if let Some(val) = env::var("PATH") {
|
||||
+ if let Some(val) = env::var_os("PATH") {
|
||||
dirs.extend(env::split_paths(&val));
|
||||
}
|
||||
dirs
|
||||
diff --git a/src/bin/clean.rs b/src/bin/clean.rs
|
||||
index dcc013e..a530b9b 100644
|
||||
--- a/src/bin/clean.rs
|
||||
+++ b/src/bin/clean.rs
|
||||
@@ -1,4 +1,4 @@
|
||||
-use std::os;
|
||||
+use std::env;
|
||||
|
||||
use cargo::ops;
|
||||
use cargo::util::{CliResult, CliError, Config};
|
||||
@@ -33,7 +33,7 @@ and its format, see the `cargo help pkgid` command.
|
||||
|
||||
pub fn execute(options: Options, config: &Config) -> CliResult<Option<()>> {
|
||||
config.shell().set_verbose(options.flag_verbose);
|
||||
- debug!("executing; cmd=cargo-clean; args={:?}", os::args());
|
||||
+ debug!("executing; cmd=cargo-clean; args={:?}", env::args().collect::<Vec<_>>());
|
||||
|
||||
let root = try!(find_root_manifest_for_cwd(options.flag_manifest_path));
|
||||
let opts = ops::CleanOptions {
|
||||
diff --git a/src/bin/generate_lockfile.rs b/src/bin/generate_lockfile.rs
|
||||
index a350ab6..d9777ef 100644
|
||||
--- a/src/bin/generate_lockfile.rs
|
||||
+++ b/src/bin/generate_lockfile.rs
|
||||
@@ -1,4 +1,4 @@
|
||||
-use std::os;
|
||||
+use std::env;
|
||||
|
||||
use cargo::ops;
|
||||
use cargo::util::{CliResult, CliError, Config};
|
||||
@@ -23,7 +23,7 @@ Options:
|
||||
";
|
||||
|
||||
pub fn execute(options: Options, config: &Config) -> CliResult<Option<()>> {
|
||||
- debug!("executing; cmd=cargo-generate-lockfile; args={:?}", os::args());
|
||||
+ debug!("executing; cmd=cargo-generate-lockfile; args={:?}", env::args().collect::<Vec<_>>());
|
||||
config.shell().set_verbose(options.flag_verbose);
|
||||
let root = try!(find_root_manifest_for_cwd(options.flag_manifest_path));
|
||||
|
||||
diff --git a/src/bin/new.rs b/src/bin/new.rs
|
||||
index 4126e38..0abff6a 100644
|
||||
--- a/src/bin/new.rs
|
||||
+++ b/src/bin/new.rs
|
||||
@@ -1,4 +1,4 @@
|
||||
-use std::os;
|
||||
+use std::env;
|
||||
|
||||
use cargo::ops;
|
||||
use cargo::util::{CliResult, CliError, Config};
|
||||
@@ -28,7 +28,7 @@ Options:
|
||||
";
|
||||
|
||||
pub fn execute(options: Options, config: &Config) -> CliResult<Option<()>> {
|
||||
- debug!("executing; cmd=cargo-new; args={:?}", os::args());
|
||||
+ debug!("executing; cmd=cargo-new; args={:?}", env::args().collect::<Vec<_>>());
|
||||
config.shell().set_verbose(options.flag_verbose);
|
||||
|
||||
let Options { flag_bin, arg_path, flag_vcs, .. } = options;
|
||||
diff --git a/src/bin/update.rs b/src/bin/update.rs
|
||||
index fa75506..4fdeebf 100644
|
||||
--- a/src/bin/update.rs
|
||||
+++ b/src/bin/update.rs
|
||||
@@ -1,4 +1,4 @@
|
||||
-use std::os;
|
||||
+use std::env;
|
||||
|
||||
use cargo::ops;
|
||||
use cargo::util::{CliResult, CliError, Config};
|
||||
@@ -49,7 +49,7 @@ For more information about package id specifications, see `cargo help pkgid`.
|
||||
";
|
||||
|
||||
pub fn execute(options: Options, config: &Config) -> CliResult<Option<()>> {
|
||||
- debug!("executing; cmd=cargo-update; args={:?}", os::args());
|
||||
+ debug!("executing; cmd=cargo-update; args={:?}", env::args().collect::<Vec<_>>());
|
||||
config.shell().set_verbose(options.flag_verbose);
|
||||
let root = try!(find_root_manifest_for_cwd(options.flag_manifest_path));
|
||||
|
||||
diff --git a/src/bin/verify_project.rs b/src/bin/verify_project.rs
|
||||
index 54f8d6e..816c5e9 100644
|
||||
--- a/src/bin/verify_project.rs
|
||||
+++ b/src/bin/verify_project.rs
|
||||
@@ -1,8 +1,8 @@
|
||||
extern crate toml;
|
||||
|
||||
use std::collections::HashMap;
|
||||
+use std::env;
|
||||
use std::old_io::File;
|
||||
-use std::os;
|
||||
|
||||
use cargo::util::{CliResult, Config};
|
||||
|
||||
@@ -47,6 +47,6 @@ pub fn execute(args: Flags, config: &Config) -> CliResult<Option<Error>> {
|
||||
fn fail(reason: &str, value: &str) -> CliResult<Option<Error>>{
|
||||
let mut h = HashMap::new();
|
||||
h.insert(reason.to_string(), value.to_string());
|
||||
- os::set_exit_status(1);
|
||||
+ env::set_exit_status(1);
|
||||
Ok(Some(h))
|
||||
}
|
||||
diff --git a/src/bin/version.rs b/src/bin/version.rs
|
||||
index e1bc011..b5622f2 100644
|
||||
--- a/src/bin/version.rs
|
||||
+++ b/src/bin/version.rs
|
||||
@@ -1,4 +1,4 @@
|
||||
-use std::os;
|
||||
+use std::env;
|
||||
|
||||
use cargo;
|
||||
use cargo::util::{CliResult, Config};
|
||||
@@ -16,7 +16,7 @@ Options:
|
||||
";
|
||||
|
||||
pub fn execute(_: Options, _: &Config) -> CliResult<Option<()>> {
|
||||
- debug!("executing; cmd=cargo-version; args={:?}", os::args());
|
||||
+ debug!("executing; cmd=cargo-version; args={:?}", env::args().collect::<Vec<_>>());
|
||||
|
||||
println!("{}", cargo::version());
|
||||
|
||||
diff --git a/src/cargo/lib.rs b/src/cargo/lib.rs
|
||||
index 609e1bd..d5737ef 100644
|
||||
--- a/src/cargo/lib.rs
|
||||
+++ b/src/cargo/lib.rs
|
||||
@@ -95,7 +95,7 @@ fn process<V, F>(mut callback: F)
|
||||
let mut shell = shell(true);
|
||||
process_executed((|| {
|
||||
let config = try!(Config::new(&mut shell));
|
||||
- let args: Vec<_> = try!(env::args().map(|s| {
|
||||
+ let args: Vec<_> = try!(env::args_os().map(|s| {
|
||||
s.into_string().map_err(|s| {
|
||||
human(format!("invalid unicode in argument: {:?}", s))
|
||||
})
|
||||
diff --git a/src/cargo/ops/cargo_new.rs b/src/cargo/ops/cargo_new.rs
|
||||
index 09d8318..ae9d5e5 100644
|
||||
--- a/src/cargo/ops/cargo_new.rs
|
||||
+++ b/src/cargo/ops/cargo_new.rs
|
||||
@@ -134,8 +134,8 @@ fn discover_author() -> CargoResult<(String, Option<String>)> {
|
||||
let git_config = git_config.as_ref();
|
||||
let name = git_config.and_then(|g| g.get_str("user.name").ok())
|
||||
.map(|s| s.to_string())
|
||||
- .or_else(|| env::var_string("USER").ok()) // unix
|
||||
- .or_else(|| env::var_string("USERNAME").ok()); // windows
|
||||
+ .or_else(|| env::var("USER").ok()) // unix
|
||||
+ .or_else(|| env::var("USERNAME").ok()); // windows
|
||||
let name = match name {
|
||||
Some(name) => name,
|
||||
None => {
|
||||
diff --git a/src/cargo/ops/cargo_rustc/engine.rs b/src/cargo/ops/cargo_rustc/engine.rs
|
||||
index 5c6a0ef..9d234f8 100644
|
||||
--- a/src/cargo/ops/cargo_rustc/engine.rs
|
||||
+++ b/src/cargo/ops/cargo_rustc/engine.rs
|
||||
@@ -85,7 +85,7 @@ impl CommandPrototype {
|
||||
|
||||
pub fn get_env(&self, var: &str) -> Option<CString> {
|
||||
self.env.get(var).cloned().or_else(|| {
|
||||
- Some(env::var_string(var).ok().map(|s| CString::from_vec(s.into_bytes())))
|
||||
+ Some(env::var(var).ok().map(|s| CString::from_vec(s.into_bytes())))
|
||||
}).and_then(|val| val)
|
||||
}
|
||||
|
||||
diff --git a/src/cargo/ops/registry.rs b/src/cargo/ops/registry.rs
|
||||
index 2461981..59754f2 100644
|
||||
--- a/src/cargo/ops/registry.rs
|
||||
+++ b/src/cargo/ops/registry.rs
|
||||
@@ -191,7 +191,7 @@ pub fn http_proxy(config: &Config) -> CargoResult<Option<String>> {
|
||||
}
|
||||
Err(..) => {}
|
||||
}
|
||||
- Ok(env::var_string("HTTP_PROXY").ok())
|
||||
+ Ok(env::var("HTTP_PROXY").ok())
|
||||
}
|
||||
|
||||
pub fn http_timeout(config: &Config) -> CargoResult<Option<i64>> {
|
||||
@@ -199,7 +199,7 @@ pub fn http_timeout(config: &Config) -> CargoResult<Option<i64>> {
|
||||
Some((s, _)) => return Ok(Some(s)),
|
||||
None => {}
|
||||
}
|
||||
- Ok(env::var_string("HTTP_TIMEOUT").ok().and_then(|s| s.parse().ok()))
|
||||
+ Ok(env::var("HTTP_TIMEOUT").ok().and_then(|s| s.parse().ok()))
|
||||
}
|
||||
|
||||
pub fn registry_login(config: &Config, token: String) -> CargoResult<()> {
|
||||
diff --git a/src/cargo/sources/git/utils.rs b/src/cargo/sources/git/utils.rs
|
||||
index 898f082..9861ed6 100644
|
||||
--- a/src/cargo/sources/git/utils.rs
|
||||
+++ b/src/cargo/sources/git/utils.rs
|
||||
@@ -308,7 +308,8 @@ impl<'a> GitCheckout<'a> {
|
||||
// as the submodule's head, then we can bail out and go to the
|
||||
// next submodule.
|
||||
let head_and_repo = child.open().and_then(|repo| {
|
||||
- Ok((try!(repo.head()).target(), repo))
|
||||
+ let target = try!(repo.head()).target();
|
||||
+ Ok((target, repo))
|
||||
});
|
||||
let repo = match head_and_repo {
|
||||
Ok((head, repo)) => {
|
||||
diff --git a/src/cargo/util/config.rs b/src/cargo/util/config.rs
|
||||
index 217d028..076e68d 100644
|
||||
--- a/src/cargo/util/config.rs
|
||||
+++ b/src/cargo/util/config.rs
|
||||
@@ -380,7 +380,7 @@ impl ConfigValue {
|
||||
}
|
||||
|
||||
fn homedir() -> Option<Path> {
|
||||
- let cargo_home = env::var_string("CARGO_HOME").map(|p| Path::new(p)).ok();
|
||||
+ let cargo_home = env::var("CARGO_HOME").map(|p| Path::new(p)).ok();
|
||||
let user_home = env::home_dir().map(|p| p.join(".cargo"));
|
||||
return cargo_home.or(user_home);
|
||||
}
|
||||
diff --git a/src/cargo/util/hex.rs b/src/cargo/util/hex.rs
|
||||
index 2bce7ea..3e8d962 100644
|
||||
--- a/src/cargo/util/hex.rs
|
||||
+++ b/src/cargo/util/hex.rs
|
||||
@@ -1,12 +1,11 @@
|
||||
-use std::old_io::MemWriter;
|
||||
use std::hash::{Hasher, Hash, SipHasher};
|
||||
|
||||
use rustc_serialize::hex::ToHex;
|
||||
|
||||
pub fn to_hex(num: u64) -> String {
|
||||
- let mut writer = MemWriter::with_capacity(8);
|
||||
+ let mut writer = Vec::with_capacity(8);
|
||||
writer.write_le_u64(num).unwrap(); // this should never fail
|
||||
- writer.get_ref().to_hex()
|
||||
+ writer.to_hex()
|
||||
}
|
||||
|
||||
pub fn short_hash<H: Hash<SipHasher>>(hashable: &H) -> String {
|
||||
diff --git a/src/cargo/util/profile.rs b/src/cargo/util/profile.rs
|
||||
index 9d19c36..100fd2c 100644
|
||||
--- a/src/cargo/util/profile.rs
|
||||
+++ b/src/cargo/util/profile.rs
|
||||
@@ -14,7 +14,7 @@ pub struct Profiler {
|
||||
desc: String,
|
||||
}
|
||||
|
||||
-fn enabled() -> bool { env::var("CARGO_PROFILE").is_some() }
|
||||
+fn enabled() -> bool { env::var_os("CARGO_PROFILE").is_some() }
|
||||
|
||||
pub fn start<T: fmt::Display>(desc: T) -> Profiler {
|
||||
if !enabled() { return Profiler { desc: String::new() } }
|
||||
diff --git a/src/rustversion.txt b/src/rustversion.txt
|
||||
index e2a057d..17cae77 100644
|
||||
--- a/src/rustversion.txt
|
||||
+++ b/src/rustversion.txt
|
||||
@@ -1 +1 @@
|
||||
-2015-02-09
|
||||
+2015-02-12
|
||||
diff --git a/tests/support/mod.rs b/tests/support/mod.rs
|
||||
index 83be295..7c10756 100644
|
||||
--- a/tests/support/mod.rs
|
||||
+++ b/tests/support/mod.rs
|
||||
@@ -227,7 +227,7 @@ impl<T, E: fmt::Display> ErrMsg<T> for Result<T, E> {
|
||||
|
||||
// Path to cargo executables
|
||||
pub fn cargo_dir() -> Path {
|
||||
- env::var_string("CARGO_BIN_PATH").map(Path::new).ok()
|
||||
+ env::var("CARGO_BIN_PATH").map(Path::new).ok()
|
||||
.or_else(|| env::current_exe().ok().map(|s| s.dir_path()))
|
||||
.unwrap_or_else(|| {
|
||||
panic!("CARGO_BIN_PATH wasn't set. Cannot continue running test")
|
||||
diff --git a/tests/test_cargo.rs b/tests/test_cargo.rs
|
||||
index b4b1abd..64e4c75 100644
|
||||
--- a/tests/test_cargo.rs
|
||||
+++ b/tests/test_cargo.rs
|
||||
@@ -25,7 +25,7 @@ fn fake_executable(proj: ProjectBuilder, dir: &Path, name: &str) -> ProjectBuild
|
||||
}
|
||||
|
||||
fn path() -> Vec<Path> {
|
||||
- env::split_paths(&env::var("PATH").unwrap_or(OsString::new())).collect()
|
||||
+ env::split_paths(&env::var_os("PATH").unwrap_or(OsString::new())).collect()
|
||||
}
|
||||
|
||||
test!(list_commands_looks_at_path {
|
||||
diff --git a/tests/test_cargo_compile.rs b/tests/test_cargo_compile.rs
|
||||
index 20fcab8..9c5b934 100644
|
||||
--- a/tests/test_cargo_compile.rs
|
||||
+++ b/tests/test_cargo_compile.rs
|
||||
@@ -1259,7 +1259,7 @@ test!(freshness_ignores_excluded {
|
||||
exclude = ["src/b*.rs"]
|
||||
"#)
|
||||
.file("build.rs", "fn main() {}")
|
||||
- .file("src/lib.rs", "pub fn bar() -> int { 1 }");
|
||||
+ .file("src/lib.rs", "pub fn bar() -> i32 { 1 }");
|
||||
foo.build();
|
||||
foo.root().move_into_the_past().unwrap();
|
||||
|
||||
@@ -1297,15 +1297,15 @@ test!(rebuild_preserves_out_dir {
|
||||
use std::old_io::File;
|
||||
|
||||
fn main() {
|
||||
- let path = Path::new(env::var_string("OUT_DIR").unwrap()).join("foo");
|
||||
- if env::var("FIRST").is_some() {
|
||||
+ let path = Path::new(env::var("OUT_DIR").unwrap()).join("foo");
|
||||
+ if env::var_os("FIRST").is_some() {
|
||||
File::create(&path).unwrap();
|
||||
} else {
|
||||
File::create(&path).unwrap();
|
||||
}
|
||||
}
|
||||
"#)
|
||||
- .file("src/lib.rs", "pub fn bar() -> int { 1 }");
|
||||
+ .file("src/lib.rs", "pub fn bar() -> i32 { 1 }");
|
||||
foo.build();
|
||||
foo.root().move_into_the_past().unwrap();
|
||||
|
||||
@@ -1335,7 +1335,7 @@ test!(dep_no_libs {
|
||||
[dependencies.bar]
|
||||
path = "bar"
|
||||
"#)
|
||||
- .file("src/lib.rs", "pub fn bar() -> int { 1 }")
|
||||
+ .file("src/lib.rs", "pub fn bar() -> i32 { 1 }")
|
||||
.file("bar/Cargo.toml", r#"
|
||||
[package]
|
||||
name = "bar"
|
||||
diff --git a/tests/test_cargo_compile_custom_build.rs b/tests/test_cargo_compile_custom_build.rs
|
||||
index b110b86..4ef727b 100644
|
||||
--- a/tests/test_cargo_compile_custom_build.rs
|
||||
+++ b/tests/test_cargo_compile_custom_build.rs
|
||||
@@ -79,32 +79,32 @@ test!(custom_build_env_vars {
|
||||
use std::env;
|
||||
use std::old_io::fs::PathExtensions;
|
||||
fn main() {{
|
||||
- let _target = env::var_string("TARGET").unwrap();
|
||||
+ let _target = env::var("TARGET").unwrap();
|
||||
|
||||
- let _ncpus = env::var_string("NUM_JOBS").unwrap();
|
||||
+ let _ncpus = env::var("NUM_JOBS").unwrap();
|
||||
|
||||
- let out = env::var_string("CARGO_MANIFEST_DIR").unwrap();
|
||||
+ let out = env::var("CARGO_MANIFEST_DIR").unwrap();
|
||||
let p1 = Path::new(out);
|
||||
let cwd = env::current_dir().unwrap();
|
||||
let p2 = cwd.join(Path::new(file!()).dir_path().dir_path());
|
||||
assert!(p1 == p2, "{{}} != {{}}", p1.display(), p2.display());
|
||||
|
||||
- let opt = env::var_string("OPT_LEVEL").unwrap();
|
||||
+ let opt = env::var("OPT_LEVEL").unwrap();
|
||||
assert_eq!(opt.as_slice(), "0");
|
||||
|
||||
- let opt = env::var_string("PROFILE").unwrap();
|
||||
+ let opt = env::var("PROFILE").unwrap();
|
||||
assert_eq!(opt.as_slice(), "compile");
|
||||
|
||||
- let debug = env::var_string("DEBUG").unwrap();
|
||||
+ let debug = env::var("DEBUG").unwrap();
|
||||
assert_eq!(debug.as_slice(), "true");
|
||||
|
||||
- let out = env::var_string("OUT_DIR").unwrap();
|
||||
+ let out = env::var("OUT_DIR").unwrap();
|
||||
assert!(out.as_slice().starts_with(r"{0}"));
|
||||
assert!(Path::new(out).is_dir());
|
||||
|
||||
- let _host = env::var_string("HOST").unwrap();
|
||||
+ let _host = env::var("HOST").unwrap();
|
||||
|
||||
- let _feat = env::var_string("CARGO_FEATURE_FOO").unwrap();
|
||||
+ let _feat = env::var("CARGO_FEATURE_FOO").unwrap();
|
||||
}}
|
||||
"#,
|
||||
p.root().join("target").join("build").display());
|
||||
@@ -269,8 +269,8 @@ test!(overrides_and_links {
|
||||
.file("build.rs", r#"
|
||||
use std::env;
|
||||
fn main() {
|
||||
- assert_eq!(env::var_string("DEP_FOO_FOO").unwrap().as_slice(), "bar");
|
||||
- assert_eq!(env::var_string("DEP_FOO_BAR").unwrap().as_slice(), "baz");
|
||||
+ assert_eq!(env::var("DEP_FOO_FOO").unwrap().as_slice(), "bar");
|
||||
+ assert_eq!(env::var("DEP_FOO_BAR").unwrap().as_slice(), "baz");
|
||||
}
|
||||
"#)
|
||||
.file(".cargo/config", format!(r#"
|
||||
@@ -342,8 +342,8 @@ test!(links_passes_env_vars {
|
||||
.file("build.rs", r#"
|
||||
use std::env;
|
||||
fn main() {
|
||||
- assert_eq!(env::var_string("DEP_FOO_FOO").unwrap().as_slice(), "bar");
|
||||
- assert_eq!(env::var_string("DEP_FOO_BAR").unwrap().as_slice(), "baz");
|
||||
+ assert_eq!(env::var("DEP_FOO_FOO").unwrap().as_slice(), "bar");
|
||||
+ assert_eq!(env::var("DEP_FOO_BAR").unwrap().as_slice(), "baz");
|
||||
}
|
||||
"#)
|
||||
.file("a/Cargo.toml", r#"
|
||||
@@ -441,8 +441,8 @@ test!(rebuild_continues_to_pass_env_vars {
|
||||
.file("build.rs", r#"
|
||||
use std::env;
|
||||
fn main() {
|
||||
- assert_eq!(env::var_string("DEP_FOO_FOO").unwrap().as_slice(), "bar");
|
||||
- assert_eq!(env::var_string("DEP_FOO_BAR").unwrap().as_slice(), "baz");
|
||||
+ assert_eq!(env::var("DEP_FOO_FOO").unwrap().as_slice(), "bar");
|
||||
+ assert_eq!(env::var("DEP_FOO_BAR").unwrap().as_slice(), "baz");
|
||||
}
|
||||
"#);
|
||||
|
||||
@@ -727,7 +727,7 @@ test!(out_dir_is_preserved {
|
||||
use std::env;
|
||||
use std::old_io::File;
|
||||
fn main() {
|
||||
- let out = env::var_string("OUT_DIR").unwrap();
|
||||
+ let out = env::var("OUT_DIR").unwrap();
|
||||
File::create(&Path::new(out).join("foo")).unwrap();
|
||||
}
|
||||
"#);
|
||||
@@ -742,7 +742,7 @@ test!(out_dir_is_preserved {
|
||||
use std::env;
|
||||
use std::old_io::File;
|
||||
fn main() {
|
||||
- let out = env::var_string("OUT_DIR").unwrap();
|
||||
+ let out = env::var("OUT_DIR").unwrap();
|
||||
File::open(&Path::new(out).join("foo")).unwrap();
|
||||
}
|
||||
"#).unwrap();
|
||||
@@ -808,7 +808,7 @@ test!(code_generation {
|
||||
use std::old_io::File;
|
||||
|
||||
fn main() {
|
||||
- let dst = Path::new(env::var_string("OUT_DIR").unwrap());
|
||||
+ let dst = Path::new(env::var("OUT_DIR").unwrap());
|
||||
let mut f = File::create(&dst.join("hello.rs")).unwrap();
|
||||
f.write_str("
|
||||
pub fn message() -> &'static str {
|
||||
@@ -972,9 +972,9 @@ test!(test_a_lib_with_a_build_command {
|
||||
use std::old_io::File;
|
||||
|
||||
fn main() {
|
||||
- let out = Path::new(env::var_string("OUT_DIR").unwrap());
|
||||
+ let out = Path::new(env::var("OUT_DIR").unwrap());
|
||||
File::create(&out.join("foo.rs")).write_str("
|
||||
- fn foo() -> int { 1 }
|
||||
+ fn foo() -> i32 { 1 }
|
||||
").unwrap();
|
||||
}
|
||||
"#);
|
||||
@@ -1062,7 +1062,7 @@ test!(build_script_with_dynamic_native_dependency {
|
||||
use std::env;
|
||||
|
||||
fn main() {
|
||||
- let src = Path::new(env::var_string("SRC").unwrap());
|
||||
+ let src = Path::new(env::var("SRC").unwrap());
|
||||
println!("cargo:rustc-flags=-L {}", src.dir_path().display());
|
||||
}
|
||||
"#)
|
||||
diff --git a/tests/test_cargo_compile_git_deps.rs b/tests/test_cargo_compile_git_deps.rs
|
||||
index 5777e1a..11a152f 100644
|
||||
--- a/tests/test_cargo_compile_git_deps.rs
|
||||
+++ b/tests/test_cargo_compile_git_deps.rs
|
||||
@@ -461,7 +461,7 @@ test!(two_revs_same_deps {
|
||||
version = "0.0.0"
|
||||
authors = []
|
||||
"#)
|
||||
- .file("src/lib.rs", "pub fn bar() -> int { 1 }")
|
||||
+ .file("src/lib.rs", "pub fn bar() -> i32 { 1 }")
|
||||
}).unwrap();
|
||||
|
||||
let repo = git2::Repository::open(&bar.root()).unwrap();
|
||||
@@ -469,7 +469,7 @@ test!(two_revs_same_deps {
|
||||
|
||||
// Commit the changes and make sure we trigger a recompile
|
||||
File::create(&bar.root().join("src/lib.rs")).write_str(r#"
|
||||
- pub fn bar() -> int { 2 }
|
||||
+ pub fn bar() -> i32 { 2 }
|
||||
"#).unwrap();
|
||||
add(&repo);
|
||||
let rev2 = commit(&repo);
|
||||
@@ -511,7 +511,7 @@ test!(two_revs_same_deps {
|
||||
"#, bar.url(), rev2).as_slice())
|
||||
.file("src/lib.rs", r#"
|
||||
extern crate bar;
|
||||
- pub fn baz() -> int { bar::bar() }
|
||||
+ pub fn baz() -> i32 { bar::bar() }
|
||||
"#);
|
||||
|
||||
baz.build();
|
||||
@@ -860,7 +860,7 @@ test!(stale_cached_version {
|
||||
version = "0.0.0"
|
||||
authors = []
|
||||
"#)
|
||||
- .file("src/lib.rs", "pub fn bar() -> int { 1 }")
|
||||
+ .file("src/lib.rs", "pub fn bar() -> i32 { 1 }")
|
||||
}).unwrap();
|
||||
|
||||
// Update the git database in the cache with the current state of the git
|
||||
@@ -887,7 +887,7 @@ test!(stale_cached_version {
|
||||
// Update the repo, and simulate someone else updating the lockfile and then
|
||||
// us pulling it down.
|
||||
File::create(&bar.root().join("src/lib.rs")).write_str(r#"
|
||||
- pub fn bar() -> int { 1 + 0 }
|
||||
+ pub fn bar() -> i32 { 1 + 0 }
|
||||
"#).unwrap();
|
||||
let repo = git2::Repository::open(&bar.root()).unwrap();
|
||||
add(&repo);
|
||||
@@ -1090,7 +1090,7 @@ test!(git_build_cmd_freshness {
|
||||
build = "build.rs"
|
||||
"#)
|
||||
.file("build.rs", "fn main() {}")
|
||||
- .file("src/lib.rs", "pub fn bar() -> int { 1 }")
|
||||
+ .file("src/lib.rs", "pub fn bar() -> i32 { 1 }")
|
||||
.file(".gitignore", "
|
||||
src/bar.rs
|
||||
")
|
||||
@@ -1166,7 +1166,7 @@ test!(git_repo_changing_no_rebuild {
|
||||
version = "0.5.0"
|
||||
authors = ["wycats@example.com"]
|
||||
"#)
|
||||
- .file("src/lib.rs", "pub fn bar() -> int { 1 }")
|
||||
+ .file("src/lib.rs", "pub fn bar() -> i32 { 1 }")
|
||||
}).unwrap();
|
||||
|
||||
// Lock p1 to the first rev in the git repo
|
||||
@@ -1193,7 +1193,7 @@ test!(git_repo_changing_no_rebuild {
|
||||
|
||||
// Make a commit to lock p2 to a different rev
|
||||
File::create(&bar.root().join("src/lib.rs")).write_str(r#"
|
||||
- pub fn bar() -> int { 2 }
|
||||
+ pub fn bar() -> i32 { 2 }
|
||||
"#).unwrap();
|
||||
let repo = git2::Repository::open(&bar.root()).unwrap();
|
||||
add(&repo);
|
||||
@@ -1256,7 +1256,7 @@ test!(git_dep_build_cmd {
|
||||
name = "bar"
|
||||
"#)
|
||||
.file("bar/src/bar.rs.in", r#"
|
||||
- pub fn gimme() -> int { 0 }
|
||||
+ pub fn gimme() -> i32 { 0 }
|
||||
"#)
|
||||
.file("bar/build.rs", r#"
|
||||
use std::old_io::fs;
|
||||
@@ -1278,7 +1278,7 @@ test!(git_dep_build_cmd {
|
||||
|
||||
// Touching bar.rs.in should cause the `build` command to run again.
|
||||
let mut file = fs::File::create(&p.root().join("bar/src/bar.rs.in")).unwrap();
|
||||
- file.write_str(r#"pub fn gimme() -> int { 1 }"#).unwrap();
|
||||
+ file.write_str(r#"pub fn gimme() -> i32 { 1 }"#).unwrap();
|
||||
drop(file);
|
||||
|
||||
assert_that(p.process(cargo_dir().join("cargo")).arg("build"),
|
||||
@@ -1297,7 +1297,7 @@ test!(fetch_downloads {
|
||||
version = "0.5.0"
|
||||
authors = ["wycats@example.com"]
|
||||
"#)
|
||||
- .file("src/lib.rs", "pub fn bar() -> int { 1 }")
|
||||
+ .file("src/lib.rs", "pub fn bar() -> i32 { 1 }")
|
||||
}).unwrap();
|
||||
|
||||
let p = project("p1")
|
||||
@@ -1569,7 +1569,7 @@ test!(update_one_source_updates_all_packages_in_that_git_source {
|
||||
|
||||
// Just be sure to change a file
|
||||
File::create(&dep.root().join("src/lib.rs")).write_str(r#"
|
||||
- pub fn bar() -> int { 2 }
|
||||
+ pub fn bar() -> i32 { 2 }
|
||||
"#).unwrap();
|
||||
add(&repo);
|
||||
commit(&repo);
|
||||
diff --git a/tests/test_cargo_compile_plugins.rs b/tests/test_cargo_compile_plugins.rs
|
||||
index 853038f..ca44a4d 100644
|
||||
--- a/tests/test_cargo_compile_plugins.rs
|
||||
+++ b/tests/test_cargo_compile_plugins.rs
|
||||
@@ -23,14 +23,14 @@ test!(plugin_to_the_max {
|
||||
"#)
|
||||
.file("src/main.rs", r#"
|
||||
#![feature(plugin)]
|
||||
- #[plugin] #[no_link] extern crate bar;
|
||||
+ #![plugin(bar)]
|
||||
extern crate foo_lib;
|
||||
|
||||
fn main() { foo_lib::foo(); }
|
||||
"#)
|
||||
.file("src/foo_lib.rs", r#"
|
||||
#![feature(plugin)]
|
||||
- #[plugin] #[no_link] extern crate bar;
|
||||
+ #![plugin(bar)]
|
||||
|
||||
pub fn foo() {}
|
||||
"#);
|
||||
@@ -122,7 +122,7 @@ test!(plugin_with_dynamic_native_dependency {
|
||||
"#)
|
||||
.file("src/main.rs", r#"
|
||||
#![feature(plugin)]
|
||||
- #[plugin] #[no_link] extern crate bar;
|
||||
+ #![plugin(bar)]
|
||||
|
||||
fn main() {}
|
||||
"#)
|
||||
diff --git a/tests/test_cargo_cross_compile.rs b/tests/test_cargo_cross_compile.rs
|
||||
index a2d53e0..cf6b9a5 100644
|
||||
--- a/tests/test_cargo_cross_compile.rs
|
||||
+++ b/tests/test_cargo_cross_compile.rs
|
||||
@@ -12,7 +12,7 @@ fn setup() {
|
||||
|
||||
fn disabled() -> bool {
|
||||
// First, disable if ./configure requested so
|
||||
- match env::var_string("CFG_DISABLE_CROSS_TESTS") {
|
||||
+ match env::var("CFG_DISABLE_CROSS_TESTS") {
|
||||
Ok(ref s) if s.as_slice() == "1" => return true,
|
||||
_ => {}
|
||||
}
|
||||
@@ -44,7 +44,7 @@ test!(simple_cross {
|
||||
"#)
|
||||
.file("build.rs", format!(r#"
|
||||
fn main() {{
|
||||
- assert_eq!(std::env::var_string("TARGET").unwrap().as_slice(), "{}");
|
||||
+ assert_eq!(std::env::var("TARGET").unwrap().as_slice(), "{}");
|
||||
}}
|
||||
"#, alternate()).as_slice())
|
||||
.file("src/main.rs", r#"
|
||||
@@ -119,8 +119,7 @@ test!(plugin_deps {
|
||||
"#)
|
||||
.file("src/main.rs", r#"
|
||||
#![feature(plugin)]
|
||||
- #[plugin] #[no_link]
|
||||
- extern crate bar;
|
||||
+ #![plugin(bar)]
|
||||
extern crate baz;
|
||||
fn main() {
|
||||
assert_eq!(bar!(), baz::baz());
|
||||
@@ -155,7 +154,7 @@ test!(plugin_deps {
|
||||
|
||||
fn expand_bar(cx: &mut ExtCtxt, sp: Span, tts: &[TokenTree])
|
||||
-> Box<MacResult + 'static> {
|
||||
- MacExpr::new(quote_expr!(cx, 1i))
|
||||
+ MacExpr::new(quote_expr!(cx, 1))
|
||||
}
|
||||
"#);
|
||||
let baz = project("baz")
|
||||
@@ -165,7 +164,7 @@ test!(plugin_deps {
|
||||
version = "0.0.1"
|
||||
authors = []
|
||||
"#)
|
||||
- .file("src/lib.rs", "pub fn baz() -> int { 1 }");
|
||||
+ .file("src/lib.rs", "pub fn baz() -> i32 { 1 }");
|
||||
bar.build();
|
||||
baz.build();
|
||||
|
||||
@@ -197,8 +196,7 @@ test!(plugin_to_the_max {
|
||||
"#)
|
||||
.file("src/main.rs", r#"
|
||||
#![feature(plugin)]
|
||||
- #[plugin] #[no_link]
|
||||
- extern crate bar;
|
||||
+ #![plugin(bar)]
|
||||
extern crate baz;
|
||||
fn main() {
|
||||
assert_eq!(bar!(), baz::baz());
|
||||
@@ -320,7 +318,7 @@ test!(plugin_with_extra_dylib_dep {
|
||||
"#)
|
||||
.file("src/main.rs", r#"
|
||||
#![feature(plugin)]
|
||||
- #[plugin] #[no_link] extern crate bar;
|
||||
+ #![plugin(bar)]
|
||||
|
||||
fn main() {}
|
||||
"#);
|
||||
@@ -362,7 +360,7 @@ test!(plugin_with_extra_dylib_dep {
|
||||
name = "baz"
|
||||
crate_type = ["dylib"]
|
||||
"#)
|
||||
- .file("src/lib.rs", "pub fn baz() -> int { 1 }");
|
||||
+ .file("src/lib.rs", "pub fn baz() -> i32 { 1 }");
|
||||
bar.build();
|
||||
baz.build();
|
||||
|
||||
@@ -464,8 +462,8 @@ test!(cross_with_a_build_script {
|
||||
.file("build.rs", format!(r#"
|
||||
use std::env;
|
||||
fn main() {{
|
||||
- assert_eq!(env::var_string("TARGET").unwrap().as_slice(), "{0}");
|
||||
- let mut path = Path::new(env::var_string("OUT_DIR").unwrap());
|
||||
+ assert_eq!(env::var("TARGET").unwrap().as_slice(), "{0}");
|
||||
+ let mut path = Path::new(env::var("OUT_DIR").unwrap());
|
||||
assert_eq!(path.filename().unwrap(), b"out");
|
||||
path.pop();
|
||||
assert!(path.filename().unwrap().starts_with(b"foo-"));
|
||||
@@ -530,7 +528,7 @@ test!(build_script_needed_for_host_and_target {
|
||||
.file("d1/build.rs", r#"
|
||||
use std::env;
|
||||
fn main() {
|
||||
- let target = env::var_string("TARGET").unwrap();
|
||||
+ let target = env::var("TARGET").unwrap();
|
||||
println!("cargo:rustc-flags=-L /path/to/{}", target);
|
||||
}
|
||||
"#)
|
||||
@@ -643,9 +641,9 @@ test!(build_script_only_host {
|
||||
use std::env;
|
||||
|
||||
fn main() {
|
||||
- assert!(env::var_string("OUT_DIR").unwrap()
|
||||
+ assert!(env::var("OUT_DIR").unwrap()
|
||||
.contains("target/build/d1-"),
|
||||
- "bad: {:?}", env::var_string("OUT_DIR"));
|
||||
+ "bad: {:?}", env::var("OUT_DIR"));
|
||||
}
|
||||
"#);
|
||||
|
||||
diff --git a/tests/test_cargo_profiles.rs b/tests/test_cargo_profiles.rs
|
||||
index b71eadb..827393f 100644
|
||||
--- a/tests/test_cargo_profiles.rs
|
||||
+++ b/tests/test_cargo_profiles.rs
|
||||
@@ -1,4 +1,4 @@
|
||||
-use std::os;
|
||||
+use std::env;
|
||||
use std::old_path;
|
||||
|
||||
use support::{project, execs};
|
||||
@@ -110,6 +110,6 @@ test!(top_level_overrides_deps {
|
||||
dir = p.root().display(),
|
||||
url = p.url(),
|
||||
sep = old_path::SEP,
|
||||
- prefix = os::consts::DLL_PREFIX,
|
||||
- suffix = os::consts::DLL_SUFFIX).as_slice()));
|
||||
+ prefix = env::consts::DLL_PREFIX,
|
||||
+ suffix = env::consts::DLL_SUFFIX).as_slice()));
|
||||
});
|
||||
--
|
||||
2.3.0
|
||||
|
||||
138
recipes-devtools/cargo/files/0001-update-pkg-versions.patch
Normal file
138
recipes-devtools/cargo/files/0001-update-pkg-versions.patch
Normal file
@@ -0,0 +1,138 @@
|
||||
From f32fa685610399739a2584ae02653753a372d6ed Mon Sep 17 00:00:00 2001
|
||||
From: Cody P Schafer <dev@codyps.com>
|
||||
Date: Fri, 13 Feb 2015 15:24:16 -0500
|
||||
Subject: [PATCH] update pkg versions
|
||||
|
||||
---
|
||||
Cargo.lock | 32 ++++++++++++++++----------------
|
||||
1 file changed, 16 insertions(+), 16 deletions(-)
|
||||
|
||||
diff --git a/Cargo.lock b/Cargo.lock
|
||||
index 14dd876..629585c 100644
|
||||
--- a/Cargo.lock
|
||||
+++ b/Cargo.lock
|
||||
@@ -4,7 +4,7 @@ version = "0.1.0"
|
||||
dependencies = [
|
||||
"advapi32-sys 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"curl 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
- "docopt 0.6.36 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
+ "docopt 0.6.37 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"env_logger 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"flate2 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"git2 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
@@ -18,8 +18,8 @@ dependencies = [
|
||||
"semver 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"tar 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"term 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
- "time 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
- "toml 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
+ "time 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
+ "toml 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"url 0.2.20 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"winapi 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
]
|
||||
@@ -44,7 +44,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
dependencies = [
|
||||
"curl-sys 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"libc 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
- "openssl-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
+ "openssl-sys 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"url 0.2.20 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
]
|
||||
|
||||
@@ -55,13 +55,13 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
dependencies = [
|
||||
"libc 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"libz-sys 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
- "openssl-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
+ "openssl-sys 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"pkg-config 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "docopt"
|
||||
-version = "0.6.36"
|
||||
+version = "0.6.37"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
dependencies = [
|
||||
"regex 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
@@ -97,7 +97,7 @@ version = "0.1.17"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
dependencies = [
|
||||
"bitflags 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
- "libgit2-sys 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
+ "libgit2-sys 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"url 0.2.20 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
]
|
||||
|
||||
@@ -136,13 +136,13 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
|
||||
[[package]]
|
||||
name = "libgit2-sys"
|
||||
-version = "0.1.12"
|
||||
+version = "0.1.13"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
dependencies = [
|
||||
"libssh2-sys 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"libz-sys 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
- "openssl-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
- "pkg-config 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
+ "openssl-sys 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
+ "pkg-config 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
@@ -159,7 +159,7 @@ version = "0.1.5"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
dependencies = [
|
||||
"libz-sys 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
- "openssl-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
+ "openssl-sys 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"pkg-config 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
]
|
||||
|
||||
@@ -192,12 +192,12 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "openssl-sys"
|
||||
-version = "0.3.3"
|
||||
+version = "0.3.6"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
dependencies = [
|
||||
"gcc 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"libressl-pnacl-sys 2.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
- "pkg-config 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
+ "pkg-config 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
@@ -207,7 +207,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
|
||||
[[package]]
|
||||
name = "pkg-config"
|
||||
-version = "0.2.0"
|
||||
+version = "0.2.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
|
||||
[[package]]
|
||||
@@ -255,7 +255,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "time"
|
||||
-version = "0.1.16"
|
||||
+version = "0.1.17"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
dependencies = [
|
||||
"gcc 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
@@ -264,7 +264,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "toml"
|
||||
-version = "0.1.16"
|
||||
+version = "0.1.17"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
dependencies = [
|
||||
"rustc-serialize 0.2.12 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
--
|
||||
2.3.0
|
||||
|
||||
@@ -0,0 +1,55 @@
|
||||
From 797df37f3a9b377db475f3d2eae09fcbb90d2e4f Mon Sep 17 00:00:00 2001
|
||||
From: Cody P Schafer <dev@codyps.com>
|
||||
Date: Tue, 25 Nov 2014 11:50:28 -0500
|
||||
Subject: [PATCH 1/2] curl-sys: avoid explicitly linking in openssl. If it is
|
||||
needed, pkgconfig will pull it in
|
||||
|
||||
---
|
||||
curl-sys/Cargo.toml | 19 -------------------
|
||||
curl-sys/lib.rs | 2 --
|
||||
2 files changed, 21 deletions(-)
|
||||
|
||||
diff --git a/curl-sys/Cargo.toml b/curl-sys/Cargo.toml
|
||||
index 6e99e16..50d1101 100644
|
||||
--- a/curl-sys/Cargo.toml
|
||||
+++ b/curl-sys/Cargo.toml
|
||||
@@ -18,23 +18,4 @@ path = "lib.rs"
|
||||
[dependencies]
|
||||
libz-sys = "0.1.0"
|
||||
libc = "0.1"
|
||||
-
|
||||
-# Unix platforms use OpenSSL for now to provide SSL functionality
|
||||
-[target.i686-apple-darwin.dependencies]
|
||||
-openssl-sys = "0.6.0"
|
||||
-[target.x86_64-apple-darwin.dependencies]
|
||||
-openssl-sys = "0.6.0"
|
||||
-[target.i686-unknown-linux-gnu.dependencies]
|
||||
-openssl-sys = "0.6.0"
|
||||
-[target.x86_64-unknown-linux-gnu.dependencies]
|
||||
-openssl-sys = "0.6.0"
|
||||
-[target.arm-unknown-linux-gnueabihf.dependencies]
|
||||
-openssl-sys = "0.6.0"
|
||||
-[target.aarch64-unknown-linux-gnu.dependencies]
|
||||
-openssl-sys = "0.6.0"
|
||||
-[target.i686-unknown-freebsd.dependencies]
|
||||
-openssl-sys = "0.6.0"
|
||||
-[target.x86_64-unknown-freebsd.dependencies]
|
||||
-openssl-sys = "0.6.0"
|
||||
-[target.x86_64-unknown-bitrig.dependencies]
|
||||
openssl-sys = "0.6.0"
|
||||
diff --git a/curl-sys/lib.rs b/curl-sys/lib.rs
|
||||
index 7cae355..a2d58ea 100644
|
||||
--- a/curl-sys/lib.rs
|
||||
+++ b/curl-sys/lib.rs
|
||||
@@ -1,8 +1,6 @@
|
||||
#![allow(non_camel_case_types, raw_pointer_derive)]
|
||||
|
||||
extern crate libc;
|
||||
-#[cfg(not(target_env = "msvc"))] extern crate libz_sys;
|
||||
-#[cfg(unix)] extern crate openssl_sys;
|
||||
|
||||
use libc::{c_void, c_int, c_char, c_uint, c_long};
|
||||
|
||||
--
|
||||
2.4.3
|
||||
|
||||
@@ -0,0 +1,48 @@
|
||||
From 625b2491eca17e78fdec374f8e83ec00fcca5fc8 Mon Sep 17 00:00:00 2001
|
||||
From: Cody P Schafer <dev@codyps.com>
|
||||
Date: Tue, 25 Nov 2014 12:26:48 -0500
|
||||
Subject: [PATCH 2/2] remove per-triple deps on openssl-sys
|
||||
|
||||
---
|
||||
Cargo.toml | 21 +--------------------
|
||||
1 file changed, 1 insertion(+), 20 deletions(-)
|
||||
|
||||
diff --git a/Cargo.toml b/Cargo.toml
|
||||
index 16b72c3..68235ae 100644
|
||||
--- a/Cargo.toml
|
||||
+++ b/Cargo.toml
|
||||
@@ -12,30 +12,11 @@ url = "0.2.0"
|
||||
log = "0.3.0"
|
||||
libc = "0.1"
|
||||
curl-sys = { path = "curl-sys", version = "0.1.0" }
|
||||
+openssl-sys = "0.6.0"
|
||||
|
||||
[dev-dependencies]
|
||||
env_logger = "0.3.0"
|
||||
|
||||
-# Unix platforms use OpenSSL for now to provide SSL functionality
|
||||
-[target.i686-apple-darwin.dependencies]
|
||||
-openssl-sys = "0.6.0"
|
||||
-[target.x86_64-apple-darwin.dependencies]
|
||||
-openssl-sys = "0.6.0"
|
||||
-[target.i686-unknown-linux-gnu.dependencies]
|
||||
-openssl-sys = "0.6.0"
|
||||
-[target.x86_64-unknown-linux-gnu.dependencies]
|
||||
-openssl-sys = "0.6.0"
|
||||
-[target.arm-unknown-linux-gnueabihf.dependencies]
|
||||
-openssl-sys = "0.6.0"
|
||||
-[target.aarch64-unknown-linux-gnu.dependencies]
|
||||
-openssl-sys = "0.6.0"
|
||||
-[target.i686-unknown-freebsd.dependencies]
|
||||
-openssl-sys = "0.6.0"
|
||||
-[target.x86_64-unknown-freebsd.dependencies]
|
||||
-openssl-sys = "0.6.0"
|
||||
-[target.x86_64-unknown-bitrig.dependencies]
|
||||
-openssl-sys = "0.6.0"
|
||||
-
|
||||
[[test]]
|
||||
|
||||
name = "test"
|
||||
--
|
||||
2.4.3
|
||||
|
||||
@@ -0,0 +1,59 @@
|
||||
From aa1bea8387b6108ca2cd60ad71e8d354d8790d62 Mon Sep 17 00:00:00 2001
|
||||
From: Cody P Schafer <dev@codyps.com>
|
||||
Date: Mon, 10 Nov 2014 15:06:29 -0500
|
||||
Subject: [PATCH] Add generic openssl-sys dep
|
||||
|
||||
---
|
||||
libgit2-sys/Cargo.toml | 36 ++----------------------------------
|
||||
1 file changed, 2 insertions(+), 34 deletions(-)
|
||||
|
||||
diff --git a/libgit2-sys/Cargo.toml b/libgit2-sys/Cargo.toml
|
||||
index 9c0aa6c..d95d07e 100644
|
||||
--- a/libgit2-sys/Cargo.toml
|
||||
+++ b/libgit2-sys/Cargo.toml
|
||||
@@ -16,40 +16,8 @@ description = "Native bindings to the libgit2 library"
|
||||
[dependencies]
|
||||
libssh2-sys = "0.1.0"
|
||||
libc = "0.1"
|
||||
+openssl-sys = "0.6.0"
|
||||
+libz-sys = "0.1.0"
|
||||
|
||||
[build-dependencies]
|
||||
pkg-config = "0.3"
|
||||
-
|
||||
-[target.i686-apple-darwin.dependencies]
|
||||
-openssl-sys = "0.6.0"
|
||||
-libz-sys = "0.1.0"
|
||||
-[target.x86_64-apple-darwin.dependencies]
|
||||
-openssl-sys = "0.6.0"
|
||||
-libz-sys = "0.1.0"
|
||||
-[target.i686-unknown-linux-gnu.dependencies]
|
||||
-openssl-sys = "0.6.0"
|
||||
-libz-sys = "0.1.0"
|
||||
-[target.x86_64-unknown-linux-gnu.dependencies]
|
||||
-openssl-sys = "0.6.0"
|
||||
-libz-sys = "0.1.0"
|
||||
-[target.aarch64-unknown-linux-gnu.dependencies]
|
||||
-openssl-sys = "0.6.0"
|
||||
-libz-sys = "0.1.0"
|
||||
-[target.arm-unknown-linux-gnueabihf.dependencies]
|
||||
-openssl-sys = "0.6.0"
|
||||
-libz-sys = "0.1.0"
|
||||
-[target.i686-unknown-freebsd.dependencies]
|
||||
-openssl-sys = "0.6.0"
|
||||
-libz-sys = "0.1.0"
|
||||
-[target.x86_64-unknown-freebsd.dependencies]
|
||||
-openssl-sys = "0.6.0"
|
||||
-libz-sys = "0.1.0"
|
||||
-[target.x86_64-unknown-bitrig.dependencies]
|
||||
-openssl-sys = "0.6.0"
|
||||
-libz-sys = "0.1.0"
|
||||
-[target.x86_64-unknown-openbsd.dependencies]
|
||||
-openssl-sys = "0.6.0"
|
||||
-libz-sys = "0.1.0"
|
||||
-[target.x86_64-unknown-dragonfly.dependencies]
|
||||
-openssl-sys = "0.6.0"
|
||||
-libz-sys = "0.1.0"
|
||||
--
|
||||
2.4.3
|
||||
|
||||
@@ -0,0 +1,26 @@
|
||||
From a1ba6ce6f54e3b2b0c3e05043a015bc845d24025 Mon Sep 17 00:00:00 2001
|
||||
From: Cody P Schafer <dev@codyps.com>
|
||||
Date: Tue, 26 May 2015 22:10:18 -0400
|
||||
Subject: [PATCH 2/3] libgit2-sys: avoid the build script, it is a disaster
|
||||
|
||||
---
|
||||
libgit2-sys/build.rs | 3 +++
|
||||
1 file changed, 3 insertions(+)
|
||||
|
||||
diff --git a/libgit2-sys/build.rs b/libgit2-sys/build.rs
|
||||
index d624a63..9b8b98c 100644
|
||||
--- a/libgit2-sys/build.rs
|
||||
+++ b/libgit2-sys/build.rs
|
||||
@@ -15,6 +15,9 @@ macro_rules! t {
|
||||
}
|
||||
|
||||
fn main() {
|
||||
+ pkg_config::find_library("libgit2").unwrap();
|
||||
+ return;
|
||||
+
|
||||
register_dep("SSH2");
|
||||
register_dep("OPENSSL");
|
||||
|
||||
--
|
||||
2.4.3
|
||||
|
||||
@@ -0,0 +1,25 @@
|
||||
From ce3e8e83be261ed7cf0a62dc8e66361588329ba2 Mon Sep 17 00:00:00 2001
|
||||
From: Cody P Schafer <dev@codyps.com>
|
||||
Date: Tue, 26 May 2015 22:06:57 -0400
|
||||
Subject: [PATCH 3/3] bump libssh2 to fix build with nightly
|
||||
|
||||
---
|
||||
libgit2-sys/Cargo.toml | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/libgit2-sys/Cargo.toml b/libgit2-sys/Cargo.toml
|
||||
index d95d07e..992ea7a 100644
|
||||
--- a/libgit2-sys/Cargo.toml
|
||||
+++ b/libgit2-sys/Cargo.toml
|
||||
@@ -14,7 +14,7 @@ description = "Native bindings to the libgit2 library"
|
||||
path = "lib.rs"
|
||||
|
||||
[dependencies]
|
||||
-libssh2-sys = "0.1.0"
|
||||
+libssh2-sys = "0.1.23"
|
||||
libc = "0.1"
|
||||
openssl-sys = "0.6.0"
|
||||
libz-sys = "0.1.0"
|
||||
--
|
||||
2.4.3
|
||||
|
||||
@@ -0,0 +1,45 @@
|
||||
From b45c6ed5524690603a1888dff21556b7f42db474 Mon Sep 17 00:00:00 2001
|
||||
From: Cody P Schafer <dev@codyps.com>
|
||||
Date: Mon, 1 Dec 2014 10:51:31 -0500
|
||||
Subject: [PATCH] Unconditionally depend on openssl-sys
|
||||
|
||||
---
|
||||
libssh2-sys/Cargo.toml | 22 ----------------------
|
||||
1 file changed, 22 deletions(-)
|
||||
|
||||
diff --git a/libssh2-sys/Cargo.toml b/libssh2-sys/Cargo.toml
|
||||
index 501bba5..db8d21a 100644
|
||||
--- a/libssh2-sys/Cargo.toml
|
||||
+++ b/libssh2-sys/Cargo.toml
|
||||
@@ -15,28 +15,6 @@ path = "lib.rs"
|
||||
[dependencies]
|
||||
libz-sys = "0.1.0"
|
||||
libc = "0.1"
|
||||
-
|
||||
-[target.i686-apple-darwin.dependencies]
|
||||
-openssl-sys = "0.6.0"
|
||||
-[target.x86_64-apple-darwin.dependencies]
|
||||
-openssl-sys = "0.6.0"
|
||||
-[target.i686-unknown-linux-gnu.dependencies]
|
||||
-openssl-sys = "0.6.0"
|
||||
-[target.x86_64-unknown-linux-gnu.dependencies]
|
||||
-openssl-sys = "0.6.0"
|
||||
-[target.aarch64-unknown-linux-gnu.dependencies]
|
||||
-openssl-sys = "0.6.0"
|
||||
-[target.arm-unknown-linux-gnueabihf.dependencies]
|
||||
-openssl-sys = "0.6.0"
|
||||
-[target.i686-unknown-freebsd.dependencies]
|
||||
-openssl-sys = "0.6.0"
|
||||
-[target.x86_64-unknown-freebsd.dependencies]
|
||||
-openssl-sys = "0.6.0"
|
||||
-[target.x86_64-unknown-dragonfly.dependencies]
|
||||
-openssl-sys = "0.6.0"
|
||||
-[target.x86_64-unknown-bitrig.dependencies]
|
||||
-openssl-sys = "0.6.0"
|
||||
-[target.x86_64-unknown-openbsd.dependencies]
|
||||
openssl-sys = "0.6.0"
|
||||
|
||||
[build-dependencies]
|
||||
--
|
||||
2.4.3
|
||||
|
||||
@@ -0,0 +1,63 @@
|
||||
From 3d850e1b1651a79085b994c12cdb78faa8271622 Mon Sep 17 00:00:00 2001
|
||||
From: =?UTF-8?q?Ho=C3=A0ng=20=C4=90=E1=BB=A9c=20Hi=E1=BA=BFu?=
|
||||
<hdhoang@zahe.me>
|
||||
Date: Mon, 1 Dec 2014 11:48:14 +0700
|
||||
Subject: [PATCH] update to new io::FileType enum
|
||||
|
||||
---
|
||||
src/lib.rs | 32 ++++++++++++++++----------------
|
||||
1 file changed, 16 insertions(+), 16 deletions(-)
|
||||
|
||||
diff --git a/src/lib.rs b/src/lib.rs
|
||||
index 5e13b84..3e24ff2 100644
|
||||
--- a/src/lib.rs
|
||||
+++ b/src/lib.rs
|
||||
@@ -283,12 +283,12 @@ impl<W: Writer> Archive<W> {
|
||||
octal(&mut header.dev_major, 0i);
|
||||
|
||||
header.link[0] = match stat.kind {
|
||||
- io::TypeFile => b'0',
|
||||
- io::TypeDirectory => b'5',
|
||||
- io::TypeNamedPipe => b'6',
|
||||
- io::TypeBlockSpecial => b'4',
|
||||
- io::TypeSymlink => b'2',
|
||||
- io::TypeUnknown => b' ',
|
||||
+ io::FileType::RegularFile => b'0',
|
||||
+ io::FileType::Directory => b'5',
|
||||
+ io::FileType::NamedPipe => b'6',
|
||||
+ io::FileType::BlockSpecial => b'4',
|
||||
+ io::FileType::Symlink => b'2',
|
||||
+ io::FileType::Unknown => b' ',
|
||||
};
|
||||
|
||||
// Final step, calculate the checksum
|
||||
@@ -411,16 +411,16 @@ impl<'a, R> File<'a, R> {
|
||||
/// Classify the type of file that this entry represents
|
||||
pub fn classify(&self) -> io::FileType {
|
||||
match (self.header.is_ustar(), self.header.link[0]) {
|
||||
- (_, b'0') => io::TypeFile,
|
||||
- (_, b'1') => io::TypeUnknown, // need a hard link enum?
|
||||
- (_, b'2') => io::TypeSymlink,
|
||||
- (false, _) => io::TypeUnknown, // not technically valid...
|
||||
-
|
||||
- (_, b'3') => io::TypeUnknown, // character special...
|
||||
- (_, b'4') => io::TypeBlockSpecial,
|
||||
- (_, b'5') => io::TypeDirectory,
|
||||
- (_, b'6') => io::TypeNamedPipe,
|
||||
- (_, _) => io::TypeUnknown, // not technically valid...
|
||||
+ (_, b'0') => io::FileType::RegularFile,
|
||||
+ (_, b'1') => io::FileType::Unknown, // need a hard link enum?
|
||||
+ (_, b'2') => io::FileType::Symlink,
|
||||
+ (false, _) => io::FileType::Unknown, // not technically valid...
|
||||
+
|
||||
+ (_, b'3') => io::FileType::Unknown, // character special...
|
||||
+ (_, b'4') => io::FileType::BlockSpecial,
|
||||
+ (_, b'5') => io::FileType::Directory,
|
||||
+ (_, b'6') => io::FileType::NamedPipe,
|
||||
+ (_, _) => io::FileType::Unknown, // not technically valid...
|
||||
}
|
||||
}
|
||||
|
||||
--
|
||||
2.0.4
|
||||
|
||||
@@ -0,0 +1,27 @@
|
||||
From 6d0905573f38d0fbdde74848c0cd7cdbb603c238 Mon Sep 17 00:00:00 2001
|
||||
From: Cody P Schafer <dev@codyps.com>
|
||||
Date: Sat, 15 Nov 2014 20:12:48 -0500
|
||||
Subject: [PATCH 01/10] platform.mk: avoid choking on i586
|
||||
|
||||
---
|
||||
mk/platform.mk | 4 +++-
|
||||
1 file changed, 3 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/mk/platform.mk b/mk/platform.mk
|
||||
index 60fe22c..9c57656 100644
|
||||
--- a/mk/platform.mk
|
||||
+++ b/mk/platform.mk
|
||||
@@ -14,7 +14,9 @@
|
||||
# would create a variable HOST_i686-darwin-macos with the value
|
||||
# i386.
|
||||
define DEF_HOST_VAR
|
||||
- HOST_$(1) = $(subst i686,i386,$(word 1,$(subst -, ,$(1))))
|
||||
+ HOST_$(1) = $(subst i686,i386,\
|
||||
+ $(subst i586,i386,\
|
||||
+ $(word 1,$(subst -, ,$(1)))))
|
||||
endef
|
||||
$(foreach t,$(CFG_TARGET),$(eval $(call DEF_HOST_VAR,$(t))))
|
||||
$(foreach t,$(CFG_TARGET),$(info cfg: host for $(t) is $(HOST_$(t))))
|
||||
--
|
||||
2.5.1
|
||||
|
||||
@@ -0,0 +1,109 @@
|
||||
From e9d46f8cb10eec1f8ee19ed2aab385d17ec85757 Mon Sep 17 00:00:00 2001
|
||||
From: Cody P Schafer <dev@codyps.com>
|
||||
Date: Tue, 18 Nov 2014 01:40:21 -0500
|
||||
Subject: [PATCH 02/10] Target: add default target.json path:
|
||||
$libdir/rust/targets
|
||||
|
||||
---
|
||||
src/librustc/session/config.rs | 6 +++---
|
||||
src/librustc/session/mod.rs | 8 ++++++--
|
||||
src/librustc_back/target/mod.rs | 14 +++++++++++---
|
||||
3 files changed, 20 insertions(+), 8 deletions(-)
|
||||
|
||||
diff --git a/src/librustc/session/config.rs b/src/librustc/session/config.rs
|
||||
index c5db7cd..2b9069f 100644
|
||||
--- a/src/librustc/session/config.rs
|
||||
+++ b/src/librustc/session/config.rs
|
||||
@@ -38,7 +38,7 @@ use getopts;
|
||||
use std::collections::HashMap;
|
||||
use std::env;
|
||||
use std::fmt;
|
||||
-use std::path::PathBuf;
|
||||
+use std::path::{Path, PathBuf};
|
||||
|
||||
use llvm;
|
||||
|
||||
@@ -655,8 +655,8 @@ pub fn build_configuration(sess: &Session) -> ast::CrateConfig {
|
||||
v
|
||||
}
|
||||
|
||||
-pub fn build_target_config(opts: &Options, sp: &SpanHandler) -> Config {
|
||||
- let target = match Target::search(&opts.target_triple) {
|
||||
+pub fn build_target_config(sysroot: &Path, opts: &Options, sp: &SpanHandler) -> Config {
|
||||
+ let target = match Target::search(sysroot, &opts.target_triple[..]) {
|
||||
Ok(t) => t,
|
||||
Err(e) => {
|
||||
sp.handler().fatal(&format!("Error loading target specification: {}", e));
|
||||
diff --git a/src/librustc/session/mod.rs b/src/librustc/session/mod.rs
|
||||
index 99a58f0..d25e476 100644
|
||||
--- a/src/librustc/session/mod.rs
|
||||
+++ b/src/librustc/session/mod.rs
|
||||
@@ -385,14 +385,18 @@ pub fn build_session_(sopts: config::Options,
|
||||
local_crate_source_file: Option<PathBuf>,
|
||||
span_diagnostic: diagnostic::SpanHandler)
|
||||
-> Session {
|
||||
- let host = match Target::search(config::host_triple()) {
|
||||
+ let sysroot = match sopts.maybe_sysroot {
|
||||
+ Some(ref x) => PathBuf::from(x),
|
||||
+ None => filesearch::get_or_default_sysroot()
|
||||
+ };
|
||||
+ let host = match Target::search(&sysroot, config::host_triple()) {
|
||||
Ok(t) => t,
|
||||
Err(e) => {
|
||||
span_diagnostic.handler()
|
||||
.fatal(&format!("Error loading host specification: {}", e));
|
||||
}
|
||||
};
|
||||
- let target_cfg = config::build_target_config(&sopts, &span_diagnostic);
|
||||
+ let target_cfg = config::build_target_config(&sysroot, &sopts, &span_diagnostic);
|
||||
let p_s = parse::ParseSess::with_span_handler(span_diagnostic);
|
||||
let default_sysroot = match sopts.maybe_sysroot {
|
||||
Some(_) => None,
|
||||
diff --git a/src/librustc_back/target/mod.rs b/src/librustc_back/target/mod.rs
|
||||
index ce05a88..1d1ff70 100644
|
||||
--- a/src/librustc_back/target/mod.rs
|
||||
+++ b/src/librustc_back/target/mod.rs
|
||||
@@ -49,6 +49,8 @@ use serialize::json::Json;
|
||||
use std::default::Default;
|
||||
use std::io::prelude::*;
|
||||
use syntax::{diagnostic, abi};
|
||||
+use std::borrow::ToOwned;
|
||||
+use std::path::Path;
|
||||
|
||||
mod android_base;
|
||||
mod apple_base;
|
||||
@@ -320,12 +322,13 @@ impl Target {
|
||||
///
|
||||
/// The error string could come from any of the APIs called, including
|
||||
/// filesystem access and JSON decoding.
|
||||
- pub fn search(target: &str) -> Result<Target, String> {
|
||||
+ pub fn search(sysroot: &Path, target: &str) -> Result<Target, String> {
|
||||
use std::env;
|
||||
use std::ffi::OsString;
|
||||
use std::fs::File;
|
||||
use std::path::{Path, PathBuf};
|
||||
use serialize::json;
|
||||
+ use std::iter::IntoIterator;
|
||||
|
||||
fn load_file(path: &Path) -> Result<Target, String> {
|
||||
let mut f = try!(File::open(path).map_err(|e| e.to_string()));
|
||||
@@ -417,9 +420,14 @@ impl Target {
|
||||
let target_path = env::var_os("RUST_TARGET_PATH")
|
||||
.unwrap_or(OsString::new());
|
||||
|
||||
- // FIXME 16351: add a sane default search path?
|
||||
+ let mut default_path = sysroot.to_owned();
|
||||
+ default_path.push(env!("CFG_LIBDIR_RELATIVE"));
|
||||
+ default_path.push("rustlib");
|
||||
|
||||
- for dir in env::split_paths(&target_path) {
|
||||
+ let paths = env::split_paths(&target_path)
|
||||
+ .chain(Some(default_path).into_iter());
|
||||
+
|
||||
+ for dir in paths {
|
||||
let p = dir.join(&path);
|
||||
if p.is_file() {
|
||||
return load_file(&p);
|
||||
--
|
||||
2.5.1
|
||||
|
||||
@@ -0,0 +1,68 @@
|
||||
From e468926e5e331dc6a68be5d0731a331940bd0199 Mon Sep 17 00:00:00 2001
|
||||
From: Cody P Schafer <dev@codyps.com>
|
||||
Date: Tue, 18 Nov 2014 14:52:56 -0500
|
||||
Subject: [PATCH 03/10] mk: for stage0, use RUSTFLAGS to override target libs
|
||||
dir
|
||||
|
||||
Setting HLIB specially for stage0 (and even more specially for windows)
|
||||
also affects the location we place TLIB. To keep the TLIBs we build in
|
||||
the place requested by configure, use '-L' and '--sysroot' to point
|
||||
stage0-rustc at the appropriate location.
|
||||
---
|
||||
mk/main.mk | 19 +++++++++++--------
|
||||
1 file changed, 11 insertions(+), 8 deletions(-)
|
||||
|
||||
diff --git a/mk/main.mk b/mk/main.mk
|
||||
index 99b0797..d907628 100644
|
||||
--- a/mk/main.mk
|
||||
+++ b/mk/main.mk
|
||||
@@ -369,21 +369,22 @@ define SREQ
|
||||
# Destinations of artifacts for the host compiler
|
||||
HROOT$(1)_H_$(3) = $(3)/stage$(1)
|
||||
HBIN$(1)_H_$(3) = $$(HROOT$(1)_H_$(3))/bin
|
||||
-ifeq ($$(CFG_WINDOWSY_$(3)),1)
|
||||
-HLIB$(1)_H_$(3) = $$(HROOT$(1)_H_$(3))/$$(CFG_LIBDIR_RELATIVE)
|
||||
-else
|
||||
-ifeq ($(1),0)
|
||||
-HLIB$(1)_H_$(3) = $$(HROOT$(1)_H_$(3))/lib
|
||||
-else
|
||||
HLIB$(1)_H_$(3) = $$(HROOT$(1)_H_$(3))/$$(CFG_LIBDIR_RELATIVE)
|
||||
-endif
|
||||
-endif
|
||||
|
||||
# Destinations of artifacts for target architectures
|
||||
TROOT$(1)_T_$(2)_H_$(3) = $$(HLIB$(1)_H_$(3))/rustlib/$(2)
|
||||
TBIN$(1)_T_$(2)_H_$(3) = $$(TROOT$(1)_T_$(2)_H_$(3))/bin
|
||||
TLIB$(1)_T_$(2)_H_$(3) = $$(TROOT$(1)_T_$(2)_H_$(3))/lib
|
||||
|
||||
+# Don't trust stage0, be explicit about libraries
|
||||
+# TODO: rather than specifying sysroot, we really want to tell which libdir to
|
||||
+# use (ie: the dir containing 'rustlib'). This would allow us to avoid
|
||||
+# passing the '-L' options.
|
||||
+ifeq ($(1),0)
|
||||
+RUSTFLAGS_S_$(1)_T_$(2)_H_$(3) += --sysroot "$$(HROOT$(1)_H_$(3))" \
|
||||
+ -L "$$(TLIB$(1)_T_$(2)_H_$(3))"
|
||||
+endif
|
||||
+
|
||||
# Preqrequisites for using the stageN compiler
|
||||
ifeq ($(1),0)
|
||||
HSREQ$(1)_H_$(3) = $$(HBIN$(1)_H_$(3))/rustc$$(X_$(3))
|
||||
@@ -495,6 +496,7 @@ STAGE$(1)_T_$(2)_H_$(3) := \
|
||||
$$(HBIN$(1)_H_$(3))/rustc$$(X_$(3)) \
|
||||
--cfg $$(CFGFLAG$(1)_T_$(2)_H_$(3)) \
|
||||
$$(CFG_RUSTC_FLAGS) $$(EXTRAFLAGS_STAGE$(1)) --target=$(2)) \
|
||||
+ $$(RUSTFLAGS_S_$(1)_T_$(2)_H_$(3)) \
|
||||
$$(RUSTC_FLAGS_$(2))
|
||||
|
||||
PERF_STAGE$(1)_T_$(2)_H_$(3) := \
|
||||
@@ -503,6 +505,7 @@ PERF_STAGE$(1)_T_$(2)_H_$(3) := \
|
||||
$$(HBIN$(1)_H_$(3))/rustc$$(X_$(3)) \
|
||||
--cfg $$(CFGFLAG$(1)_T_$(2)_H_$(3)) \
|
||||
$$(CFG_RUSTC_FLAGS) $$(EXTRAFLAGS_STAGE$(1)) --target=$(2)) \
|
||||
+ $$(RUSTFLAGS_S_$(1)_T_$(2)_H_$(3)) \
|
||||
$$(RUSTC_FLAGS_$(2))
|
||||
|
||||
endef
|
||||
--
|
||||
2.5.1
|
||||
|
||||
@@ -0,0 +1,27 @@
|
||||
From 977954fbe5a3c9d0b89652f852b174aa9ac0e0a4 Mon Sep 17 00:00:00 2001
|
||||
From: Cody P Schafer <dev@codyps.com>
|
||||
Date: Tue, 18 Nov 2014 13:48:14 -0500
|
||||
Subject: [PATCH 04/10] mk: add missing CFG_LIBDIR_RELATIVE
|
||||
|
||||
---
|
||||
mk/grammar.mk | 4 ++--
|
||||
1 file changed, 2 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/mk/grammar.mk b/mk/grammar.mk
|
||||
index d9c66e2..585206d 100644
|
||||
--- a/mk/grammar.mk
|
||||
+++ b/mk/grammar.mk
|
||||
@@ -11,8 +11,8 @@
|
||||
BG = $(CFG_BUILD_DIR)/grammar/
|
||||
SG = $(S)src/grammar/
|
||||
B = $(CFG_BUILD_DIR)/$(CFG_BUILD)/stage2/
|
||||
-L = $(B)lib/rustlib/$(CFG_BUILD)/lib
|
||||
-LD = $(CFG_BUILD)/stage2/lib/rustlib/$(CFG_BUILD)/lib/
|
||||
+L = $(B)$(CFG_LIBDIR_RELATIVE)/rustlib/$(CFG_BUILD)/lib
|
||||
+LD = $(CFG_BUILD)/stage2/$(CFG_LIBDIR_RELATIVE)/rustlib/$(CFG_BUILD)/lib/
|
||||
RUSTC = $(STAGE2_T_$(CFG_BUILD)_H_$(CFG_BUILD))
|
||||
ifeq ($(CFG_OSTYPE),apple-darwin)
|
||||
FLEX_LDFLAGS=-ll
|
||||
--
|
||||
2.5.1
|
||||
|
||||
@@ -0,0 +1,362 @@
|
||||
From 08aecf1062fd85207e9b5c688b84def523eb05a0 Mon Sep 17 00:00:00 2001
|
||||
From: Cody P Schafer <dev@codyps.com>
|
||||
Date: Mon, 24 Nov 2014 13:10:15 -0500
|
||||
Subject: [PATCH 05/10] configure: support --bindir, and extend libdir to
|
||||
non-blessed dirs
|
||||
|
||||
Adds --bindir, and:
|
||||
|
||||
Allows --bindir and --libdir to have multiple elements in their paths
|
||||
relative to sysroot, and allows libdir to end in an arbitrary directory
|
||||
(previously it was limited to lib, lib32, and lib64).
|
||||
|
||||
Note that this assumes absolute paths start with '/', which may break
|
||||
windows platforms
|
||||
---
|
||||
configure | 49 ++++++++++++++++------
|
||||
mk/host.mk | 6 ++-
|
||||
mk/main.mk | 11 +++++
|
||||
mk/perf.mk | 4 +-
|
||||
mk/prepare.mk | 4 +-
|
||||
src/librustc/metadata/filesearch.rs | 84 ++++++++++++++-----------------------
|
||||
src/librustc_trans/back/link.rs | 3 +-
|
||||
7 files changed, 90 insertions(+), 71 deletions(-)
|
||||
|
||||
diff --git a/configure b/configure
|
||||
index 2c8d785..d214382 100755
|
||||
--- a/configure
|
||||
+++ b/configure
|
||||
@@ -334,6 +334,31 @@ enable_if_not_disabled() {
|
||||
fi
|
||||
}
|
||||
|
||||
+abspath () {
|
||||
+ case "$1" in
|
||||
+ /*) echo "$1" ;;
|
||||
+ *) echo "$PWD/$1" ;;
|
||||
+ esac
|
||||
+}
|
||||
+
|
||||
+relpath () {
|
||||
+ local src=$(abspath "$1")
|
||||
+ local dst=$(abspath "$2")
|
||||
+ local common=$src
|
||||
+ local result=
|
||||
+
|
||||
+ # Start by checking if the whole src is common, then strip off pack
|
||||
+ # components until we find the common element.
|
||||
+ while [ "${dst#"$common"}" = "$dst" ]; do
|
||||
+ common=$(dirname "$common")
|
||||
+ result="../$result"
|
||||
+ done
|
||||
+
|
||||
+ local down="${dst#"$common"}"
|
||||
+ result="${result}${down#/}"
|
||||
+ echo "$result"
|
||||
+}
|
||||
+
|
||||
to_llvm_triple() {
|
||||
case $1 in
|
||||
i686-w64-mingw32) echo i686-pc-windows-gnu ;;
|
||||
@@ -626,6 +651,8 @@ putvar CFG_BUILD # Yes, this creates a duplicate entry, but the last one wins.
|
||||
CFG_HOST=$(to_llvm_triple $CFG_HOST)
|
||||
CFG_TARGET=$(to_llvm_triple $CFG_TARGET)
|
||||
|
||||
+CFG_LIBDIR_RELATIVE=lib
|
||||
+
|
||||
# On windows we just store the libraries in the bin directory because
|
||||
# there's no rpath. This is where the build system itself puts libraries;
|
||||
# --libdir is used to configure the installation directory.
|
||||
@@ -633,24 +660,21 @@ CFG_TARGET=$(to_llvm_triple $CFG_TARGET)
|
||||
if [ "$CFG_OSTYPE" = "pc-windows-gnu" ] || [ "$CFG_OSTYPE" = "pc-windows-msvc" ]
|
||||
then
|
||||
CFG_LIBDIR_RELATIVE=bin
|
||||
-else
|
||||
- CFG_LIBDIR_RELATIVE=lib
|
||||
fi
|
||||
|
||||
-valopt libdir "${CFG_PREFIX}/${CFG_LIBDIR_RELATIVE}" "install libraries (do not set it on windows platform)"
|
||||
+valopt libdir "${CFG_PREFIX}/${CFG_LIBDIR_RELATIVE}" "install libraries"
|
||||
|
||||
-case "$CFG_LIBDIR" in
|
||||
- "$CFG_PREFIX"/*) CAT_INC=2;;
|
||||
- "$CFG_PREFIX"*) CAT_INC=1;;
|
||||
- *)
|
||||
- err "libdir must begin with the prefix. Use --prefix to set it accordingly.";;
|
||||
-esac
|
||||
+CFG_BINDIR_RELATIVE=bin
|
||||
+valopt bindir "${CFG_PREFIX}/${CFG_BINDIR_RELATIVE}" "install binaries"
|
||||
|
||||
-CFG_LIBDIR_RELATIVE=`echo ${CFG_LIBDIR} | cut -c$((${#CFG_PREFIX}+${CAT_INC}))-`
|
||||
+# Determine libdir and bindir relative to prefix
|
||||
+step_msg "calculating relative paths to prefix = ${CFG_PREFIX}"
|
||||
+CFG_BINDIR_RELATIVE=$(relpath "${CFG_PREFIX}" "${CFG_BINDIR}")
|
||||
+CFG_LIBDIR_RELATIVE=$(relpath "${CFG_PREFIX}" "${CFG_LIBDIR}")
|
||||
|
||||
if ( [ "$CFG_OSTYPE" = "pc-windows-gnu" ] || [ "$CFG_OSTYPE" = "pc-windows-msvc" ] ) \
|
||||
- && [ "$CFG_LIBDIR_RELATIVE" != "bin" ]; then
|
||||
- err "libdir on windows should be set to 'bin'"
|
||||
+ && [ "$CFG_LIBDIR_RELATIVE" != "$CFG_BINDIR_RELATIVE" ]; then
|
||||
+ err "Windows builds currently require that LIBDIR == BINDIR (we have libdir{$CFG_LIBDIR_RELATIVE} != bindir{$CFG_BINDIR_RELATIVE} )"
|
||||
fi
|
||||
|
||||
if [ $HELP -eq 1 ]
|
||||
@@ -1685,6 +1709,7 @@ putvar CFG_PREFIX
|
||||
putvar CFG_HOST
|
||||
putvar CFG_TARGET
|
||||
putvar CFG_LIBDIR_RELATIVE
|
||||
+putvar CFG_BINDIR_RELATIVE
|
||||
putvar CFG_DISABLE_MANAGE_SUBMODULES
|
||||
putvar CFG_AARCH64_LINUX_ANDROID_NDK
|
||||
putvar CFG_ARM_LINUX_ANDROIDEABI_NDK
|
||||
diff --git a/mk/host.mk b/mk/host.mk
|
||||
index 59a0095..b8e8345 100644
|
||||
--- a/mk/host.mk
|
||||
+++ b/mk/host.mk
|
||||
@@ -59,9 +59,13 @@ endef
|
||||
# $(4) - the host triple (same as $(3))
|
||||
define CP_HOST_STAGE_N
|
||||
|
||||
-ifneq ($(CFG_LIBDIR_RELATIVE),bin)
|
||||
$$(HLIB$(2)_H_$(4))/:
|
||||
@mkdir -p $$@
|
||||
+
|
||||
+# Avoid redefinition warnings if libdir==bindir
|
||||
+ifneq ($(HBIN$(2)_H_$(4)),$(HLIB$(2)_H_$(4)))
|
||||
+$$(HBIN$(2)_H_$(4))/:
|
||||
+ @mkdir -p $$@
|
||||
endif
|
||||
|
||||
endef
|
||||
diff --git a/mk/main.mk b/mk/main.mk
|
||||
index d907628..6782bed 100644
|
||||
--- a/mk/main.mk
|
||||
+++ b/mk/main.mk
|
||||
@@ -338,7 +338,9 @@ export CFG_RELEASE_CHANNEL
|
||||
export CFG_LLVM_ROOT
|
||||
export CFG_PREFIX
|
||||
export CFG_LIBDIR
|
||||
+export CFG_BINDIR
|
||||
export CFG_LIBDIR_RELATIVE
|
||||
+export CFG_BINDIR_RELATIVE
|
||||
export CFG_DISABLE_INJECT_STD_VERSION
|
||||
ifdef CFG_DISABLE_UNSTABLE_FEATURES
|
||||
CFG_INFO := $(info cfg: disabling unstable features (CFG_DISABLE_UNSTABLE_FEATURES))
|
||||
@@ -368,7 +370,16 @@ define SREQ
|
||||
|
||||
# Destinations of artifacts for the host compiler
|
||||
HROOT$(1)_H_$(3) = $(3)/stage$(1)
|
||||
+
|
||||
+ifeq ($(1)-$(3),0-$$(CFG_BUILD))
|
||||
+# stage0 relative paths are fixed so we can bootstrap from snapshots
|
||||
+# (downloaded snapshots drop their rustc in HROOT/bin)
|
||||
+# libdir discrepancy is worked around with RUSTFLAGS below.
|
||||
HBIN$(1)_H_$(3) = $$(HROOT$(1)_H_$(3))/bin
|
||||
+else
|
||||
+HBIN$(1)_H_$(3) = $$(HROOT$(1)_H_$(3))/$$(CFG_BINDIR_RELATIVE)
|
||||
+endif
|
||||
+
|
||||
HLIB$(1)_H_$(3) = $$(HROOT$(1)_H_$(3))/$$(CFG_LIBDIR_RELATIVE)
|
||||
|
||||
# Destinations of artifacts for target architectures
|
||||
diff --git a/mk/perf.mk b/mk/perf.mk
|
||||
index 16cbaab..f8a354c 100644
|
||||
--- a/mk/perf.mk
|
||||
+++ b/mk/perf.mk
|
||||
@@ -10,13 +10,13 @@
|
||||
|
||||
|
||||
ifdef CFG_PERF_TOOL
|
||||
-rustc-perf$(X): $(CFG_BUILD)/stage2/bin/rustc$(X_$(CFG_BUILD))
|
||||
+rustc-perf$(X): $(CFG_BUILD)/stage2/$(CFG_BINDIR_RELATIVE)/rustc$(X_$(CFG_BUILD))
|
||||
@$(call E, perf compile: $@)
|
||||
$(PERF_STAGE2_T_$(CFG_BUILD)_H_$(CFG_BUILD)) \
|
||||
-o $@ $(COMPILER_CRATE) >rustc-perf.err 2>&1
|
||||
$(Q)rm -f $(LIBRUSTC_GLOB)
|
||||
else
|
||||
-rustc-perf$(X): $(CFG_BUILD)/stage2/bin/rustc$(X_$(CFG_BUILD))
|
||||
+rustc-perf$(X): $(CFG_BUILD)/stage2/$(CFG_BINDIR_RELATIVE)/rustc$(X_$(CFG_BUILD))
|
||||
$(Q)touch $@
|
||||
endif
|
||||
|
||||
diff --git a/mk/prepare.mk b/mk/prepare.mk
|
||||
index fe619cc..b8aa0cb 100644
|
||||
--- a/mk/prepare.mk
|
||||
+++ b/mk/prepare.mk
|
||||
@@ -186,10 +186,10 @@ INSTALL_DEBUGGER_SCRIPT_COMMANDS=$(if $(findstring windows,$(1)),\
|
||||
define DEF_PREPARE
|
||||
|
||||
prepare-base-$(1): PREPARE_SOURCE_DIR=$$(PREPARE_HOST)/stage$$(PREPARE_STAGE)
|
||||
-prepare-base-$(1): PREPARE_SOURCE_BIN_DIR=$$(PREPARE_SOURCE_DIR)/bin
|
||||
+prepare-base-$(1): PREPARE_SOURCE_BIN_DIR=$$(PREPARE_SOURCE_DIR)/$$(CFG_BINDIR_RELATIVE)
|
||||
prepare-base-$(1): PREPARE_SOURCE_LIB_DIR=$$(PREPARE_SOURCE_DIR)/$$(CFG_LIBDIR_RELATIVE)
|
||||
prepare-base-$(1): PREPARE_SOURCE_MAN_DIR=$$(S)/man
|
||||
-prepare-base-$(1): PREPARE_DEST_BIN_DIR=$$(PREPARE_DEST_DIR)/bin
|
||||
+prepare-base-$(1): PREPARE_DEST_BIN_DIR=$$(PREPARE_DEST_DIR)/$$(CFG_BINDIR_RELATIVE)
|
||||
prepare-base-$(1): PREPARE_DEST_LIB_DIR=$$(PREPARE_DEST_DIR)/$$(CFG_LIBDIR_RELATIVE)
|
||||
prepare-base-$(1): PREPARE_DEST_MAN_DIR=$$(PREPARE_DEST_DIR)/share/man/man1
|
||||
prepare-base-$(1): prepare-everything-$(1)
|
||||
diff --git a/src/librustc/metadata/filesearch.rs b/src/librustc/metadata/filesearch.rs
|
||||
index 311ab1c..1b03b1a 100644
|
||||
--- a/src/librustc/metadata/filesearch.rs
|
||||
+++ b/src/librustc/metadata/filesearch.rs
|
||||
@@ -68,8 +68,7 @@ impl<'a> FileSearch<'a> {
|
||||
if !found {
|
||||
let rustpath = rust_path();
|
||||
for path in &rustpath {
|
||||
- let tlib_path = make_rustpkg_lib_path(
|
||||
- self.sysroot, path, self.triple);
|
||||
+ let tlib_path = make_rustpkg_lib_path(path, self.triple);
|
||||
debug!("is {} in visited_dirs? {}", tlib_path.display(),
|
||||
visited_dirs.contains(&tlib_path));
|
||||
|
||||
@@ -96,7 +95,7 @@ impl<'a> FileSearch<'a> {
|
||||
where F: FnMut(&Path, PathKind) -> FileMatch
|
||||
{
|
||||
self.for_each_lib_search_path(|lib_search_path, kind| {
|
||||
- debug!("searching {}", lib_search_path.display());
|
||||
+ info!("searching {}", lib_search_path.display());
|
||||
match fs::read_dir(lib_search_path) {
|
||||
Ok(files) => {
|
||||
let files = files.filter_map(|p| p.ok().map(|s| s.path()))
|
||||
@@ -157,7 +156,7 @@ impl<'a> FileSearch<'a> {
|
||||
// Returns a list of directories where target-specific tool binaries are located.
|
||||
pub fn get_tools_search_paths(&self) -> Vec<PathBuf> {
|
||||
let mut p = PathBuf::from(self.sysroot);
|
||||
- p.push(&find_libdir(self.sysroot));
|
||||
+ p.push(libdir_str());
|
||||
p.push(&rustlibdir());
|
||||
p.push(&self.triple);
|
||||
p.push("bin");
|
||||
@@ -165,8 +164,8 @@ impl<'a> FileSearch<'a> {
|
||||
}
|
||||
}
|
||||
|
||||
-pub fn relative_target_lib_path(sysroot: &Path, target_triple: &str) -> PathBuf {
|
||||
- let mut p = PathBuf::from(&find_libdir(sysroot));
|
||||
+pub fn relative_target_lib_path(target_triple: &str) -> PathBuf {
|
||||
+ let mut p = PathBuf::from(&libdir_str());
|
||||
assert!(p.is_relative());
|
||||
p.push(&rustlibdir());
|
||||
p.push(target_triple);
|
||||
@@ -176,17 +175,28 @@ pub fn relative_target_lib_path(sysroot: &Path, target_triple: &str) -> PathBuf
|
||||
|
||||
fn make_target_lib_path(sysroot: &Path,
|
||||
target_triple: &str) -> PathBuf {
|
||||
- sysroot.join(&relative_target_lib_path(sysroot, target_triple))
|
||||
+ sysroot.join(&relative_target_lib_path(target_triple))
|
||||
}
|
||||
|
||||
-fn make_rustpkg_lib_path(sysroot: &Path,
|
||||
- dir: &Path,
|
||||
+fn make_rustpkg_lib_path(dir: &Path,
|
||||
triple: &str) -> PathBuf {
|
||||
- let mut p = dir.join(&find_libdir(sysroot));
|
||||
+ let mut p = dir.join(libdir_str());
|
||||
p.push(triple);
|
||||
p
|
||||
}
|
||||
|
||||
+pub fn bindir_relative_str() -> &'static str {
|
||||
+ env!("CFG_BINDIR_RELATIVE")
|
||||
+}
|
||||
+
|
||||
+pub fn bindir_relative_path() -> PathBuf {
|
||||
+ PathBuf::from(bindir_relative_str())
|
||||
+}
|
||||
+
|
||||
+pub fn libdir_str() -> &'static str {
|
||||
+ env!("CFG_LIBDIR_RELATIVE")
|
||||
+}
|
||||
+
|
||||
pub fn get_or_default_sysroot() -> PathBuf {
|
||||
// Follow symlinks. If the resolved path is relative, make it absolute.
|
||||
fn canonicalize(path: Option<PathBuf>) -> Option<PathBuf> {
|
||||
@@ -202,7 +212,18 @@ pub fn get_or_default_sysroot() -> PathBuf {
|
||||
}
|
||||
|
||||
match canonicalize(env::current_exe().ok()) {
|
||||
- Some(mut p) => { p.pop(); p.pop(); p }
|
||||
+ Some(mut p) => {
|
||||
+ // Remove the exe name
|
||||
+ p.pop();
|
||||
+ let mut rel = bindir_relative_path();
|
||||
+
|
||||
+ // Remove a number of elements equal to the number of elements in the bindir relative
|
||||
+ // path
|
||||
+ while rel.pop() {
|
||||
+ p.pop();
|
||||
+ }
|
||||
+ p
|
||||
+ }
|
||||
None => panic!("can't determine value for sysroot")
|
||||
}
|
||||
}
|
||||
@@ -257,47 +278,6 @@ pub fn rust_path() -> Vec<PathBuf> {
|
||||
env_rust_path
|
||||
}
|
||||
|
||||
-// The name of the directory rustc expects libraries to be located.
|
||||
-// On Unix should be "lib", on windows "bin"
|
||||
-#[cfg(unix)]
|
||||
-fn find_libdir(sysroot: &Path) -> String {
|
||||
- // FIXME: This is a quick hack to make the rustc binary able to locate
|
||||
- // Rust libraries in Linux environments where libraries might be installed
|
||||
- // to lib64/lib32. This would be more foolproof by basing the sysroot off
|
||||
- // of the directory where librustc is located, rather than where the rustc
|
||||
- // binary is.
|
||||
- //If --libdir is set during configuration to the value other than
|
||||
- // "lib" (i.e. non-default), this value is used (see issue #16552).
|
||||
-
|
||||
- match option_env!("CFG_LIBDIR_RELATIVE") {
|
||||
- Some(libdir) if libdir != "lib" => return libdir.to_string(),
|
||||
- _ => if sysroot.join(&primary_libdir_name()).join(&rustlibdir()).exists() {
|
||||
- return primary_libdir_name();
|
||||
- } else {
|
||||
- return secondary_libdir_name();
|
||||
- }
|
||||
- }
|
||||
-
|
||||
- #[cfg(target_pointer_width = "64")]
|
||||
- fn primary_libdir_name() -> String {
|
||||
- "lib64".to_string()
|
||||
- }
|
||||
-
|
||||
- #[cfg(target_pointer_width = "32")]
|
||||
- fn primary_libdir_name() -> String {
|
||||
- "lib32".to_string()
|
||||
- }
|
||||
-
|
||||
- fn secondary_libdir_name() -> String {
|
||||
- "lib".to_string()
|
||||
- }
|
||||
-}
|
||||
-
|
||||
-#[cfg(windows)]
|
||||
-fn find_libdir(_sysroot: &Path) -> String {
|
||||
- "bin".to_string()
|
||||
-}
|
||||
-
|
||||
// The name of rustc's own place to organize libraries.
|
||||
// Used to be "rustc", now the default is "rustlib"
|
||||
pub fn rustlibdir() -> String {
|
||||
diff --git a/src/librustc_trans/back/link.rs b/src/librustc_trans/back/link.rs
|
||||
index 5bdc76b..25dd2e6 100644
|
||||
--- a/src/librustc_trans/back/link.rs
|
||||
+++ b/src/librustc_trans/back/link.rs
|
||||
@@ -1011,11 +1011,10 @@ fn link_args(cmd: &mut Linker,
|
||||
// where extern libraries might live, based on the
|
||||
// addl_lib_search_paths
|
||||
if sess.opts.cg.rpath {
|
||||
- let sysroot = sess.sysroot();
|
||||
let target_triple = &sess.opts.target_triple;
|
||||
let mut get_install_prefix_lib_path = || {
|
||||
let install_prefix = option_env!("CFG_PREFIX").expect("CFG_PREFIX");
|
||||
- let tlib = filesearch::relative_target_lib_path(sysroot, target_triple);
|
||||
+ let tlib = filesearch::relative_target_lib_path(target_triple);
|
||||
let mut path = PathBuf::from(install_prefix);
|
||||
path.push(&tlib);
|
||||
|
||||
--
|
||||
2.5.1
|
||||
|
||||
@@ -0,0 +1,25 @@
|
||||
From 1aebe22b98f797765293bafc1f5e8990a742b291 Mon Sep 17 00:00:00 2001
|
||||
From: Cody P Schafer <dev@codyps.com>
|
||||
Date: Wed, 3 Dec 2014 19:15:19 -0500
|
||||
Subject: [PATCH 06/10] std/thread_local: workaround for NULL __dso_handle
|
||||
|
||||
---
|
||||
src/libstd/thread/local.rs | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/src/libstd/thread/local.rs b/src/libstd/thread/local.rs
|
||||
index 9a6d68a..37a0ea0 100644
|
||||
--- a/src/libstd/thread/local.rs
|
||||
+++ b/src/libstd/thread/local.rs
|
||||
@@ -337,7 +337,7 @@ mod imp {
|
||||
#[linkage = "extern_weak"]
|
||||
static __cxa_thread_atexit_impl: *const libc::c_void;
|
||||
}
|
||||
- if !__cxa_thread_atexit_impl.is_null() {
|
||||
+ if !__cxa_thread_atexit_impl.is_null() && !__dso_handle.is_null() {
|
||||
type F = unsafe extern fn(dtor: unsafe extern fn(*mut u8),
|
||||
arg: *mut u8,
|
||||
dso_handle: *mut u8) -> libc::c_int;
|
||||
--
|
||||
2.5.1
|
||||
|
||||
@@ -0,0 +1,43 @@
|
||||
From 564742fb9c94f9b8e7f6ad4ec34fd2254c337a09 Mon Sep 17 00:00:00 2001
|
||||
From: Cody P Schafer <dev@codyps.com>
|
||||
Date: Mon, 2 Mar 2015 13:34:59 -0500
|
||||
Subject: [PATCH 07/10] mk/install: use disable-rewrite-paths
|
||||
|
||||
This stops the install scripts from doing work we've already handled.
|
||||
|
||||
Path rewriting is only useful for prepackaged binary installers.
|
||||
---
|
||||
mk/install.mk | 8 ++++----
|
||||
1 file changed, 4 insertions(+), 4 deletions(-)
|
||||
|
||||
diff --git a/mk/install.mk b/mk/install.mk
|
||||
index cabc97a..273bb0e 100644
|
||||
--- a/mk/install.mk
|
||||
+++ b/mk/install.mk
|
||||
@@ -16,9 +16,9 @@ else
|
||||
$(Q)$(MAKE) prepare_install
|
||||
endif
|
||||
ifeq ($(CFG_DISABLE_DOCS),)
|
||||
- $(Q)cd tmp/empty_dir && sh ../../tmp/dist/$(DOC_PKG_NAME)-$(CFG_BUILD)/install.sh --prefix="$(DESTDIR)$(CFG_PREFIX)" --libdir="$(DESTDIR)$(CFG_LIBDIR)" --mandir="$(DESTDIR)$(CFG_MANDIR)"
|
||||
+ $(Q)cd tmp/empty_dir && sh ../../tmp/dist/$(DOC_PKG_NAME)-$(CFG_BUILD)/install.sh --prefix="$(DESTDIR)$(CFG_PREFIX)" --libdir="$(DESTDIR)$(CFG_LIBDIR)" --mandir="$(DESTDIR)$(CFG_MANDIR)" "$(MAYBE_DISABLE_VERIFY)" --disable-rewrite-paths
|
||||
endif
|
||||
- $(Q)cd tmp/empty_dir && sh ../../tmp/dist/$(PKG_NAME)-$(CFG_BUILD)/install.sh --prefix="$(DESTDIR)$(CFG_PREFIX)" --libdir="$(DESTDIR)$(CFG_LIBDIR)" --mandir="$(DESTDIR)$(CFG_MANDIR)"
|
||||
+ $(Q)cd tmp/empty_dir && sh ../../tmp/dist/$(PKG_NAME)-$(CFG_BUILD)/install.sh --prefix="$(DESTDIR)$(CFG_PREFIX)" --libdir="$(DESTDIR)$(CFG_LIBDIR)" --mandir="$(DESTDIR)$(CFG_MANDIR)" "$(MAYBE_DISABLE_VERIFY)" --disable-rewrite-paths
|
||||
# Remove tmp files because it's a decent amount of disk space
|
||||
$(Q)rm -R tmp/dist
|
||||
|
||||
@@ -32,9 +32,9 @@ else
|
||||
$(Q)$(MAKE) prepare_uninstall
|
||||
endif
|
||||
ifeq ($(CFG_DISABLE_DOCS),)
|
||||
- $(Q)cd tmp/empty_dir && sh ../../tmp/dist/$(DOC_PKG_NAME)-$(CFG_BUILD)/install.sh --uninstall --prefix="$(DESTDIR)$(CFG_PREFIX)" --libdir="$(DESTDIR)$(CFG_LIBDIR)" --mandir="$(DESTDIR)$(CFG_MANDIR)"
|
||||
+ $(Q)cd tmp/empty_dir && sh ../../tmp/dist/$(DOC_PKG_NAME)-$(CFG_BUILD)/install.sh --uninstall --prefix="$(DESTDIR)$(CFG_PREFIX)" --libdir="$(DESTDIR)$(CFG_LIBDIR)" --mandir="$(DESTDIR)$(CFG_MANDIR)" --disable-rewrite-paths
|
||||
endif
|
||||
- $(Q)cd tmp/empty_dir && sh ../../tmp/dist/$(PKG_NAME)-$(CFG_BUILD)/install.sh --uninstall --prefix="$(DESTDIR)$(CFG_PREFIX)" --libdir="$(DESTDIR)$(CFG_LIBDIR)" --mandir="$(DESTDIR)$(CFG_MANDIR)"
|
||||
+ $(Q)cd tmp/empty_dir && sh ../../tmp/dist/$(PKG_NAME)-$(CFG_BUILD)/install.sh --uninstall --prefix="$(DESTDIR)$(CFG_PREFIX)" --libdir="$(DESTDIR)$(CFG_LIBDIR)" --mandir="$(DESTDIR)$(CFG_MANDIR)" --disable-rewrite-paths
|
||||
# Remove tmp files because it's a decent amount of disk space
|
||||
$(Q)rm -R tmp/dist
|
||||
|
||||
--
|
||||
2.5.1
|
||||
|
||||
@@ -0,0 +1,40 @@
|
||||
From 24fc19c57309b0c23c34f22b87796bb8aee4efa7 Mon Sep 17 00:00:00 2001
|
||||
From: Cody P Schafer <dev@codyps.com>
|
||||
Date: Tue, 26 May 2015 12:09:36 -0400
|
||||
Subject: [PATCH 08/10] install: disable ldconfig
|
||||
|
||||
---
|
||||
mk/install.mk | 8 ++++----
|
||||
1 file changed, 4 insertions(+), 4 deletions(-)
|
||||
|
||||
diff --git a/mk/install.mk b/mk/install.mk
|
||||
index 273bb0e..58cfc99 100644
|
||||
--- a/mk/install.mk
|
||||
+++ b/mk/install.mk
|
||||
@@ -16,9 +16,9 @@ else
|
||||
$(Q)$(MAKE) prepare_install
|
||||
endif
|
||||
ifeq ($(CFG_DISABLE_DOCS),)
|
||||
- $(Q)cd tmp/empty_dir && sh ../../tmp/dist/$(DOC_PKG_NAME)-$(CFG_BUILD)/install.sh --prefix="$(DESTDIR)$(CFG_PREFIX)" --libdir="$(DESTDIR)$(CFG_LIBDIR)" --mandir="$(DESTDIR)$(CFG_MANDIR)" "$(MAYBE_DISABLE_VERIFY)" --disable-rewrite-paths
|
||||
+ $(Q)cd tmp/empty_dir && sh ../../tmp/dist/$(DOC_PKG_NAME)-$(CFG_BUILD)/install.sh --prefix="$(DESTDIR)$(CFG_PREFIX)" --libdir="$(DESTDIR)$(CFG_LIBDIR)" --mandir="$(DESTDIR)$(CFG_MANDIR)" "$(MAYBE_DISABLE_VERIFY)" --disable-rewrite-paths --disable-ldconfig
|
||||
endif
|
||||
- $(Q)cd tmp/empty_dir && sh ../../tmp/dist/$(PKG_NAME)-$(CFG_BUILD)/install.sh --prefix="$(DESTDIR)$(CFG_PREFIX)" --libdir="$(DESTDIR)$(CFG_LIBDIR)" --mandir="$(DESTDIR)$(CFG_MANDIR)" "$(MAYBE_DISABLE_VERIFY)" --disable-rewrite-paths
|
||||
+ $(Q)cd tmp/empty_dir && sh ../../tmp/dist/$(PKG_NAME)-$(CFG_BUILD)/install.sh --prefix="$(DESTDIR)$(CFG_PREFIX)" --libdir="$(DESTDIR)$(CFG_LIBDIR)" --mandir="$(DESTDIR)$(CFG_MANDIR)" "$(MAYBE_DISABLE_VERIFY)" --disable-rewrite-paths --disable-ldconfig
|
||||
# Remove tmp files because it's a decent amount of disk space
|
||||
$(Q)rm -R tmp/dist
|
||||
|
||||
@@ -32,9 +32,9 @@ else
|
||||
$(Q)$(MAKE) prepare_uninstall
|
||||
endif
|
||||
ifeq ($(CFG_DISABLE_DOCS),)
|
||||
- $(Q)cd tmp/empty_dir && sh ../../tmp/dist/$(DOC_PKG_NAME)-$(CFG_BUILD)/install.sh --uninstall --prefix="$(DESTDIR)$(CFG_PREFIX)" --libdir="$(DESTDIR)$(CFG_LIBDIR)" --mandir="$(DESTDIR)$(CFG_MANDIR)" --disable-rewrite-paths
|
||||
+ $(Q)cd tmp/empty_dir && sh ../../tmp/dist/$(DOC_PKG_NAME)-$(CFG_BUILD)/install.sh --uninstall --prefix="$(DESTDIR)$(CFG_PREFIX)" --libdir="$(DESTDIR)$(CFG_LIBDIR)" --mandir="$(DESTDIR)$(CFG_MANDIR)" --disable-rewrite-paths --disable-ldconfig
|
||||
endif
|
||||
- $(Q)cd tmp/empty_dir && sh ../../tmp/dist/$(PKG_NAME)-$(CFG_BUILD)/install.sh --uninstall --prefix="$(DESTDIR)$(CFG_PREFIX)" --libdir="$(DESTDIR)$(CFG_LIBDIR)" --mandir="$(DESTDIR)$(CFG_MANDIR)" --disable-rewrite-paths
|
||||
+ $(Q)cd tmp/empty_dir && sh ../../tmp/dist/$(PKG_NAME)-$(CFG_BUILD)/install.sh --uninstall --prefix="$(DESTDIR)$(CFG_PREFIX)" --libdir="$(DESTDIR)$(CFG_LIBDIR)" --mandir="$(DESTDIR)$(CFG_MANDIR)" --disable-rewrite-paths --disable-ldconfig
|
||||
# Remove tmp files because it's a decent amount of disk space
|
||||
$(Q)rm -R tmp/dist
|
||||
|
||||
--
|
||||
2.5.1
|
||||
|
||||
@@ -0,0 +1,28 @@
|
||||
From ffacbea82a7e03fadc05d31313e2bbd3e10388fb Mon Sep 17 00:00:00 2001
|
||||
From: Steven Walter <swalter@lexmark.com>
|
||||
Date: Tue, 7 Jul 2015 14:57:42 -0400
|
||||
Subject: [PATCH 09/10] Remove crate metadata from symbol hashing
|
||||
|
||||
---
|
||||
src/librustc_trans/back/link.rs | 5 -----
|
||||
1 file changed, 5 deletions(-)
|
||||
|
||||
diff --git a/src/librustc_trans/back/link.rs b/src/librustc_trans/back/link.rs
|
||||
index 25dd2e6..d203d07 100644
|
||||
--- a/src/librustc_trans/back/link.rs
|
||||
+++ b/src/librustc_trans/back/link.rs
|
||||
@@ -206,11 +206,6 @@ fn symbol_hash<'tcx>(tcx: &ty::ctxt<'tcx>,
|
||||
symbol_hasher.reset();
|
||||
symbol_hasher.input_str(&link_meta.crate_name);
|
||||
symbol_hasher.input_str("-");
|
||||
- symbol_hasher.input_str(link_meta.crate_hash.as_str());
|
||||
- for meta in tcx.sess.crate_metadata.borrow().iter() {
|
||||
- symbol_hasher.input_str(&meta[..]);
|
||||
- }
|
||||
- symbol_hasher.input_str("-");
|
||||
symbol_hasher.input_str(&encoder::encoded_ty(tcx, t));
|
||||
// Prefix with 'h' so that it never blends into adjacent digits
|
||||
let mut hash = String::from("h");
|
||||
--
|
||||
2.5.1
|
||||
|
||||
@@ -0,0 +1,36 @@
|
||||
From 053afad02e46b0cb62569018f07f7430ebf9afc5 Mon Sep 17 00:00:00 2001
|
||||
From: Cody P Schafer <dev@codyps.com>
|
||||
Date: Wed, 26 Aug 2015 11:21:36 -0400
|
||||
Subject: [PATCH 10/10] mk: tell rustc that we're only looking for native libs
|
||||
in the LLVM_LIBDIR
|
||||
|
||||
This fixes the case where we try to re-build & re-install rust to the
|
||||
same prefix (without uninstalling) while using an llvm-root that is the
|
||||
same as the prefix.
|
||||
|
||||
Without this, builds like that fail with:
|
||||
'error: multiple dylib candidates for `std` found'
|
||||
|
||||
See https://github.com/jmesmon/meta-rust/issues/6 for some details.
|
||||
|
||||
May also be related to #20342.
|
||||
---
|
||||
mk/main.mk | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/mk/main.mk b/mk/main.mk
|
||||
index 6782bed..63b4fef 100644
|
||||
--- a/mk/main.mk
|
||||
+++ b/mk/main.mk
|
||||
@@ -294,7 +294,7 @@ LLVM_VERSION_$(1)=$$(shell "$$(LLVM_CONFIG_$(1))" --version)
|
||||
LLVM_BINDIR_$(1)=$$(shell "$$(LLVM_CONFIG_$(1))" --bindir)
|
||||
LLVM_INCDIR_$(1)=$$(shell "$$(LLVM_CONFIG_$(1))" --includedir)
|
||||
LLVM_LIBDIR_$(1)=$$(shell "$$(LLVM_CONFIG_$(1))" --libdir)
|
||||
-LLVM_LIBDIR_RUSTFLAGS_$(1)=-L "$$(LLVM_LIBDIR_$(1))"
|
||||
+LLVM_LIBDIR_RUSTFLAGS_$(1)=-L native="$$(LLVM_LIBDIR_$(1))"
|
||||
LLVM_LDFLAGS_$(1)=$$(shell "$$(LLVM_CONFIG_$(1))" --ldflags)
|
||||
ifeq ($$(findstring freebsd,$(1)),freebsd)
|
||||
# On FreeBSD, it may search wrong headers (that are for pre-installed LLVM),
|
||||
--
|
||||
2.5.1
|
||||
|
||||
@@ -0,0 +1,27 @@
|
||||
From 237f665afaf7ec35f067ede4c09a013e86ad12c4 Mon Sep 17 00:00:00 2001
|
||||
From: Cody P Schafer <dev@codyps.com>
|
||||
Date: Sat, 15 Nov 2014 20:12:48 -0500
|
||||
Subject: [PATCH 1/8] platform.mk: avoid choking on i586
|
||||
|
||||
---
|
||||
mk/platform.mk | 4 +++-
|
||||
1 file changed, 3 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/mk/platform.mk b/mk/platform.mk
|
||||
index 8a5e58c..e2c3d8f 100644
|
||||
--- a/mk/platform.mk
|
||||
+++ b/mk/platform.mk
|
||||
@@ -14,7 +14,9 @@
|
||||
# would create a variable HOST_i686-darwin-macos with the value
|
||||
# i386.
|
||||
define DEF_HOST_VAR
|
||||
- HOST_$(1) = $(subst i686,i386,$(word 1,$(subst -, ,$(1))))
|
||||
+ HOST_$(1) = $(subst i686,i386,\
|
||||
+ $(subst i586,i386,\
|
||||
+ $(word 1,$(subst -, ,$(1)))))
|
||||
endef
|
||||
$(foreach t,$(CFG_TARGET),$(eval $(call DEF_HOST_VAR,$(t))))
|
||||
$(foreach t,$(CFG_TARGET),$(info cfg: host for $(t) is $(HOST_$(t))))
|
||||
--
|
||||
2.4.3
|
||||
|
||||
@@ -0,0 +1,109 @@
|
||||
From 221ff5acf7b3b176882908d2f7010784614005e8 Mon Sep 17 00:00:00 2001
|
||||
From: Cody P Schafer <dev@codyps.com>
|
||||
Date: Tue, 18 Nov 2014 01:40:21 -0500
|
||||
Subject: [PATCH 2/8] Target: add default target.json path:
|
||||
$libdir/rust/targets
|
||||
|
||||
---
|
||||
src/librustc/session/config.rs | 6 +++---
|
||||
src/librustc/session/mod.rs | 8 ++++++--
|
||||
src/librustc_back/target/mod.rs | 14 +++++++++++---
|
||||
3 files changed, 20 insertions(+), 8 deletions(-)
|
||||
|
||||
diff --git a/src/librustc/session/config.rs b/src/librustc/session/config.rs
|
||||
index c6ce3a2..51152c7 100644
|
||||
--- a/src/librustc/session/config.rs
|
||||
+++ b/src/librustc/session/config.rs
|
||||
@@ -38,7 +38,7 @@ use getopts;
|
||||
use std::collections::HashMap;
|
||||
use std::env;
|
||||
use std::fmt;
|
||||
-use std::path::PathBuf;
|
||||
+use std::path::{Path, PathBuf};
|
||||
|
||||
use llvm;
|
||||
|
||||
@@ -651,8 +651,8 @@ pub fn build_configuration(sess: &Session) -> ast::CrateConfig {
|
||||
v
|
||||
}
|
||||
|
||||
-pub fn build_target_config(opts: &Options, sp: &SpanHandler) -> Config {
|
||||
- let target = match Target::search(&opts.target_triple) {
|
||||
+pub fn build_target_config(sysroot: &Path, opts: &Options, sp: &SpanHandler) -> Config {
|
||||
+ let target = match Target::search(sysroot, &opts.target_triple[..]) {
|
||||
Ok(t) => t,
|
||||
Err(e) => {
|
||||
sp.handler().fatal(&format!("Error loading target specification: {}", e));
|
||||
diff --git a/src/librustc/session/mod.rs b/src/librustc/session/mod.rs
|
||||
index 6b5f587..4432440 100644
|
||||
--- a/src/librustc/session/mod.rs
|
||||
+++ b/src/librustc/session/mod.rs
|
||||
@@ -381,14 +381,18 @@ pub fn build_session_(sopts: config::Options,
|
||||
local_crate_source_file: Option<PathBuf>,
|
||||
span_diagnostic: diagnostic::SpanHandler)
|
||||
-> Session {
|
||||
- let host = match Target::search(config::host_triple()) {
|
||||
+ let sysroot = match sopts.maybe_sysroot {
|
||||
+ Some(ref x) => PathBuf::from(x),
|
||||
+ None => filesearch::get_or_default_sysroot()
|
||||
+ };
|
||||
+ let host = match Target::search(&sysroot, config::host_triple()) {
|
||||
Ok(t) => t,
|
||||
Err(e) => {
|
||||
span_diagnostic.handler()
|
||||
.fatal(&format!("Error loading host specification: {}", e));
|
||||
}
|
||||
};
|
||||
- let target_cfg = config::build_target_config(&sopts, &span_diagnostic);
|
||||
+ let target_cfg = config::build_target_config(&sysroot, &sopts, &span_diagnostic);
|
||||
let p_s = parse::ParseSess::with_span_handler(span_diagnostic);
|
||||
let default_sysroot = match sopts.maybe_sysroot {
|
||||
Some(_) => None,
|
||||
diff --git a/src/librustc_back/target/mod.rs b/src/librustc_back/target/mod.rs
|
||||
index 402fbcd..a211b84 100644
|
||||
--- a/src/librustc_back/target/mod.rs
|
||||
+++ b/src/librustc_back/target/mod.rs
|
||||
@@ -49,6 +49,8 @@ use serialize::json::Json;
|
||||
use std::default::Default;
|
||||
use std::io::prelude::*;
|
||||
use syntax::{diagnostic, abi};
|
||||
+use std::borrow::ToOwned;
|
||||
+use std::path::Path;
|
||||
|
||||
mod android_base;
|
||||
mod apple_base;
|
||||
@@ -306,12 +308,13 @@ impl Target {
|
||||
///
|
||||
/// The error string could come from any of the APIs called, including
|
||||
/// filesystem access and JSON decoding.
|
||||
- pub fn search(target: &str) -> Result<Target, String> {
|
||||
+ pub fn search(sysroot: &Path, target: &str) -> Result<Target, String> {
|
||||
use std::env;
|
||||
use std::ffi::OsString;
|
||||
use std::fs::File;
|
||||
use std::path::{Path, PathBuf};
|
||||
use serialize::json;
|
||||
+ use std::iter::IntoIterator;
|
||||
|
||||
fn load_file(path: &Path) -> Result<Target, String> {
|
||||
let mut f = try!(File::open(path).map_err(|e| e.to_string()));
|
||||
@@ -400,9 +403,14 @@ impl Target {
|
||||
let target_path = env::var_os("RUST_TARGET_PATH")
|
||||
.unwrap_or(OsString::new());
|
||||
|
||||
- // FIXME 16351: add a sane default search path?
|
||||
+ let mut default_path = sysroot.to_owned();
|
||||
+ default_path.push(env!("CFG_LIBDIR_RELATIVE"));
|
||||
+ default_path.push("rustlib");
|
||||
|
||||
- for dir in env::split_paths(&target_path) {
|
||||
+ let paths = env::split_paths(&target_path)
|
||||
+ .chain(Some(default_path).into_iter());
|
||||
+
|
||||
+ for dir in paths {
|
||||
let p = dir.join(&path);
|
||||
if p.is_file() {
|
||||
return load_file(&p);
|
||||
--
|
||||
2.4.3
|
||||
|
||||
@@ -0,0 +1,67 @@
|
||||
From 057d6be30ff1437a53132175720c96fa93826a08 Mon Sep 17 00:00:00 2001
|
||||
From: Cody P Schafer <dev@codyps.com>
|
||||
Date: Tue, 18 Nov 2014 14:52:56 -0500
|
||||
Subject: [PATCH 3/8] mk: for stage0, use RUSTFLAGS to override target libs dir
|
||||
|
||||
Setting HLIB specially for stage0 (and even more specially for windows)
|
||||
also affects the location we place TLIB. To keep the TLIBs we build in
|
||||
the place requested by configure, use '-L' and '--sysroot' to point
|
||||
stage0-rustc at the appropriate location.
|
||||
---
|
||||
mk/main.mk | 19 +++++++++++--------
|
||||
1 file changed, 11 insertions(+), 8 deletions(-)
|
||||
|
||||
diff --git a/mk/main.mk b/mk/main.mk
|
||||
index 3926119..165afc3 100644
|
||||
--- a/mk/main.mk
|
||||
+++ b/mk/main.mk
|
||||
@@ -370,21 +370,22 @@ define SREQ
|
||||
# Destinations of artifacts for the host compiler
|
||||
HROOT$(1)_H_$(3) = $(3)/stage$(1)
|
||||
HBIN$(1)_H_$(3) = $$(HROOT$(1)_H_$(3))/bin
|
||||
-ifeq ($$(CFG_WINDOWSY_$(3)),1)
|
||||
-HLIB$(1)_H_$(3) = $$(HROOT$(1)_H_$(3))/$$(CFG_LIBDIR_RELATIVE)
|
||||
-else
|
||||
-ifeq ($(1),0)
|
||||
-HLIB$(1)_H_$(3) = $$(HROOT$(1)_H_$(3))/lib
|
||||
-else
|
||||
HLIB$(1)_H_$(3) = $$(HROOT$(1)_H_$(3))/$$(CFG_LIBDIR_RELATIVE)
|
||||
-endif
|
||||
-endif
|
||||
|
||||
# Destinations of artifacts for target architectures
|
||||
TROOT$(1)_T_$(2)_H_$(3) = $$(HLIB$(1)_H_$(3))/rustlib/$(2)
|
||||
TBIN$(1)_T_$(2)_H_$(3) = $$(TROOT$(1)_T_$(2)_H_$(3))/bin
|
||||
TLIB$(1)_T_$(2)_H_$(3) = $$(TROOT$(1)_T_$(2)_H_$(3))/lib
|
||||
|
||||
+# Don't trust stage0, be explicit about libraries
|
||||
+# TODO: rather than specifying sysroot, we really want to tell which libdir to
|
||||
+# use (ie: the dir containing 'rustlib'). This would allow us to avoid
|
||||
+# passing the '-L' options.
|
||||
+ifeq ($(1),0)
|
||||
+RUSTFLAGS_S_$(1)_T_$(2)_H_$(3) += --sysroot "$$(HROOT$(1)_H_$(3))" \
|
||||
+ -L "$$(TLIB$(1)_T_$(2)_H_$(3))"
|
||||
+endif
|
||||
+
|
||||
# Preqrequisites for using the stageN compiler
|
||||
ifeq ($(1),0)
|
||||
HSREQ$(1)_H_$(3) = $$(HBIN$(1)_H_$(3))/rustc$$(X_$(3))
|
||||
@@ -496,6 +497,7 @@ STAGE$(1)_T_$(2)_H_$(3) := \
|
||||
$$(HBIN$(1)_H_$(3))/rustc$$(X_$(3)) \
|
||||
--cfg $$(CFGFLAG$(1)_T_$(2)_H_$(3)) \
|
||||
$$(CFG_RUSTC_FLAGS) $$(EXTRAFLAGS_STAGE$(1)) --target=$(2)) \
|
||||
+ $$(RUSTFLAGS_S_$(1)_T_$(2)_H_$(3)) \
|
||||
$$(RUSTC_FLAGS_$(2))
|
||||
|
||||
PERF_STAGE$(1)_T_$(2)_H_$(3) := \
|
||||
@@ -504,6 +506,7 @@ PERF_STAGE$(1)_T_$(2)_H_$(3) := \
|
||||
$$(HBIN$(1)_H_$(3))/rustc$$(X_$(3)) \
|
||||
--cfg $$(CFGFLAG$(1)_T_$(2)_H_$(3)) \
|
||||
$$(CFG_RUSTC_FLAGS) $$(EXTRAFLAGS_STAGE$(1)) --target=$(2)) \
|
||||
+ $$(RUSTFLAGS_S_$(1)_T_$(2)_H_$(3)) \
|
||||
$$(RUSTC_FLAGS_$(2))
|
||||
|
||||
endef
|
||||
--
|
||||
2.4.3
|
||||
|
||||
@@ -0,0 +1,27 @@
|
||||
From af95f47a39a91a3e4a58b1df6c48bc4e010520c6 Mon Sep 17 00:00:00 2001
|
||||
From: Cody P Schafer <dev@codyps.com>
|
||||
Date: Tue, 18 Nov 2014 13:48:14 -0500
|
||||
Subject: [PATCH 4/8] mk: add missing CFG_LIBDIR_RELATIVE
|
||||
|
||||
---
|
||||
mk/grammar.mk | 4 ++--
|
||||
1 file changed, 2 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/mk/grammar.mk b/mk/grammar.mk
|
||||
index d9c66e2..585206d 100644
|
||||
--- a/mk/grammar.mk
|
||||
+++ b/mk/grammar.mk
|
||||
@@ -11,8 +11,8 @@
|
||||
BG = $(CFG_BUILD_DIR)/grammar/
|
||||
SG = $(S)src/grammar/
|
||||
B = $(CFG_BUILD_DIR)/$(CFG_BUILD)/stage2/
|
||||
-L = $(B)lib/rustlib/$(CFG_BUILD)/lib
|
||||
-LD = $(CFG_BUILD)/stage2/lib/rustlib/$(CFG_BUILD)/lib/
|
||||
+L = $(B)$(CFG_LIBDIR_RELATIVE)/rustlib/$(CFG_BUILD)/lib
|
||||
+LD = $(CFG_BUILD)/stage2/$(CFG_LIBDIR_RELATIVE)/rustlib/$(CFG_BUILD)/lib/
|
||||
RUSTC = $(STAGE2_T_$(CFG_BUILD)_H_$(CFG_BUILD))
|
||||
ifeq ($(CFG_OSTYPE),apple-darwin)
|
||||
FLEX_LDFLAGS=-ll
|
||||
--
|
||||
2.4.3
|
||||
|
||||
@@ -0,0 +1,362 @@
|
||||
From 64dcf50a8a0f3aaf37ec6e4fe6143d0832592c05 Mon Sep 17 00:00:00 2001
|
||||
From: Cody P Schafer <dev@codyps.com>
|
||||
Date: Mon, 24 Nov 2014 13:10:15 -0500
|
||||
Subject: [PATCH 5/8] configure: support --bindir, and extend libdir to
|
||||
non-blessed dirs
|
||||
|
||||
Adds --bindir, and:
|
||||
|
||||
Allows --bindir and --libdir to have multiple elements in their paths
|
||||
relative to sysroot, and allows libdir to end in an arbitrary directory
|
||||
(previously it was limited to lib, lib32, and lib64).
|
||||
|
||||
Note that this assumes absolute paths start with '/', which may break
|
||||
windows platforms
|
||||
---
|
||||
configure | 49 ++++++++++++++++------
|
||||
mk/host.mk | 6 ++-
|
||||
mk/main.mk | 11 +++++
|
||||
mk/perf.mk | 4 +-
|
||||
mk/prepare.mk | 4 +-
|
||||
src/librustc/metadata/filesearch.rs | 84 ++++++++++++++-----------------------
|
||||
src/librustc_trans/back/link.rs | 3 +-
|
||||
7 files changed, 90 insertions(+), 71 deletions(-)
|
||||
|
||||
diff --git a/configure b/configure
|
||||
index 891f524..441793c 100755
|
||||
--- a/configure
|
||||
+++ b/configure
|
||||
@@ -323,6 +323,31 @@ envopt() {
|
||||
fi
|
||||
}
|
||||
|
||||
+abspath () {
|
||||
+ case "$1" in
|
||||
+ /*) echo "$1" ;;
|
||||
+ *) echo "$PWD/$1" ;;
|
||||
+ esac
|
||||
+}
|
||||
+
|
||||
+relpath () {
|
||||
+ local src=$(abspath "$1")
|
||||
+ local dst=$(abspath "$2")
|
||||
+ local common=$src
|
||||
+ local result=
|
||||
+
|
||||
+ # Start by checking if the whole src is common, then strip off pack
|
||||
+ # components until we find the common element.
|
||||
+ while [ "${dst#"$common"}" = "$dst" ]; do
|
||||
+ common=$(dirname "$common")
|
||||
+ result="../$result"
|
||||
+ done
|
||||
+
|
||||
+ local down="${dst#"$common"}"
|
||||
+ result="${result}${down#/}"
|
||||
+ echo "$result"
|
||||
+}
|
||||
+
|
||||
to_llvm_triple() {
|
||||
case $1 in
|
||||
i686-w64-mingw32) echo i686-pc-windows-gnu ;;
|
||||
@@ -609,6 +634,8 @@ putvar CFG_BUILD # Yes, this creates a duplicate entry, but the last one wins.
|
||||
CFG_HOST=$(to_llvm_triple $CFG_HOST)
|
||||
CFG_TARGET=$(to_llvm_triple $CFG_TARGET)
|
||||
|
||||
+CFG_LIBDIR_RELATIVE=lib
|
||||
+
|
||||
# On windows we just store the libraries in the bin directory because
|
||||
# there's no rpath. This is where the build system itself puts libraries;
|
||||
# --libdir is used to configure the installation directory.
|
||||
@@ -616,24 +643,21 @@ CFG_TARGET=$(to_llvm_triple $CFG_TARGET)
|
||||
if [ "$CFG_OSTYPE" = "pc-windows-gnu" ] || [ "$CFG_OSTYPE" = "pc-windows-msvc" ]
|
||||
then
|
||||
CFG_LIBDIR_RELATIVE=bin
|
||||
-else
|
||||
- CFG_LIBDIR_RELATIVE=lib
|
||||
fi
|
||||
|
||||
-valopt libdir "${CFG_PREFIX}/${CFG_LIBDIR_RELATIVE}" "install libraries (do not set it on windows platform)"
|
||||
+valopt libdir "${CFG_PREFIX}/${CFG_LIBDIR_RELATIVE}" "install libraries"
|
||||
|
||||
-case "$CFG_LIBDIR" in
|
||||
- "$CFG_PREFIX"/*) CAT_INC=2;;
|
||||
- "$CFG_PREFIX"*) CAT_INC=1;;
|
||||
- *)
|
||||
- err "libdir must begin with the prefix. Use --prefix to set it accordingly.";;
|
||||
-esac
|
||||
+CFG_BINDIR_RELATIVE=bin
|
||||
+valopt bindir "${CFG_PREFIX}/${CFG_BINDIR_RELATIVE}" "install binaries"
|
||||
|
||||
-CFG_LIBDIR_RELATIVE=`echo ${CFG_LIBDIR} | cut -c$((${#CFG_PREFIX}+${CAT_INC}))-`
|
||||
+# Determine libdir and bindir relative to prefix
|
||||
+step_msg "calculating relative paths to prefix = ${CFG_PREFIX}"
|
||||
+CFG_BINDIR_RELATIVE=$(relpath "${CFG_PREFIX}" "${CFG_BINDIR}")
|
||||
+CFG_LIBDIR_RELATIVE=$(relpath "${CFG_PREFIX}" "${CFG_LIBDIR}")
|
||||
|
||||
if ( [ "$CFG_OSTYPE" = "pc-windows-gnu" ] || [ "$CFG_OSTYPE" = "pc-windows-msvc" ] ) \
|
||||
- && [ "$CFG_LIBDIR_RELATIVE" != "bin" ]; then
|
||||
- err "libdir on windows should be set to 'bin'"
|
||||
+ && [ "$CFG_LIBDIR_RELATIVE" != "$CFG_BINDIR_RELATIVE" ]; then
|
||||
+ err "Windows builds currently require that LIBDIR == BINDIR (we have libdir{$CFG_LIBDIR_RELATIVE} != bindir{$CFG_BINDIR_RELATIVE} )"
|
||||
fi
|
||||
|
||||
if [ $HELP -eq 1 ]
|
||||
@@ -1588,6 +1612,7 @@ putvar CFG_PREFIX
|
||||
putvar CFG_HOST
|
||||
putvar CFG_TARGET
|
||||
putvar CFG_LIBDIR_RELATIVE
|
||||
+putvar CFG_BINDIR_RELATIVE
|
||||
putvar CFG_DISABLE_MANAGE_SUBMODULES
|
||||
putvar CFG_ANDROID_CROSS_PATH
|
||||
putvar CFG_MANDIR
|
||||
diff --git a/mk/host.mk b/mk/host.mk
|
||||
index 59a0095..b8e8345 100644
|
||||
--- a/mk/host.mk
|
||||
+++ b/mk/host.mk
|
||||
@@ -59,9 +59,13 @@ endef
|
||||
# $(4) - the host triple (same as $(3))
|
||||
define CP_HOST_STAGE_N
|
||||
|
||||
-ifneq ($(CFG_LIBDIR_RELATIVE),bin)
|
||||
$$(HLIB$(2)_H_$(4))/:
|
||||
@mkdir -p $$@
|
||||
+
|
||||
+# Avoid redefinition warnings if libdir==bindir
|
||||
+ifneq ($(HBIN$(2)_H_$(4)),$(HLIB$(2)_H_$(4)))
|
||||
+$$(HBIN$(2)_H_$(4))/:
|
||||
+ @mkdir -p $$@
|
||||
endif
|
||||
|
||||
endef
|
||||
diff --git a/mk/main.mk b/mk/main.mk
|
||||
index 165afc3..33f9545 100644
|
||||
--- a/mk/main.mk
|
||||
+++ b/mk/main.mk
|
||||
@@ -339,7 +339,9 @@ export CFG_RELEASE_CHANNEL
|
||||
export CFG_LLVM_ROOT
|
||||
export CFG_PREFIX
|
||||
export CFG_LIBDIR
|
||||
+export CFG_BINDIR
|
||||
export CFG_LIBDIR_RELATIVE
|
||||
+export CFG_BINDIR_RELATIVE
|
||||
export CFG_DISABLE_INJECT_STD_VERSION
|
||||
ifdef CFG_DISABLE_UNSTABLE_FEATURES
|
||||
CFG_INFO := $(info cfg: disabling unstable features (CFG_DISABLE_UNSTABLE_FEATURES))
|
||||
@@ -369,7 +371,16 @@ define SREQ
|
||||
|
||||
# Destinations of artifacts for the host compiler
|
||||
HROOT$(1)_H_$(3) = $(3)/stage$(1)
|
||||
+
|
||||
+ifeq ($(1)-$(3),0-$$(CFG_BUILD))
|
||||
+# stage0 relative paths are fixed so we can bootstrap from snapshots
|
||||
+# (downloaded snapshots drop their rustc in HROOT/bin)
|
||||
+# libdir discrepancy is worked around with RUSTFLAGS below.
|
||||
HBIN$(1)_H_$(3) = $$(HROOT$(1)_H_$(3))/bin
|
||||
+else
|
||||
+HBIN$(1)_H_$(3) = $$(HROOT$(1)_H_$(3))/$$(CFG_BINDIR_RELATIVE)
|
||||
+endif
|
||||
+
|
||||
HLIB$(1)_H_$(3) = $$(HROOT$(1)_H_$(3))/$$(CFG_LIBDIR_RELATIVE)
|
||||
|
||||
# Destinations of artifacts for target architectures
|
||||
diff --git a/mk/perf.mk b/mk/perf.mk
|
||||
index 16cbaab..f8a354c 100644
|
||||
--- a/mk/perf.mk
|
||||
+++ b/mk/perf.mk
|
||||
@@ -10,13 +10,13 @@
|
||||
|
||||
|
||||
ifdef CFG_PERF_TOOL
|
||||
-rustc-perf$(X): $(CFG_BUILD)/stage2/bin/rustc$(X_$(CFG_BUILD))
|
||||
+rustc-perf$(X): $(CFG_BUILD)/stage2/$(CFG_BINDIR_RELATIVE)/rustc$(X_$(CFG_BUILD))
|
||||
@$(call E, perf compile: $@)
|
||||
$(PERF_STAGE2_T_$(CFG_BUILD)_H_$(CFG_BUILD)) \
|
||||
-o $@ $(COMPILER_CRATE) >rustc-perf.err 2>&1
|
||||
$(Q)rm -f $(LIBRUSTC_GLOB)
|
||||
else
|
||||
-rustc-perf$(X): $(CFG_BUILD)/stage2/bin/rustc$(X_$(CFG_BUILD))
|
||||
+rustc-perf$(X): $(CFG_BUILD)/stage2/$(CFG_BINDIR_RELATIVE)/rustc$(X_$(CFG_BUILD))
|
||||
$(Q)touch $@
|
||||
endif
|
||||
|
||||
diff --git a/mk/prepare.mk b/mk/prepare.mk
|
||||
index fe619cc..b8aa0cb 100644
|
||||
--- a/mk/prepare.mk
|
||||
+++ b/mk/prepare.mk
|
||||
@@ -186,10 +186,10 @@ INSTALL_DEBUGGER_SCRIPT_COMMANDS=$(if $(findstring windows,$(1)),\
|
||||
define DEF_PREPARE
|
||||
|
||||
prepare-base-$(1): PREPARE_SOURCE_DIR=$$(PREPARE_HOST)/stage$$(PREPARE_STAGE)
|
||||
-prepare-base-$(1): PREPARE_SOURCE_BIN_DIR=$$(PREPARE_SOURCE_DIR)/bin
|
||||
+prepare-base-$(1): PREPARE_SOURCE_BIN_DIR=$$(PREPARE_SOURCE_DIR)/$$(CFG_BINDIR_RELATIVE)
|
||||
prepare-base-$(1): PREPARE_SOURCE_LIB_DIR=$$(PREPARE_SOURCE_DIR)/$$(CFG_LIBDIR_RELATIVE)
|
||||
prepare-base-$(1): PREPARE_SOURCE_MAN_DIR=$$(S)/man
|
||||
-prepare-base-$(1): PREPARE_DEST_BIN_DIR=$$(PREPARE_DEST_DIR)/bin
|
||||
+prepare-base-$(1): PREPARE_DEST_BIN_DIR=$$(PREPARE_DEST_DIR)/$$(CFG_BINDIR_RELATIVE)
|
||||
prepare-base-$(1): PREPARE_DEST_LIB_DIR=$$(PREPARE_DEST_DIR)/$$(CFG_LIBDIR_RELATIVE)
|
||||
prepare-base-$(1): PREPARE_DEST_MAN_DIR=$$(PREPARE_DEST_DIR)/share/man/man1
|
||||
prepare-base-$(1): prepare-everything-$(1)
|
||||
diff --git a/src/librustc/metadata/filesearch.rs b/src/librustc/metadata/filesearch.rs
|
||||
index 311ab1c..1b03b1a 100644
|
||||
--- a/src/librustc/metadata/filesearch.rs
|
||||
+++ b/src/librustc/metadata/filesearch.rs
|
||||
@@ -68,8 +68,7 @@ impl<'a> FileSearch<'a> {
|
||||
if !found {
|
||||
let rustpath = rust_path();
|
||||
for path in &rustpath {
|
||||
- let tlib_path = make_rustpkg_lib_path(
|
||||
- self.sysroot, path, self.triple);
|
||||
+ let tlib_path = make_rustpkg_lib_path(path, self.triple);
|
||||
debug!("is {} in visited_dirs? {}", tlib_path.display(),
|
||||
visited_dirs.contains(&tlib_path));
|
||||
|
||||
@@ -96,7 +95,7 @@ impl<'a> FileSearch<'a> {
|
||||
where F: FnMut(&Path, PathKind) -> FileMatch
|
||||
{
|
||||
self.for_each_lib_search_path(|lib_search_path, kind| {
|
||||
- debug!("searching {}", lib_search_path.display());
|
||||
+ info!("searching {}", lib_search_path.display());
|
||||
match fs::read_dir(lib_search_path) {
|
||||
Ok(files) => {
|
||||
let files = files.filter_map(|p| p.ok().map(|s| s.path()))
|
||||
@@ -157,7 +156,7 @@ impl<'a> FileSearch<'a> {
|
||||
// Returns a list of directories where target-specific tool binaries are located.
|
||||
pub fn get_tools_search_paths(&self) -> Vec<PathBuf> {
|
||||
let mut p = PathBuf::from(self.sysroot);
|
||||
- p.push(&find_libdir(self.sysroot));
|
||||
+ p.push(libdir_str());
|
||||
p.push(&rustlibdir());
|
||||
p.push(&self.triple);
|
||||
p.push("bin");
|
||||
@@ -165,8 +164,8 @@ impl<'a> FileSearch<'a> {
|
||||
}
|
||||
}
|
||||
|
||||
-pub fn relative_target_lib_path(sysroot: &Path, target_triple: &str) -> PathBuf {
|
||||
- let mut p = PathBuf::from(&find_libdir(sysroot));
|
||||
+pub fn relative_target_lib_path(target_triple: &str) -> PathBuf {
|
||||
+ let mut p = PathBuf::from(&libdir_str());
|
||||
assert!(p.is_relative());
|
||||
p.push(&rustlibdir());
|
||||
p.push(target_triple);
|
||||
@@ -176,17 +175,28 @@ pub fn relative_target_lib_path(sysroot: &Path, target_triple: &str) -> PathBuf
|
||||
|
||||
fn make_target_lib_path(sysroot: &Path,
|
||||
target_triple: &str) -> PathBuf {
|
||||
- sysroot.join(&relative_target_lib_path(sysroot, target_triple))
|
||||
+ sysroot.join(&relative_target_lib_path(target_triple))
|
||||
}
|
||||
|
||||
-fn make_rustpkg_lib_path(sysroot: &Path,
|
||||
- dir: &Path,
|
||||
+fn make_rustpkg_lib_path(dir: &Path,
|
||||
triple: &str) -> PathBuf {
|
||||
- let mut p = dir.join(&find_libdir(sysroot));
|
||||
+ let mut p = dir.join(libdir_str());
|
||||
p.push(triple);
|
||||
p
|
||||
}
|
||||
|
||||
+pub fn bindir_relative_str() -> &'static str {
|
||||
+ env!("CFG_BINDIR_RELATIVE")
|
||||
+}
|
||||
+
|
||||
+pub fn bindir_relative_path() -> PathBuf {
|
||||
+ PathBuf::from(bindir_relative_str())
|
||||
+}
|
||||
+
|
||||
+pub fn libdir_str() -> &'static str {
|
||||
+ env!("CFG_LIBDIR_RELATIVE")
|
||||
+}
|
||||
+
|
||||
pub fn get_or_default_sysroot() -> PathBuf {
|
||||
// Follow symlinks. If the resolved path is relative, make it absolute.
|
||||
fn canonicalize(path: Option<PathBuf>) -> Option<PathBuf> {
|
||||
@@ -202,7 +212,18 @@ pub fn get_or_default_sysroot() -> PathBuf {
|
||||
}
|
||||
|
||||
match canonicalize(env::current_exe().ok()) {
|
||||
- Some(mut p) => { p.pop(); p.pop(); p }
|
||||
+ Some(mut p) => {
|
||||
+ // Remove the exe name
|
||||
+ p.pop();
|
||||
+ let mut rel = bindir_relative_path();
|
||||
+
|
||||
+ // Remove a number of elements equal to the number of elements in the bindir relative
|
||||
+ // path
|
||||
+ while rel.pop() {
|
||||
+ p.pop();
|
||||
+ }
|
||||
+ p
|
||||
+ }
|
||||
None => panic!("can't determine value for sysroot")
|
||||
}
|
||||
}
|
||||
@@ -257,47 +278,6 @@ pub fn rust_path() -> Vec<PathBuf> {
|
||||
env_rust_path
|
||||
}
|
||||
|
||||
-// The name of the directory rustc expects libraries to be located.
|
||||
-// On Unix should be "lib", on windows "bin"
|
||||
-#[cfg(unix)]
|
||||
-fn find_libdir(sysroot: &Path) -> String {
|
||||
- // FIXME: This is a quick hack to make the rustc binary able to locate
|
||||
- // Rust libraries in Linux environments where libraries might be installed
|
||||
- // to lib64/lib32. This would be more foolproof by basing the sysroot off
|
||||
- // of the directory where librustc is located, rather than where the rustc
|
||||
- // binary is.
|
||||
- //If --libdir is set during configuration to the value other than
|
||||
- // "lib" (i.e. non-default), this value is used (see issue #16552).
|
||||
-
|
||||
- match option_env!("CFG_LIBDIR_RELATIVE") {
|
||||
- Some(libdir) if libdir != "lib" => return libdir.to_string(),
|
||||
- _ => if sysroot.join(&primary_libdir_name()).join(&rustlibdir()).exists() {
|
||||
- return primary_libdir_name();
|
||||
- } else {
|
||||
- return secondary_libdir_name();
|
||||
- }
|
||||
- }
|
||||
-
|
||||
- #[cfg(target_pointer_width = "64")]
|
||||
- fn primary_libdir_name() -> String {
|
||||
- "lib64".to_string()
|
||||
- }
|
||||
-
|
||||
- #[cfg(target_pointer_width = "32")]
|
||||
- fn primary_libdir_name() -> String {
|
||||
- "lib32".to_string()
|
||||
- }
|
||||
-
|
||||
- fn secondary_libdir_name() -> String {
|
||||
- "lib".to_string()
|
||||
- }
|
||||
-}
|
||||
-
|
||||
-#[cfg(windows)]
|
||||
-fn find_libdir(_sysroot: &Path) -> String {
|
||||
- "bin".to_string()
|
||||
-}
|
||||
-
|
||||
// The name of rustc's own place to organize libraries.
|
||||
// Used to be "rustc", now the default is "rustlib"
|
||||
pub fn rustlibdir() -> String {
|
||||
diff --git a/src/librustc_trans/back/link.rs b/src/librustc_trans/back/link.rs
|
||||
index 6b8b59d..6e03f3c 100644
|
||||
--- a/src/librustc_trans/back/link.rs
|
||||
+++ b/src/librustc_trans/back/link.rs
|
||||
@@ -997,11 +997,10 @@ fn link_args(cmd: &mut Linker,
|
||||
// where extern libraries might live, based on the
|
||||
// addl_lib_search_paths
|
||||
if sess.opts.cg.rpath {
|
||||
- let sysroot = sess.sysroot();
|
||||
let target_triple = &sess.opts.target_triple;
|
||||
let mut get_install_prefix_lib_path = || {
|
||||
let install_prefix = option_env!("CFG_PREFIX").expect("CFG_PREFIX");
|
||||
- let tlib = filesearch::relative_target_lib_path(sysroot, target_triple);
|
||||
+ let tlib = filesearch::relative_target_lib_path(target_triple);
|
||||
let mut path = PathBuf::from(install_prefix);
|
||||
path.push(&tlib);
|
||||
|
||||
--
|
||||
2.4.3
|
||||
|
||||
@@ -0,0 +1,25 @@
|
||||
From fb56f1fa6d0bdc62f7fd0c480446255698dc1635 Mon Sep 17 00:00:00 2001
|
||||
From: Cody P Schafer <dev@codyps.com>
|
||||
Date: Wed, 3 Dec 2014 19:15:19 -0500
|
||||
Subject: [PATCH 6/8] std/thread_local: workaround for NULL __dso_handle
|
||||
|
||||
---
|
||||
src/libstd/thread/local.rs | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/src/libstd/thread/local.rs b/src/libstd/thread/local.rs
|
||||
index 6056334..e79bd8b 100644
|
||||
--- a/src/libstd/thread/local.rs
|
||||
+++ b/src/libstd/thread/local.rs
|
||||
@@ -337,7 +337,7 @@ mod imp {
|
||||
#[linkage = "extern_weak"]
|
||||
static __cxa_thread_atexit_impl: *const ();
|
||||
}
|
||||
- if !__cxa_thread_atexit_impl.is_null() {
|
||||
+ if !__cxa_thread_atexit_impl.is_null() && !__dso_handle.is_null() {
|
||||
type F = unsafe extern fn(dtor: unsafe extern fn(*mut u8),
|
||||
arg: *mut u8,
|
||||
dso_handle: *mut u8) -> libc::c_int;
|
||||
--
|
||||
2.4.3
|
||||
|
||||
@@ -0,0 +1,43 @@
|
||||
From de01acf6395a4c7f7d5c9d7ba251d9f2af570127 Mon Sep 17 00:00:00 2001
|
||||
From: Cody P Schafer <dev@codyps.com>
|
||||
Date: Mon, 2 Mar 2015 13:34:59 -0500
|
||||
Subject: [PATCH 7/8] mk/install: use disable-rewrite-paths
|
||||
|
||||
This stops the install scripts from doing work we've already handled.
|
||||
|
||||
Path rewriting is only useful for prepackaged binary installers.
|
||||
---
|
||||
mk/install.mk | 8 ++++----
|
||||
1 file changed, 4 insertions(+), 4 deletions(-)
|
||||
|
||||
diff --git a/mk/install.mk b/mk/install.mk
|
||||
index cabc97a..273bb0e 100644
|
||||
--- a/mk/install.mk
|
||||
+++ b/mk/install.mk
|
||||
@@ -16,9 +16,9 @@ else
|
||||
$(Q)$(MAKE) prepare_install
|
||||
endif
|
||||
ifeq ($(CFG_DISABLE_DOCS),)
|
||||
- $(Q)cd tmp/empty_dir && sh ../../tmp/dist/$(DOC_PKG_NAME)-$(CFG_BUILD)/install.sh --prefix="$(DESTDIR)$(CFG_PREFIX)" --libdir="$(DESTDIR)$(CFG_LIBDIR)" --mandir="$(DESTDIR)$(CFG_MANDIR)"
|
||||
+ $(Q)cd tmp/empty_dir && sh ../../tmp/dist/$(DOC_PKG_NAME)-$(CFG_BUILD)/install.sh --prefix="$(DESTDIR)$(CFG_PREFIX)" --libdir="$(DESTDIR)$(CFG_LIBDIR)" --mandir="$(DESTDIR)$(CFG_MANDIR)" "$(MAYBE_DISABLE_VERIFY)" --disable-rewrite-paths
|
||||
endif
|
||||
- $(Q)cd tmp/empty_dir && sh ../../tmp/dist/$(PKG_NAME)-$(CFG_BUILD)/install.sh --prefix="$(DESTDIR)$(CFG_PREFIX)" --libdir="$(DESTDIR)$(CFG_LIBDIR)" --mandir="$(DESTDIR)$(CFG_MANDIR)"
|
||||
+ $(Q)cd tmp/empty_dir && sh ../../tmp/dist/$(PKG_NAME)-$(CFG_BUILD)/install.sh --prefix="$(DESTDIR)$(CFG_PREFIX)" --libdir="$(DESTDIR)$(CFG_LIBDIR)" --mandir="$(DESTDIR)$(CFG_MANDIR)" "$(MAYBE_DISABLE_VERIFY)" --disable-rewrite-paths
|
||||
# Remove tmp files because it's a decent amount of disk space
|
||||
$(Q)rm -R tmp/dist
|
||||
|
||||
@@ -32,9 +32,9 @@ else
|
||||
$(Q)$(MAKE) prepare_uninstall
|
||||
endif
|
||||
ifeq ($(CFG_DISABLE_DOCS),)
|
||||
- $(Q)cd tmp/empty_dir && sh ../../tmp/dist/$(DOC_PKG_NAME)-$(CFG_BUILD)/install.sh --uninstall --prefix="$(DESTDIR)$(CFG_PREFIX)" --libdir="$(DESTDIR)$(CFG_LIBDIR)" --mandir="$(DESTDIR)$(CFG_MANDIR)"
|
||||
+ $(Q)cd tmp/empty_dir && sh ../../tmp/dist/$(DOC_PKG_NAME)-$(CFG_BUILD)/install.sh --uninstall --prefix="$(DESTDIR)$(CFG_PREFIX)" --libdir="$(DESTDIR)$(CFG_LIBDIR)" --mandir="$(DESTDIR)$(CFG_MANDIR)" --disable-rewrite-paths
|
||||
endif
|
||||
- $(Q)cd tmp/empty_dir && sh ../../tmp/dist/$(PKG_NAME)-$(CFG_BUILD)/install.sh --uninstall --prefix="$(DESTDIR)$(CFG_PREFIX)" --libdir="$(DESTDIR)$(CFG_LIBDIR)" --mandir="$(DESTDIR)$(CFG_MANDIR)"
|
||||
+ $(Q)cd tmp/empty_dir && sh ../../tmp/dist/$(PKG_NAME)-$(CFG_BUILD)/install.sh --uninstall --prefix="$(DESTDIR)$(CFG_PREFIX)" --libdir="$(DESTDIR)$(CFG_LIBDIR)" --mandir="$(DESTDIR)$(CFG_MANDIR)" --disable-rewrite-paths
|
||||
# Remove tmp files because it's a decent amount of disk space
|
||||
$(Q)rm -R tmp/dist
|
||||
|
||||
--
|
||||
2.4.3
|
||||
|
||||
@@ -0,0 +1,40 @@
|
||||
From 8b87c3e5a7181f828dee1c8c0598b1bafa9dd4cc Mon Sep 17 00:00:00 2001
|
||||
From: Cody P Schafer <dev@codyps.com>
|
||||
Date: Tue, 26 May 2015 12:09:36 -0400
|
||||
Subject: [PATCH 8/8] install: disable ldconfig
|
||||
|
||||
---
|
||||
mk/install.mk | 8 ++++----
|
||||
1 file changed, 4 insertions(+), 4 deletions(-)
|
||||
|
||||
diff --git a/mk/install.mk b/mk/install.mk
|
||||
index 273bb0e..58cfc99 100644
|
||||
--- a/mk/install.mk
|
||||
+++ b/mk/install.mk
|
||||
@@ -16,9 +16,9 @@ else
|
||||
$(Q)$(MAKE) prepare_install
|
||||
endif
|
||||
ifeq ($(CFG_DISABLE_DOCS),)
|
||||
- $(Q)cd tmp/empty_dir && sh ../../tmp/dist/$(DOC_PKG_NAME)-$(CFG_BUILD)/install.sh --prefix="$(DESTDIR)$(CFG_PREFIX)" --libdir="$(DESTDIR)$(CFG_LIBDIR)" --mandir="$(DESTDIR)$(CFG_MANDIR)" "$(MAYBE_DISABLE_VERIFY)" --disable-rewrite-paths
|
||||
+ $(Q)cd tmp/empty_dir && sh ../../tmp/dist/$(DOC_PKG_NAME)-$(CFG_BUILD)/install.sh --prefix="$(DESTDIR)$(CFG_PREFIX)" --libdir="$(DESTDIR)$(CFG_LIBDIR)" --mandir="$(DESTDIR)$(CFG_MANDIR)" "$(MAYBE_DISABLE_VERIFY)" --disable-rewrite-paths --disable-ldconfig
|
||||
endif
|
||||
- $(Q)cd tmp/empty_dir && sh ../../tmp/dist/$(PKG_NAME)-$(CFG_BUILD)/install.sh --prefix="$(DESTDIR)$(CFG_PREFIX)" --libdir="$(DESTDIR)$(CFG_LIBDIR)" --mandir="$(DESTDIR)$(CFG_MANDIR)" "$(MAYBE_DISABLE_VERIFY)" --disable-rewrite-paths
|
||||
+ $(Q)cd tmp/empty_dir && sh ../../tmp/dist/$(PKG_NAME)-$(CFG_BUILD)/install.sh --prefix="$(DESTDIR)$(CFG_PREFIX)" --libdir="$(DESTDIR)$(CFG_LIBDIR)" --mandir="$(DESTDIR)$(CFG_MANDIR)" "$(MAYBE_DISABLE_VERIFY)" --disable-rewrite-paths --disable-ldconfig
|
||||
# Remove tmp files because it's a decent amount of disk space
|
||||
$(Q)rm -R tmp/dist
|
||||
|
||||
@@ -32,9 +32,9 @@ else
|
||||
$(Q)$(MAKE) prepare_uninstall
|
||||
endif
|
||||
ifeq ($(CFG_DISABLE_DOCS),)
|
||||
- $(Q)cd tmp/empty_dir && sh ../../tmp/dist/$(DOC_PKG_NAME)-$(CFG_BUILD)/install.sh --uninstall --prefix="$(DESTDIR)$(CFG_PREFIX)" --libdir="$(DESTDIR)$(CFG_LIBDIR)" --mandir="$(DESTDIR)$(CFG_MANDIR)" --disable-rewrite-paths
|
||||
+ $(Q)cd tmp/empty_dir && sh ../../tmp/dist/$(DOC_PKG_NAME)-$(CFG_BUILD)/install.sh --uninstall --prefix="$(DESTDIR)$(CFG_PREFIX)" --libdir="$(DESTDIR)$(CFG_LIBDIR)" --mandir="$(DESTDIR)$(CFG_MANDIR)" --disable-rewrite-paths --disable-ldconfig
|
||||
endif
|
||||
- $(Q)cd tmp/empty_dir && sh ../../tmp/dist/$(PKG_NAME)-$(CFG_BUILD)/install.sh --uninstall --prefix="$(DESTDIR)$(CFG_PREFIX)" --libdir="$(DESTDIR)$(CFG_LIBDIR)" --mandir="$(DESTDIR)$(CFG_MANDIR)" --disable-rewrite-paths
|
||||
+ $(Q)cd tmp/empty_dir && sh ../../tmp/dist/$(PKG_NAME)-$(CFG_BUILD)/install.sh --uninstall --prefix="$(DESTDIR)$(CFG_PREFIX)" --libdir="$(DESTDIR)$(CFG_LIBDIR)" --mandir="$(DESTDIR)$(CFG_MANDIR)" --disable-rewrite-paths --disable-ldconfig
|
||||
# Remove tmp files because it's a decent amount of disk space
|
||||
$(Q)rm -R tmp/dist
|
||||
|
||||
--
|
||||
2.4.3
|
||||
|
||||
@@ -0,0 +1,58 @@
|
||||
From c7daec775a917d9e3017bc35ea7d88cc9418f181 Mon Sep 17 00:00:00 2001
|
||||
From: Cody P Schafer <dev@codyps.com>
|
||||
Date: Mon, 2 Mar 2015 13:27:49 -0500
|
||||
Subject: [PATCH] add option to disable rewriting of install paths
|
||||
|
||||
This is intended for use by rust & cargo's `make install`, as in that
|
||||
case:
|
||||
|
||||
- these paths are typically built into the pre-install layout already
|
||||
- attempting to do the replacement will be incorrect subdirectory
|
||||
cases (ie: libdir=lib/foo)
|
||||
---
|
||||
install-template.sh | 21 ++++++++++++---------
|
||||
1 file changed, 12 insertions(+), 9 deletions(-)
|
||||
|
||||
diff --git a/install-template.sh b/install-template.sh
|
||||
index 042b955..4ecf430 100644
|
||||
--- a/install-template.sh
|
||||
+++ b/install-template.sh
|
||||
@@ -618,16 +618,18 @@ install_components() {
|
||||
# Decide the destination of the file
|
||||
local _file_install_path="$_dest_prefix/$_file"
|
||||
|
||||
- if echo "$_file" | grep "^lib/" > /dev/null
|
||||
- then
|
||||
- local _f="$(echo "$_file" | sed 's/^lib\///')"
|
||||
- _file_install_path="$CFG_LIBDIR/$_f"
|
||||
- fi
|
||||
+ if [ -n "${CFG_REWRITE_PATHS-}" ]; then
|
||||
+ if echo "$_file" | grep "^lib/" > /dev/null
|
||||
+ then
|
||||
+ local _f="$(echo "$_file" | sed 's/^lib\///')"
|
||||
+ _file_install_path="$CFG_LIBDIR/$_f"
|
||||
+ fi
|
||||
|
||||
- if echo "$_file" | grep "^share/man/" > /dev/null
|
||||
- then
|
||||
- local _f="$(echo "$_file" | sed 's/^share\/man\///')"
|
||||
- _file_install_path="$CFG_MANDIR/$_f"
|
||||
+ if echo "$_file" | grep "^share/man/" > /dev/null
|
||||
+ then
|
||||
+ local _f="$(echo "$_file" | sed 's/^share\/man\///')"
|
||||
+ _file_install_path="$CFG_MANDIR/$_f"
|
||||
+ fi
|
||||
fi
|
||||
|
||||
# Make sure there's a directory for it
|
||||
@@ -810,6 +812,7 @@ valopt mandir "$CFG_DESTDIR_PREFIX/share/man" "install man pages in PATH"
|
||||
opt ldconfig 1 "run ldconfig after installation (Linux only)"
|
||||
opt verify 1 "obsolete"
|
||||
flag verbose "run with verbose output"
|
||||
+opt rewrite-paths 1 "rewrite install paths for libdir & mandir"
|
||||
|
||||
if [ $HELP -eq 1 ]
|
||||
then
|
||||
--
|
||||
2.4.1
|
||||
|
||||
@@ -1,905 +0,0 @@
|
||||
From 4e188d047dee33a19902113a3c90cdf1d8310a9e Mon Sep 17 00:00:00 2001
|
||||
From: Ralf Anton Beier <ralf_beier@me.com>
|
||||
Date: Sun, 8 Aug 2021 11:05:06 +0200
|
||||
Subject: [PATCH 5/8] Add base definitions for riscv64 + musl - libc-0.2.93
|
||||
|
||||
https://github.com/rust-lang/libc/pull/1994/commits/030a07761f61f3293d53752e60edbd330a9d718d
|
||||
|
||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||
Signed-off-by: Ralf Anton Beier <ralf_beier@me.com>
|
||||
---
|
||||
.../src/unix/linux_like/linux/musl/b64/mod.rs | 3 +
|
||||
.../linux_like/linux/musl/b64/riscv64/mod.rs | 867 ++++++++++++++++++
|
||||
2 files changed, 870 insertions(+)
|
||||
create mode 100644 vendor/libc-0.2.93/src/unix/linux_like/linux/musl/b64/riscv64/mod.rs
|
||||
|
||||
diff --git a/vendor/libc-0.2.93/src/unix/linux_like/linux/musl/b64/mod.rs b/vendor/libc-0.2.93/src/unix/linux_like/linux/musl/b64/mod.rs
|
||||
index cfcdaaecf..7261b95d2 100644
|
||||
--- a/vendor/libc-0.2.93/src/unix/linux_like/linux/musl/b64/mod.rs
|
||||
+++ b/vendor/libc-0.2.93/src/unix/linux_like/linux/musl/b64/mod.rs
|
||||
@@ -163,6 +163,9 @@ cfg_if! {
|
||||
} else if #[cfg(any(target_arch = "x86_64"))] {
|
||||
mod x86_64;
|
||||
pub use self::x86_64::*;
|
||||
+ } else if #[cfg(any(target_arch = "riscv64"))] {
|
||||
+ mod riscv64;
|
||||
+ pub use self::riscv64::*;
|
||||
} else {
|
||||
// Unknown target_arch
|
||||
}
|
||||
diff --git a/vendor/libc-0.2.93/src/unix/linux_like/linux/musl/b64/riscv64/mod.rs b/vendor/libc-0.2.93/src/unix/linux_like/linux/musl/b64/riscv64/mod.rs
|
||||
new file mode 100644
|
||||
index 000000000..14bae11d0
|
||||
--- /dev/null
|
||||
+++ b/vendor/libc-0.2.93/src/unix/linux_like/linux/musl/b64/riscv64/mod.rs
|
||||
@@ -0,0 +1,867 @@
|
||||
+//! RISC-V-specific definitions for 64-bit linux-like values
|
||||
+
|
||||
+pub type c_char = u8;
|
||||
+pub type c_long = i64;
|
||||
+pub type c_ulong = u64;
|
||||
+pub type wchar_t = ::c_int;
|
||||
+
|
||||
+pub type nlink_t = ::c_uint;
|
||||
+pub type blksize_t = ::c_int;
|
||||
+pub type fsblkcnt64_t = ::c_ulong;
|
||||
+pub type fsfilcnt64_t = ::c_ulong;
|
||||
+pub type suseconds_t = i64;
|
||||
+pub type __u64 = ::c_ulonglong;
|
||||
+
|
||||
+s! {
|
||||
+ pub struct pthread_attr_t {
|
||||
+ __size: [::c_ulong; 7],
|
||||
+ }
|
||||
+
|
||||
+ pub struct stat {
|
||||
+ pub st_dev: ::dev_t,
|
||||
+ pub st_ino: ::ino_t,
|
||||
+ pub st_mode: ::mode_t,
|
||||
+ pub st_nlink: ::nlink_t,
|
||||
+ pub st_uid: ::uid_t,
|
||||
+ pub st_gid: ::gid_t,
|
||||
+ pub st_rdev: ::dev_t,
|
||||
+ pub __pad1: ::dev_t,
|
||||
+ pub st_size: ::off_t,
|
||||
+ pub st_blksize: ::blksize_t,
|
||||
+ pub __pad2: ::c_int,
|
||||
+ pub st_blocks: ::blkcnt_t,
|
||||
+ pub st_atime: ::time_t,
|
||||
+ pub st_atime_nsec: ::c_long,
|
||||
+ pub st_mtime: ::time_t,
|
||||
+ pub st_mtime_nsec: ::c_long,
|
||||
+ pub st_ctime: ::time_t,
|
||||
+ pub st_ctime_nsec: ::c_long,
|
||||
+ __unused: [::c_int; 2usize],
|
||||
+ }
|
||||
+
|
||||
+ pub struct stat64 {
|
||||
+ pub st_dev: ::dev_t,
|
||||
+ pub st_ino: ::ino64_t,
|
||||
+ pub st_mode: ::mode_t,
|
||||
+ pub st_nlink: ::nlink_t,
|
||||
+ pub st_uid: ::uid_t,
|
||||
+ pub st_gid: ::gid_t,
|
||||
+ pub st_rdev: ::dev_t,
|
||||
+ pub __pad1: ::dev_t,
|
||||
+ pub st_size: ::off64_t,
|
||||
+ pub st_blksize: ::blksize_t,
|
||||
+ pub __pad2: ::c_int,
|
||||
+ pub st_blocks: ::blkcnt_t,
|
||||
+ pub st_atime: ::time_t,
|
||||
+ pub st_atime_nsec: ::c_long,
|
||||
+ pub st_mtime: ::time_t,
|
||||
+ pub st_mtime_nsec: ::c_long,
|
||||
+ pub st_ctime: ::time_t,
|
||||
+ pub st_ctime_nsec: ::c_long,
|
||||
+ __unused: [::c_int; 2],
|
||||
+ }
|
||||
+
|
||||
+ pub struct statfs {
|
||||
+ pub f_type: ::c_long,
|
||||
+ pub f_bsize: ::c_long,
|
||||
+ pub f_blocks: ::fsblkcnt_t,
|
||||
+ pub f_bfree: ::fsblkcnt_t,
|
||||
+ pub f_bavail: ::fsblkcnt_t,
|
||||
+ pub f_files: ::fsfilcnt_t,
|
||||
+ pub f_ffree: ::fsfilcnt_t,
|
||||
+ pub f_fsid: ::fsid_t,
|
||||
+ pub f_namelen: ::c_long,
|
||||
+ pub f_frsize: ::c_long,
|
||||
+ pub f_flags: ::c_long,
|
||||
+ pub f_spare: [::c_long; 4],
|
||||
+ }
|
||||
+
|
||||
+ pub struct statfs64 {
|
||||
+ pub f_type: ::c_long,
|
||||
+ pub f_bsize: ::c_long,
|
||||
+ pub f_blocks: ::fsblkcnt64_t,
|
||||
+ pub f_bfree: ::fsblkcnt64_t,
|
||||
+ pub f_bavail: ::fsblkcnt64_t,
|
||||
+ pub f_files: ::fsfilcnt64_t,
|
||||
+ pub f_ffree: ::fsfilcnt64_t,
|
||||
+ pub f_fsid: ::fsid_t,
|
||||
+ pub f_namelen: ::c_long,
|
||||
+ pub f_frsize: ::c_long,
|
||||
+ pub f_flags: ::c_long,
|
||||
+ pub f_spare: [::c_long; 4],
|
||||
+ }
|
||||
+
|
||||
+ pub struct statvfs {
|
||||
+ pub f_bsize: ::c_ulong,
|
||||
+ pub f_frsize: ::c_ulong,
|
||||
+ pub f_blocks: ::fsblkcnt_t,
|
||||
+ pub f_bfree: ::fsblkcnt_t,
|
||||
+ pub f_bavail: ::fsblkcnt_t,
|
||||
+ pub f_files: ::fsfilcnt_t,
|
||||
+ pub f_ffree: ::fsfilcnt_t,
|
||||
+ pub f_favail: ::fsfilcnt_t,
|
||||
+ pub f_fsid: ::c_ulong,
|
||||
+ pub f_flag: ::c_ulong,
|
||||
+ pub f_namemax: ::c_ulong,
|
||||
+ pub __f_spare: [::c_int; 6],
|
||||
+ }
|
||||
+
|
||||
+ pub struct statvfs64 {
|
||||
+ pub f_bsize: ::c_ulong,
|
||||
+ pub f_frsize: ::c_ulong,
|
||||
+ pub f_blocks: ::fsblkcnt64_t,
|
||||
+ pub f_bfree: ::fsblkcnt64_t,
|
||||
+ pub f_bavail: ::fsblkcnt64_t,
|
||||
+ pub f_files: ::fsfilcnt64_t,
|
||||
+ pub f_ffree: ::fsfilcnt64_t,
|
||||
+ pub f_favail: ::fsfilcnt64_t,
|
||||
+ pub f_fsid: ::c_ulong,
|
||||
+ pub f_flag: ::c_ulong,
|
||||
+ pub f_namemax: ::c_ulong,
|
||||
+ pub __f_spare: [::c_int; 6],
|
||||
+ }
|
||||
+
|
||||
+ pub struct siginfo_t {
|
||||
+ pub si_signo: ::c_int,
|
||||
+ pub si_errno: ::c_int,
|
||||
+ pub si_code: ::c_int,
|
||||
+ #[doc(hidden)]
|
||||
+ #[deprecated(
|
||||
+ since="0.2.54",
|
||||
+ note="Please leave a comment on \
|
||||
+ https://github.com/rust-lang/libc/pull/1316 if you're using \
|
||||
+ this field"
|
||||
+ )]
|
||||
+ pub _pad: [::c_int; 29],
|
||||
+ _align: [u64; 0],
|
||||
+ }
|
||||
+
|
||||
+ pub struct stack_t {
|
||||
+ pub ss_sp: *mut ::c_void,
|
||||
+ pub ss_flags: ::c_int,
|
||||
+ pub ss_size: ::size_t,
|
||||
+ }
|
||||
+
|
||||
+ pub struct sigaction {
|
||||
+ pub sa_sigaction: ::sighandler_t,
|
||||
+ pub sa_mask: ::sigset_t,
|
||||
+ pub sa_flags: ::c_int,
|
||||
+ pub sa_restorer: ::Option<unsafe extern "C" fn()>,
|
||||
+ }
|
||||
+
|
||||
+ pub struct ipc_perm {
|
||||
+ pub __key: ::key_t,
|
||||
+ pub uid: ::uid_t,
|
||||
+ pub gid: ::gid_t,
|
||||
+ pub cuid: ::uid_t,
|
||||
+ pub cgid: ::gid_t,
|
||||
+ pub mode: ::c_ushort,
|
||||
+ __pad1: ::c_ushort,
|
||||
+ pub __seq: ::c_ushort,
|
||||
+ __pad2: ::c_ushort,
|
||||
+ __unused1: ::c_ulong,
|
||||
+ __unused2: ::c_ulong,
|
||||
+ }
|
||||
+
|
||||
+ pub struct shmid_ds {
|
||||
+ pub shm_perm: ::ipc_perm,
|
||||
+ pub shm_segsz: ::size_t,
|
||||
+ pub shm_atime: ::time_t,
|
||||
+ pub shm_dtime: ::time_t,
|
||||
+ pub shm_ctime: ::time_t,
|
||||
+ pub shm_cpid: ::pid_t,
|
||||
+ pub shm_lpid: ::pid_t,
|
||||
+ pub shm_nattch: ::shmatt_t,
|
||||
+ __unused5: ::c_ulong,
|
||||
+ __unused6: ::c_ulong,
|
||||
+ }
|
||||
+
|
||||
+ pub struct flock {
|
||||
+ pub l_type: ::c_short,
|
||||
+ pub l_whence: ::c_short,
|
||||
+ pub l_start: ::off_t,
|
||||
+ pub l_len: ::off_t,
|
||||
+ pub l_pid: ::pid_t,
|
||||
+ }
|
||||
+
|
||||
+ pub struct flock64 {
|
||||
+ pub l_type: ::c_short,
|
||||
+ pub l_whence: ::c_short,
|
||||
+ pub l_start: ::off64_t,
|
||||
+ pub l_len: ::off64_t,
|
||||
+ pub l_pid: ::pid_t,
|
||||
+ }
|
||||
+
|
||||
+ pub struct ip_mreqn {
|
||||
+ pub imr_multiaddr: ::in_addr,
|
||||
+ pub imr_address: ::in_addr,
|
||||
+ pub imr_ifindex: ::c_int,
|
||||
+ }
|
||||
+}
|
||||
+
|
||||
+pub const POSIX_FADV_DONTNEED: ::c_int = 4;
|
||||
+pub const POSIX_FADV_NOREUSE: ::c_int = 5;
|
||||
+pub const VEOF: usize = 4;
|
||||
+pub const RTLD_DEEPBIND: ::c_int = 0x8;
|
||||
+pub const RTLD_GLOBAL: ::c_int = 0x100;
|
||||
+pub const RTLD_NOLOAD: ::c_int = 0x4;
|
||||
+pub const TIOCGSOFTCAR: ::c_ulong = 21529;
|
||||
+pub const TIOCSSOFTCAR: ::c_ulong = 21530;
|
||||
+pub const TIOCGRS485: ::c_int = 21550;
|
||||
+pub const TIOCSRS485: ::c_int = 21551;
|
||||
+pub const RLIMIT_RSS: ::__rlimit_resource_t = 5;
|
||||
+pub const RLIMIT_AS: ::__rlimit_resource_t = 9;
|
||||
+pub const RLIMIT_MEMLOCK: ::__rlimit_resource_t = 8;
|
||||
+pub const RLIMIT_NOFILE: ::__rlimit_resource_t = 7;
|
||||
+pub const RLIMIT_NPROC: ::__rlimit_resource_t = 6;
|
||||
+pub const O_APPEND: ::c_int = 1024;
|
||||
+pub const O_CREAT: ::c_int = 64;
|
||||
+pub const O_EXCL: ::c_int = 128;
|
||||
+pub const O_NOCTTY: ::c_int = 256;
|
||||
+pub const O_NONBLOCK: ::c_int = 2048;
|
||||
+pub const O_SYNC: ::c_int = 1052672;
|
||||
+pub const O_RSYNC: ::c_int = 1052672;
|
||||
+pub const O_DSYNC: ::c_int = 4096;
|
||||
+pub const O_FSYNC: ::c_int = 1052672;
|
||||
+pub const O_NOATIME: ::c_int = 262144;
|
||||
+pub const O_PATH: ::c_int = 2097152;
|
||||
+pub const O_TMPFILE: ::c_int = 4259840;
|
||||
+pub const MAP_GROWSDOWN: ::c_int = 256;
|
||||
+pub const EDEADLK: ::c_int = 35;
|
||||
+pub const ENAMETOOLONG: ::c_int = 36;
|
||||
+pub const ENOLCK: ::c_int = 37;
|
||||
+pub const ENOSYS: ::c_int = 38;
|
||||
+pub const ENOTEMPTY: ::c_int = 39;
|
||||
+pub const ELOOP: ::c_int = 40;
|
||||
+pub const ENOMSG: ::c_int = 42;
|
||||
+pub const EIDRM: ::c_int = 43;
|
||||
+pub const ECHRNG: ::c_int = 44;
|
||||
+pub const EL2NSYNC: ::c_int = 45;
|
||||
+pub const EL3HLT: ::c_int = 46;
|
||||
+pub const EL3RST: ::c_int = 47;
|
||||
+pub const ELNRNG: ::c_int = 48;
|
||||
+pub const EUNATCH: ::c_int = 49;
|
||||
+pub const ENOCSI: ::c_int = 50;
|
||||
+pub const EL2HLT: ::c_int = 51;
|
||||
+pub const EBADE: ::c_int = 52;
|
||||
+pub const EBADR: ::c_int = 53;
|
||||
+pub const EXFULL: ::c_int = 54;
|
||||
+pub const ENOANO: ::c_int = 55;
|
||||
+pub const EBADRQC: ::c_int = 56;
|
||||
+pub const EBADSLT: ::c_int = 57;
|
||||
+pub const EMULTIHOP: ::c_int = 72;
|
||||
+pub const EOVERFLOW: ::c_int = 75;
|
||||
+pub const ENOTUNIQ: ::c_int = 76;
|
||||
+pub const EBADFD: ::c_int = 77;
|
||||
+pub const EBADMSG: ::c_int = 74;
|
||||
+pub const EREMCHG: ::c_int = 78;
|
||||
+pub const ELIBACC: ::c_int = 79;
|
||||
+pub const ELIBBAD: ::c_int = 80;
|
||||
+pub const ELIBSCN: ::c_int = 81;
|
||||
+pub const ELIBMAX: ::c_int = 82;
|
||||
+pub const ELIBEXEC: ::c_int = 83;
|
||||
+pub const EILSEQ: ::c_int = 84;
|
||||
+pub const ERESTART: ::c_int = 85;
|
||||
+pub const ESTRPIPE: ::c_int = 86;
|
||||
+pub const EUSERS: ::c_int = 87;
|
||||
+pub const ENOTSOCK: ::c_int = 88;
|
||||
+pub const EDESTADDRREQ: ::c_int = 89;
|
||||
+pub const EMSGSIZE: ::c_int = 90;
|
||||
+pub const EPROTOTYPE: ::c_int = 91;
|
||||
+pub const ENOPROTOOPT: ::c_int = 92;
|
||||
+pub const EPROTONOSUPPORT: ::c_int = 93;
|
||||
+pub const ESOCKTNOSUPPORT: ::c_int = 94;
|
||||
+pub const EOPNOTSUPP: ::c_int = 95;
|
||||
+pub const EPFNOSUPPORT: ::c_int = 96;
|
||||
+pub const EAFNOSUPPORT: ::c_int = 97;
|
||||
+pub const EADDRINUSE: ::c_int = 98;
|
||||
+pub const EADDRNOTAVAIL: ::c_int = 99;
|
||||
+pub const ENETDOWN: ::c_int = 100;
|
||||
+pub const ENETUNREACH: ::c_int = 101;
|
||||
+pub const ENETRESET: ::c_int = 102;
|
||||
+pub const ECONNABORTED: ::c_int = 103;
|
||||
+pub const ECONNRESET: ::c_int = 104;
|
||||
+pub const ENOBUFS: ::c_int = 105;
|
||||
+pub const EISCONN: ::c_int = 106;
|
||||
+pub const ENOTCONN: ::c_int = 107;
|
||||
+pub const ESHUTDOWN: ::c_int = 108;
|
||||
+pub const ETOOMANYREFS: ::c_int = 109;
|
||||
+pub const ETIMEDOUT: ::c_int = 110;
|
||||
+pub const ECONNREFUSED: ::c_int = 111;
|
||||
+pub const EHOSTDOWN: ::c_int = 112;
|
||||
+pub const EHOSTUNREACH: ::c_int = 113;
|
||||
+pub const EALREADY: ::c_int = 114;
|
||||
+pub const EINPROGRESS: ::c_int = 115;
|
||||
+pub const ESTALE: ::c_int = 116;
|
||||
+pub const EDQUOT: ::c_int = 122;
|
||||
+pub const ENOMEDIUM: ::c_int = 123;
|
||||
+pub const EMEDIUMTYPE: ::c_int = 124;
|
||||
+pub const ECANCELED: ::c_int = 125;
|
||||
+pub const ENOKEY: ::c_int = 126;
|
||||
+pub const EKEYEXPIRED: ::c_int = 127;
|
||||
+pub const EKEYREVOKED: ::c_int = 128;
|
||||
+pub const EKEYREJECTED: ::c_int = 129;
|
||||
+pub const EOWNERDEAD: ::c_int = 130;
|
||||
+pub const ENOTRECOVERABLE: ::c_int = 131;
|
||||
+pub const EHWPOISON: ::c_int = 133;
|
||||
+pub const ERFKILL: ::c_int = 132;
|
||||
+pub const SOL_SOCKET: ::c_int = 1;
|
||||
+pub const SO_REUSEADDR: ::c_int = 2;
|
||||
+pub const SO_TYPE: ::c_int = 3;
|
||||
+pub const SO_ERROR: ::c_int = 4;
|
||||
+pub const SO_DONTROUTE: ::c_int = 5;
|
||||
+pub const SO_BROADCAST: ::c_int = 6;
|
||||
+pub const SO_SNDBUF: ::c_int = 7;
|
||||
+pub const SO_RCVBUF: ::c_int = 8;
|
||||
+pub const SO_SNDBUFFORCE: ::c_int = 32;
|
||||
+pub const SO_RCVBUFFORCE: ::c_int = 33;
|
||||
+pub const SO_KEEPALIVE: ::c_int = 9;
|
||||
+pub const SO_OOBINLINE: ::c_int = 10;
|
||||
+pub const SO_NO_CHECK: ::c_int = 11;
|
||||
+pub const SO_PRIORITY: ::c_int = 12;
|
||||
+pub const SO_LINGER: ::c_int = 13;
|
||||
+pub const SO_BSDCOMPAT: ::c_int = 14;
|
||||
+pub const SO_REUSEPORT: ::c_int = 15;
|
||||
+pub const SO_PASSCRED: ::c_int = 16;
|
||||
+pub const SO_PEERCRED: ::c_int = 17;
|
||||
+pub const SO_RCVLOWAT: ::c_int = 18;
|
||||
+pub const SO_SNDLOWAT: ::c_int = 19;
|
||||
+pub const SO_RCVTIMEO: ::c_int = 20;
|
||||
+pub const SO_SNDTIMEO: ::c_int = 21;
|
||||
+pub const SO_SECURITY_AUTHENTICATION: ::c_int = 22;
|
||||
+pub const SO_SECURITY_ENCRYPTION_TRANSPORT: ::c_int = 23;
|
||||
+pub const SO_SECURITY_ENCRYPTION_NETWORK: ::c_int = 24;
|
||||
+pub const SO_BINDTODEVICE: ::c_int = 25;
|
||||
+pub const SO_ATTACH_FILTER: ::c_int = 26;
|
||||
+pub const SO_DETACH_FILTER: ::c_int = 27;
|
||||
+pub const SO_GET_FILTER: ::c_int = 26;
|
||||
+pub const SO_PEERNAME: ::c_int = 28;
|
||||
+pub const SO_TIMESTAMP: ::c_int = 29;
|
||||
+pub const SO_ACCEPTCONN: ::c_int = 30;
|
||||
+pub const SO_PEERSEC: ::c_int = 31;
|
||||
+pub const SO_PASSSEC: ::c_int = 34;
|
||||
+pub const SO_TIMESTAMPNS: ::c_int = 35;
|
||||
+pub const SCM_TIMESTAMPNS: ::c_int = 35;
|
||||
+pub const SO_MARK: ::c_int = 36;
|
||||
+pub const SO_PROTOCOL: ::c_int = 38;
|
||||
+pub const SO_DOMAIN: ::c_int = 39;
|
||||
+pub const SO_RXQ_OVFL: ::c_int = 40;
|
||||
+pub const SO_WIFI_STATUS: ::c_int = 41;
|
||||
+pub const SCM_WIFI_STATUS: ::c_int = 41;
|
||||
+pub const SO_PEEK_OFF: ::c_int = 42;
|
||||
+pub const SO_NOFCS: ::c_int = 43;
|
||||
+pub const SO_LOCK_FILTER: ::c_int = 44;
|
||||
+pub const SO_SELECT_ERR_QUEUE: ::c_int = 45;
|
||||
+pub const SO_BUSY_POLL: ::c_int = 46;
|
||||
+pub const SO_MAX_PACING_RATE: ::c_int = 47;
|
||||
+pub const SO_BPF_EXTENSIONS: ::c_int = 48;
|
||||
+pub const SO_INCOMING_CPU: ::c_int = 49;
|
||||
+pub const SO_ATTACH_BPF: ::c_int = 50;
|
||||
+pub const SO_DETACH_BPF: ::c_int = 27;
|
||||
+pub const SOCK_STREAM: ::c_int = 1;
|
||||
+pub const SOCK_DGRAM: ::c_int = 2;
|
||||
+pub const SA_ONSTACK: ::c_int = 134217728;
|
||||
+pub const SA_SIGINFO: ::c_int = 4;
|
||||
+pub const SA_NOCLDWAIT: ::c_int = 2;
|
||||
+pub const SIGTTIN: ::c_int = 21;
|
||||
+pub const SIGTTOU: ::c_int = 22;
|
||||
+pub const SIGXCPU: ::c_int = 24;
|
||||
+pub const SIGXFSZ: ::c_int = 25;
|
||||
+pub const SIGVTALRM: ::c_int = 26;
|
||||
+pub const SIGPROF: ::c_int = 27;
|
||||
+pub const SIGWINCH: ::c_int = 28;
|
||||
+pub const SIGCHLD: ::c_int = 17;
|
||||
+pub const SIGBUS: ::c_int = 7;
|
||||
+pub const SIGUSR1: ::c_int = 10;
|
||||
+pub const SIGUSR2: ::c_int = 12;
|
||||
+pub const SIGCONT: ::c_int = 18;
|
||||
+pub const SIGSTOP: ::c_int = 19;
|
||||
+pub const SIGTSTP: ::c_int = 20;
|
||||
+pub const SIGURG: ::c_int = 23;
|
||||
+pub const SIGIO: ::c_int = 29;
|
||||
+pub const SIGSYS: ::c_int = 31;
|
||||
+pub const SIGSTKFLT: ::c_int = 16;
|
||||
+pub const SIGPOLL: ::c_int = 29;
|
||||
+pub const SIGPWR: ::c_int = 30;
|
||||
+pub const SIG_SETMASK: ::c_int = 2;
|
||||
+pub const SIG_BLOCK: ::c_int = 0;
|
||||
+pub const SIG_UNBLOCK: ::c_int = 1;
|
||||
+pub const POLLWRNORM: ::c_short = 256;
|
||||
+pub const POLLWRBAND: ::c_short = 512;
|
||||
+pub const O_ASYNC: ::c_int = 8192;
|
||||
+pub const O_NDELAY: ::c_int = 2048;
|
||||
+pub const PTRACE_DETACH: ::c_uint = 17;
|
||||
+pub const EFD_NONBLOCK: ::c_int = 2048;
|
||||
+pub const F_GETLK: ::c_int = 5;
|
||||
+pub const F_GETOWN: ::c_int = 9;
|
||||
+pub const F_SETOWN: ::c_int = 8;
|
||||
+pub const F_SETLK: ::c_int = 6;
|
||||
+pub const F_SETLKW: ::c_int = 7;
|
||||
+pub const F_RDLCK: ::c_int = 0;
|
||||
+pub const F_WRLCK: ::c_int = 1;
|
||||
+pub const F_UNLCK: ::c_int = 2;
|
||||
+pub const F_OFD_GETLK: ::c_int = 36;
|
||||
+pub const F_OFD_SETLK: ::c_int = 37;
|
||||
+pub const F_OFD_SETLKW: ::c_int = 38;
|
||||
+pub const SFD_NONBLOCK: ::c_int = 2048;
|
||||
+pub const TCSANOW: ::c_int = 0;
|
||||
+pub const TCSADRAIN: ::c_int = 1;
|
||||
+pub const TCSAFLUSH: ::c_int = 2;
|
||||
+pub const TIOCLINUX: ::c_ulong = 21532;
|
||||
+pub const TIOCGSERIAL: ::c_ulong = 21534;
|
||||
+pub const TIOCEXCL: ::c_ulong = 21516;
|
||||
+pub const TIOCNXCL: ::c_ulong = 21517;
|
||||
+pub const TIOCSCTTY: ::c_ulong = 21518;
|
||||
+pub const TIOCSTI: ::c_ulong = 21522;
|
||||
+pub const TIOCMGET: ::c_ulong = 21525;
|
||||
+pub const TIOCMBIS: ::c_ulong = 21526;
|
||||
+pub const TIOCMBIC: ::c_ulong = 21527;
|
||||
+pub const TIOCMSET: ::c_ulong = 21528;
|
||||
+pub const TIOCCONS: ::c_ulong = 21533;
|
||||
+pub const TIOCM_ST: ::c_int = 8;
|
||||
+pub const TIOCM_SR: ::c_int = 16;
|
||||
+pub const TIOCM_CTS: ::c_int = 32;
|
||||
+pub const TIOCM_CAR: ::c_int = 64;
|
||||
+pub const TIOCM_RNG: ::c_int = 128;
|
||||
+pub const TIOCM_DSR: ::c_int = 256;
|
||||
+pub const SFD_CLOEXEC: ::c_int = 524288;
|
||||
+pub const NCCS: usize = 32;
|
||||
+pub const O_TRUNC: ::c_int = 512;
|
||||
+pub const O_CLOEXEC: ::c_int = 524288;
|
||||
+pub const EBFONT: ::c_int = 59;
|
||||
+pub const ENOSTR: ::c_int = 60;
|
||||
+pub const ENODATA: ::c_int = 61;
|
||||
+pub const ETIME: ::c_int = 62;
|
||||
+pub const ENOSR: ::c_int = 63;
|
||||
+pub const ENONET: ::c_int = 64;
|
||||
+pub const ENOPKG: ::c_int = 65;
|
||||
+pub const EREMOTE: ::c_int = 66;
|
||||
+pub const ENOLINK: ::c_int = 67;
|
||||
+pub const EADV: ::c_int = 68;
|
||||
+pub const ESRMNT: ::c_int = 69;
|
||||
+pub const ECOMM: ::c_int = 70;
|
||||
+pub const EPROTO: ::c_int = 71;
|
||||
+pub const EDOTDOT: ::c_int = 73;
|
||||
+pub const SA_NODEFER: ::c_int = 1073741824;
|
||||
+pub const SA_RESETHAND: ::c_int = -2147483648;
|
||||
+pub const SA_RESTART: ::c_int = 268435456;
|
||||
+pub const SA_NOCLDSTOP: ::c_int = 1;
|
||||
+pub const EPOLL_CLOEXEC: ::c_int = 524288;
|
||||
+pub const EFD_CLOEXEC: ::c_int = 524288;
|
||||
+pub const __SIZEOF_PTHREAD_CONDATTR_T: usize = 4;
|
||||
+pub const __SIZEOF_PTHREAD_MUTEXATTR_T: usize = 4;
|
||||
+pub const O_DIRECT: ::c_int = 16384;
|
||||
+pub const O_DIRECTORY: ::c_int = 65536;
|
||||
+pub const O_NOFOLLOW: ::c_int = 131072;
|
||||
+pub const MAP_HUGETLB: ::c_int = 262144;
|
||||
+pub const MAP_LOCKED: ::c_int = 8192;
|
||||
+pub const MAP_NORESERVE: ::c_int = 16384;
|
||||
+pub const MAP_ANON: ::c_int = 32;
|
||||
+pub const MAP_ANONYMOUS: ::c_int = 32;
|
||||
+pub const MAP_DENYWRITE: ::c_int = 2048;
|
||||
+pub const MAP_EXECUTABLE: ::c_int = 4096;
|
||||
+pub const MAP_POPULATE: ::c_int = 32768;
|
||||
+pub const MAP_NONBLOCK: ::c_int = 65536;
|
||||
+pub const MAP_STACK: ::c_int = 131072;
|
||||
+pub const MAP_SYNC : ::c_int = 0x080000;
|
||||
+pub const EDEADLOCK: ::c_int = 35;
|
||||
+pub const EUCLEAN: ::c_int = 117;
|
||||
+pub const ENOTNAM: ::c_int = 118;
|
||||
+pub const ENAVAIL: ::c_int = 119;
|
||||
+pub const EISNAM: ::c_int = 120;
|
||||
+pub const EREMOTEIO: ::c_int = 121;
|
||||
+pub const FIOCLEX: ::c_ulong = 21585;
|
||||
+pub const FIONCLEX: ::c_ulong = 21584;
|
||||
+pub const FIONBIO: ::c_ulong = 21537;
|
||||
+pub const MCL_CURRENT: ::c_int = 1;
|
||||
+pub const MCL_FUTURE: ::c_int = 2;
|
||||
+pub const SIGSTKSZ: ::size_t = 8192;
|
||||
+pub const MINSIGSTKSZ: ::size_t = 2048;
|
||||
+pub const CBAUD: ::tcflag_t = 4111;
|
||||
+pub const TAB1: ::tcflag_t = 2048;
|
||||
+pub const TAB2: ::tcflag_t = 4096;
|
||||
+pub const TAB3: ::tcflag_t = 6144;
|
||||
+pub const CR1: ::tcflag_t = 512;
|
||||
+pub const CR2: ::tcflag_t = 1024;
|
||||
+pub const CR3: ::tcflag_t = 1536;
|
||||
+pub const FF1: ::tcflag_t = 32768;
|
||||
+pub const BS1: ::tcflag_t = 8192;
|
||||
+pub const VT1: ::tcflag_t = 16384;
|
||||
+pub const VWERASE: usize = 14;
|
||||
+pub const VREPRINT: usize = 12;
|
||||
+pub const VSUSP: usize = 10;
|
||||
+pub const VSTART: usize = 8;
|
||||
+pub const VSTOP: usize = 9;
|
||||
+pub const VDISCARD: usize = 13;
|
||||
+pub const VTIME: usize = 5;
|
||||
+pub const IXON: ::tcflag_t = 1024;
|
||||
+pub const IXOFF: ::tcflag_t = 4096;
|
||||
+pub const ONLCR: ::tcflag_t = 4;
|
||||
+pub const CSIZE: ::tcflag_t = 48;
|
||||
+pub const CS6: ::tcflag_t = 16;
|
||||
+pub const CS7: ::tcflag_t = 32;
|
||||
+pub const CS8: ::tcflag_t = 48;
|
||||
+pub const CSTOPB: ::tcflag_t = 64;
|
||||
+pub const CREAD: ::tcflag_t = 128;
|
||||
+pub const PARENB: ::tcflag_t = 256;
|
||||
+pub const PARODD: ::tcflag_t = 512;
|
||||
+pub const HUPCL: ::tcflag_t = 1024;
|
||||
+pub const CLOCAL: ::tcflag_t = 2048;
|
||||
+pub const ECHOKE: ::tcflag_t = 2048;
|
||||
+pub const ECHOE: ::tcflag_t = 16;
|
||||
+pub const ECHOK: ::tcflag_t = 32;
|
||||
+pub const ECHONL: ::tcflag_t = 64;
|
||||
+pub const ECHOPRT: ::tcflag_t = 1024;
|
||||
+pub const ECHOCTL: ::tcflag_t = 512;
|
||||
+pub const ISIG: ::tcflag_t = 1;
|
||||
+pub const ICANON: ::tcflag_t = 2;
|
||||
+pub const PENDIN: ::tcflag_t = 16384;
|
||||
+pub const NOFLSH: ::tcflag_t = 128;
|
||||
+pub const CIBAUD: ::tcflag_t = 269418496;
|
||||
+pub const CBAUDEX: ::tcflag_t = 4096;
|
||||
+pub const VSWTC: usize = 7;
|
||||
+pub const OLCUC: ::tcflag_t = 2;
|
||||
+pub const NLDLY: ::tcflag_t = 256;
|
||||
+pub const CRDLY: ::tcflag_t = 1536;
|
||||
+pub const TABDLY: ::tcflag_t = 6144;
|
||||
+pub const BSDLY: ::tcflag_t = 8192;
|
||||
+pub const FFDLY: ::tcflag_t = 32768;
|
||||
+pub const VTDLY: ::tcflag_t = 16384;
|
||||
+pub const XTABS: ::tcflag_t = 6144;
|
||||
+pub const B0: ::speed_t = 0;
|
||||
+pub const B50: ::speed_t = 1;
|
||||
+pub const B75: ::speed_t = 2;
|
||||
+pub const B110: ::speed_t = 3;
|
||||
+pub const B134: ::speed_t = 4;
|
||||
+pub const B150: ::speed_t = 5;
|
||||
+pub const B200: ::speed_t = 6;
|
||||
+pub const B300: ::speed_t = 7;
|
||||
+pub const B600: ::speed_t = 8;
|
||||
+pub const B1200: ::speed_t = 9;
|
||||
+pub const B1800: ::speed_t = 10;
|
||||
+pub const B2400: ::speed_t = 11;
|
||||
+pub const B4800: ::speed_t = 12;
|
||||
+pub const B9600: ::speed_t = 13;
|
||||
+pub const B19200: ::speed_t = 14;
|
||||
+pub const B38400: ::speed_t = 15;
|
||||
+pub const EXTA: ::speed_t = 14;
|
||||
+pub const EXTB: ::speed_t = 15;
|
||||
+pub const B57600: ::speed_t = 4097;
|
||||
+pub const B115200: ::speed_t = 4098;
|
||||
+pub const B230400: ::speed_t = 4099;
|
||||
+pub const B460800: ::speed_t = 4100;
|
||||
+pub const B500000: ::speed_t = 4101;
|
||||
+pub const B576000: ::speed_t = 4102;
|
||||
+pub const B921600: ::speed_t = 4103;
|
||||
+pub const B1000000: ::speed_t = 4104;
|
||||
+pub const B1152000: ::speed_t = 4105;
|
||||
+pub const B1500000: ::speed_t = 4106;
|
||||
+pub const B2000000: ::speed_t = 4107;
|
||||
+pub const B2500000: ::speed_t = 4108;
|
||||
+pub const B3000000: ::speed_t = 4109;
|
||||
+pub const B3500000: ::speed_t = 4110;
|
||||
+pub const B4000000: ::speed_t = 4111;
|
||||
+pub const VEOL: usize = 11;
|
||||
+pub const VEOL2: usize = 16;
|
||||
+pub const VMIN: usize = 6;
|
||||
+pub const IEXTEN: ::tcflag_t = 32768;
|
||||
+pub const TOSTOP: ::tcflag_t = 256;
|
||||
+pub const FLUSHO: ::tcflag_t = 4096;
|
||||
+pub const EXTPROC: ::tcflag_t = 65536;
|
||||
+pub const TCGETS: ::c_ulong = 21505;
|
||||
+pub const TCSETS: ::c_ulong = 21506;
|
||||
+pub const TCSETSW: ::c_ulong = 21507;
|
||||
+pub const TCSETSF: ::c_ulong = 21508;
|
||||
+pub const TCGETA: ::c_ulong = 21509;
|
||||
+pub const TCSETA: ::c_ulong = 21510;
|
||||
+pub const TCSETAW: ::c_ulong = 21511;
|
||||
+pub const TCSETAF: ::c_ulong = 21512;
|
||||
+pub const TCSBRK: ::c_ulong = 21513;
|
||||
+pub const TCXONC: ::c_ulong = 21514;
|
||||
+pub const TCFLSH: ::c_ulong = 21515;
|
||||
+pub const TIOCINQ: ::c_ulong = 21531;
|
||||
+pub const TIOCGPGRP: ::c_ulong = 21519;
|
||||
+pub const TIOCSPGRP: ::c_ulong = 21520;
|
||||
+pub const TIOCOUTQ: ::c_ulong = 21521;
|
||||
+pub const TIOCGWINSZ: ::c_ulong = 21523;
|
||||
+pub const TIOCSWINSZ: ::c_ulong = 21524;
|
||||
+pub const FIONREAD: ::c_ulong = 21531;
|
||||
+pub const __SIZEOF_PTHREAD_MUTEX_T: usize = 40;
|
||||
+pub const __SIZEOF_PTHREAD_RWLOCK_T: usize = 56;
|
||||
+pub const SYS_read: ::c_long = 63;
|
||||
+pub const SYS_write: ::c_long = 64;
|
||||
+pub const SYS_close: ::c_long = 57;
|
||||
+pub const SYS_fstat: ::c_long = 80;
|
||||
+pub const SYS_lseek: ::c_long = 62;
|
||||
+pub const SYS_mmap: ::c_long = 222;
|
||||
+pub const SYS_mprotect: ::c_long = 226;
|
||||
+pub const SYS_munmap: ::c_long = 215;
|
||||
+pub const SYS_brk: ::c_long = 214;
|
||||
+pub const SYS_rt_sigaction: ::c_long = 134;
|
||||
+pub const SYS_rt_sigprocmask: ::c_long = 135;
|
||||
+pub const SYS_rt_sigreturn: ::c_long = 139;
|
||||
+pub const SYS_ioctl: ::c_long = 29;
|
||||
+pub const SYS_pread64: ::c_long = 67;
|
||||
+pub const SYS_pwrite64: ::c_long = 68;
|
||||
+pub const SYS_readv: ::c_long = 65;
|
||||
+pub const SYS_writev: ::c_long = 66;
|
||||
+pub const SYS_sched_yield: ::c_long = 124;
|
||||
+pub const SYS_mremap: ::c_long = 216;
|
||||
+pub const SYS_msync: ::c_long = 227;
|
||||
+pub const SYS_mincore: ::c_long = 232;
|
||||
+pub const SYS_madvise: ::c_long = 233;
|
||||
+pub const SYS_shmget: ::c_long = 194;
|
||||
+pub const SYS_shmat: ::c_long = 196;
|
||||
+pub const SYS_shmctl: ::c_long = 195;
|
||||
+pub const SYS_dup: ::c_long = 23;
|
||||
+pub const SYS_nanosleep: ::c_long = 101;
|
||||
+pub const SYS_getitimer: ::c_long = 102;
|
||||
+pub const SYS_setitimer: ::c_long = 103;
|
||||
+pub const SYS_getpid: ::c_long = 172;
|
||||
+pub const SYS_sendfile: ::c_long = 71;
|
||||
+pub const SYS_socket: ::c_long = 198;
|
||||
+pub const SYS_connect: ::c_long = 203;
|
||||
+pub const SYS_accept: ::c_long = 202;
|
||||
+pub const SYS_sendto: ::c_long = 206;
|
||||
+pub const SYS_recvfrom: ::c_long = 207;
|
||||
+pub const SYS_sendmsg: ::c_long = 211;
|
||||
+pub const SYS_recvmsg: ::c_long = 212;
|
||||
+pub const SYS_shutdown: ::c_long = 210;
|
||||
+pub const SYS_bind: ::c_long = 200;
|
||||
+pub const SYS_listen: ::c_long = 201;
|
||||
+pub const SYS_getsockname: ::c_long = 204;
|
||||
+pub const SYS_getpeername: ::c_long = 205;
|
||||
+pub const SYS_socketpair: ::c_long = 199;
|
||||
+pub const SYS_setsockopt: ::c_long = 208;
|
||||
+pub const SYS_getsockopt: ::c_long = 209;
|
||||
+pub const SYS_clone: ::c_long = 220;
|
||||
+pub const SYS_execve: ::c_long = 221;
|
||||
+pub const SYS_exit: ::c_long = 93;
|
||||
+pub const SYS_wait4: ::c_long = 260;
|
||||
+pub const SYS_kill: ::c_long = 129;
|
||||
+pub const SYS_uname: ::c_long = 160;
|
||||
+pub const SYS_semget: ::c_long = 190;
|
||||
+pub const SYS_semop: ::c_long = 193;
|
||||
+pub const SYS_semctl: ::c_long = 191;
|
||||
+pub const SYS_shmdt: ::c_long = 197;
|
||||
+pub const SYS_msgget: ::c_long = 186;
|
||||
+pub const SYS_msgsnd: ::c_long = 189;
|
||||
+pub const SYS_msgrcv: ::c_long = 188;
|
||||
+pub const SYS_msgctl: ::c_long = 187;
|
||||
+pub const SYS_fcntl: ::c_long = 25;
|
||||
+pub const SYS_flock: ::c_long = 32;
|
||||
+pub const SYS_fsync: ::c_long = 82;
|
||||
+pub const SYS_fdatasync: ::c_long = 83;
|
||||
+pub const SYS_truncate: ::c_long = 45;
|
||||
+pub const SYS_ftruncate: ::c_long = 46;
|
||||
+pub const SYS_getcwd: ::c_long = 17;
|
||||
+pub const SYS_chdir: ::c_long = 49;
|
||||
+pub const SYS_fchdir: ::c_long = 50;
|
||||
+pub const SYS_fchmod: ::c_long = 52;
|
||||
+pub const SYS_fchown: ::c_long = 55;
|
||||
+pub const SYS_umask: ::c_long = 166;
|
||||
+pub const SYS_gettimeofday: ::c_long = 169;
|
||||
+pub const SYS_getrlimit: ::c_long = 163;
|
||||
+pub const SYS_getrusage: ::c_long = 165;
|
||||
+pub const SYS_sysinfo: ::c_long = 179;
|
||||
+pub const SYS_times: ::c_long = 153;
|
||||
+pub const SYS_ptrace: ::c_long = 117;
|
||||
+pub const SYS_getuid: ::c_long = 174;
|
||||
+pub const SYS_syslog: ::c_long = 116;
|
||||
+pub const SYS_getgid: ::c_long = 176;
|
||||
+pub const SYS_setuid: ::c_long = 146;
|
||||
+pub const SYS_setgid: ::c_long = 144;
|
||||
+pub const SYS_geteuid: ::c_long = 175;
|
||||
+pub const SYS_getegid: ::c_long = 177;
|
||||
+pub const SYS_setpgid: ::c_long = 154;
|
||||
+pub const SYS_getppid: ::c_long = 173;
|
||||
+pub const SYS_setsid: ::c_long = 157;
|
||||
+pub const SYS_setreuid: ::c_long = 145;
|
||||
+pub const SYS_setregid: ::c_long = 143;
|
||||
+pub const SYS_getgroups: ::c_long = 158;
|
||||
+pub const SYS_setgroups: ::c_long = 159;
|
||||
+pub const SYS_setresuid: ::c_long = 147;
|
||||
+pub const SYS_getresuid: ::c_long = 148;
|
||||
+pub const SYS_setresgid: ::c_long = 149;
|
||||
+pub const SYS_getresgid: ::c_long = 150;
|
||||
+pub const SYS_getpgid: ::c_long = 155;
|
||||
+pub const SYS_setfsuid: ::c_long = 151;
|
||||
+pub const SYS_setfsgid: ::c_long = 152;
|
||||
+pub const SYS_getsid: ::c_long = 156;
|
||||
+pub const SYS_capget: ::c_long = 90;
|
||||
+pub const SYS_capset: ::c_long = 91;
|
||||
+pub const SYS_rt_sigpending: ::c_long = 136;
|
||||
+pub const SYS_rt_sigtimedwait: ::c_long = 137;
|
||||
+pub const SYS_rt_sigqueueinfo: ::c_long = 138;
|
||||
+pub const SYS_rt_sigsuspend: ::c_long = 133;
|
||||
+pub const SYS_sigaltstack: ::c_long = 132;
|
||||
+pub const SYS_personality: ::c_long = 92;
|
||||
+pub const SYS_statfs: ::c_long = 43;
|
||||
+pub const SYS_fstatfs: ::c_long = 44;
|
||||
+pub const SYS_getpriority: ::c_long = 141;
|
||||
+pub const SYS_setpriority: ::c_long = 140;
|
||||
+pub const SYS_sched_setparam: ::c_long = 118;
|
||||
+pub const SYS_sched_getparam: ::c_long = 121;
|
||||
+pub const SYS_sched_setscheduler: ::c_long = 119;
|
||||
+pub const SYS_sched_getscheduler: ::c_long = 120;
|
||||
+pub const SYS_sched_get_priority_max: ::c_long = 125;
|
||||
+pub const SYS_sched_get_priority_min: ::c_long = 126;
|
||||
+pub const SYS_sched_rr_get_interval: ::c_long = 127;
|
||||
+pub const SYS_mlock: ::c_long = 228;
|
||||
+pub const SYS_munlock: ::c_long = 229;
|
||||
+pub const SYS_mlockall: ::c_long = 230;
|
||||
+pub const SYS_munlockall: ::c_long = 231;
|
||||
+pub const SYS_vhangup: ::c_long = 58;
|
||||
+pub const SYS_pivot_root: ::c_long = 41;
|
||||
+pub const SYS_prctl: ::c_long = 167;
|
||||
+pub const SYS_adjtimex: ::c_long = 171;
|
||||
+pub const SYS_setrlimit: ::c_long = 164;
|
||||
+pub const SYS_chroot: ::c_long = 51;
|
||||
+pub const SYS_sync: ::c_long = 81;
|
||||
+pub const SYS_acct: ::c_long = 89;
|
||||
+pub const SYS_settimeofday: ::c_long = 170;
|
||||
+pub const SYS_mount: ::c_long = 40;
|
||||
+pub const SYS_umount2: ::c_long = 39;
|
||||
+pub const SYS_swapon: ::c_long = 224;
|
||||
+pub const SYS_swapoff: ::c_long = 225;
|
||||
+pub const SYS_reboot: ::c_long = 142;
|
||||
+pub const SYS_sethostname: ::c_long = 161;
|
||||
+pub const SYS_setdomainname: ::c_long = 162;
|
||||
+pub const SYS_init_module: ::c_long = 105;
|
||||
+pub const SYS_delete_module: ::c_long = 106;
|
||||
+pub const SYS_quotactl: ::c_long = 60;
|
||||
+pub const SYS_nfsservctl: ::c_long = 42;
|
||||
+pub const SYS_gettid: ::c_long = 178;
|
||||
+pub const SYS_readahead: ::c_long = 213;
|
||||
+pub const SYS_setxattr: ::c_long = 5;
|
||||
+pub const SYS_lsetxattr: ::c_long = 6;
|
||||
+pub const SYS_fsetxattr: ::c_long = 7;
|
||||
+pub const SYS_getxattr: ::c_long = 8;
|
||||
+pub const SYS_lgetxattr: ::c_long = 9;
|
||||
+pub const SYS_fgetxattr: ::c_long = 10;
|
||||
+pub const SYS_listxattr: ::c_long = 11;
|
||||
+pub const SYS_llistxattr: ::c_long = 12;
|
||||
+pub const SYS_flistxattr: ::c_long = 13;
|
||||
+pub const SYS_removexattr: ::c_long = 14;
|
||||
+pub const SYS_lremovexattr: ::c_long = 15;
|
||||
+pub const SYS_fremovexattr: ::c_long = 16;
|
||||
+pub const SYS_tkill: ::c_long = 130;
|
||||
+pub const SYS_futex: ::c_long = 98;
|
||||
+pub const SYS_sched_setaffinity: ::c_long = 122;
|
||||
+pub const SYS_sched_getaffinity: ::c_long = 123;
|
||||
+pub const SYS_io_setup: ::c_long = 0;
|
||||
+pub const SYS_io_destroy: ::c_long = 1;
|
||||
+pub const SYS_io_getevents: ::c_long = 4;
|
||||
+pub const SYS_io_submit: ::c_long = 2;
|
||||
+pub const SYS_io_cancel: ::c_long = 3;
|
||||
+pub const SYS_lookup_dcookie: ::c_long = 18;
|
||||
+pub const SYS_remap_file_pages: ::c_long = 234;
|
||||
+pub const SYS_getdents64: ::c_long = 61;
|
||||
+pub const SYS_set_tid_address: ::c_long = 96;
|
||||
+pub const SYS_restart_syscall: ::c_long = 128;
|
||||
+pub const SYS_semtimedop: ::c_long = 192;
|
||||
+pub const SYS_fadvise64: ::c_long = 223;
|
||||
+pub const SYS_timer_create: ::c_long = 107;
|
||||
+pub const SYS_timer_settime: ::c_long = 110;
|
||||
+pub const SYS_timer_gettime: ::c_long = 108;
|
||||
+pub const SYS_timer_getoverrun: ::c_long = 109;
|
||||
+pub const SYS_timer_delete: ::c_long = 111;
|
||||
+pub const SYS_clock_settime: ::c_long = 112;
|
||||
+pub const SYS_clock_gettime: ::c_long = 113;
|
||||
+pub const SYS_clock_getres: ::c_long = 114;
|
||||
+pub const SYS_clock_nanosleep: ::c_long = 115;
|
||||
+pub const SYS_exit_group: ::c_long = 94;
|
||||
+pub const SYS_epoll_ctl: ::c_long = 21;
|
||||
+pub const SYS_tgkill: ::c_long = 131;
|
||||
+pub const SYS_mbind: ::c_long = 235;
|
||||
+pub const SYS_set_mempolicy: ::c_long = 237;
|
||||
+pub const SYS_get_mempolicy: ::c_long = 236;
|
||||
+pub const SYS_mq_open: ::c_long = 180;
|
||||
+pub const SYS_mq_unlink: ::c_long = 181;
|
||||
+pub const SYS_mq_timedsend: ::c_long = 182;
|
||||
+pub const SYS_mq_timedreceive: ::c_long = 183;
|
||||
+pub const SYS_mq_notify: ::c_long = 184;
|
||||
+pub const SYS_mq_getsetattr: ::c_long = 185;
|
||||
+pub const SYS_kexec_load: ::c_long = 104;
|
||||
+pub const SYS_waitid: ::c_long = 95;
|
||||
+pub const SYS_add_key: ::c_long = 217;
|
||||
+pub const SYS_request_key: ::c_long = 218;
|
||||
+pub const SYS_keyctl: ::c_long = 219;
|
||||
+pub const SYS_ioprio_set: ::c_long = 30;
|
||||
+pub const SYS_ioprio_get: ::c_long = 31;
|
||||
+pub const SYS_inotify_add_watch: ::c_long = 27;
|
||||
+pub const SYS_inotify_rm_watch: ::c_long = 28;
|
||||
+pub const SYS_migrate_pages: ::c_long = 238;
|
||||
+pub const SYS_openat: ::c_long = 56;
|
||||
+pub const SYS_mkdirat: ::c_long = 34;
|
||||
+pub const SYS_mknodat: ::c_long = 33;
|
||||
+pub const SYS_fchownat: ::c_long = 54;
|
||||
+pub const SYS_newfstatat: ::c_long = 79;
|
||||
+pub const SYS_unlinkat: ::c_long = 35;
|
||||
+pub const SYS_linkat: ::c_long = 37;
|
||||
+pub const SYS_symlinkat: ::c_long = 36;
|
||||
+pub const SYS_readlinkat: ::c_long = 78;
|
||||
+pub const SYS_fchmodat: ::c_long = 53;
|
||||
+pub const SYS_faccessat: ::c_long = 48;
|
||||
+pub const SYS_pselect6: ::c_long = 72;
|
||||
+pub const SYS_ppoll: ::c_long = 73;
|
||||
+pub const SYS_unshare: ::c_long = 97;
|
||||
+pub const SYS_set_robust_list: ::c_long = 99;
|
||||
+pub const SYS_get_robust_list: ::c_long = 100;
|
||||
+pub const SYS_splice: ::c_long = 76;
|
||||
+pub const SYS_tee: ::c_long = 77;
|
||||
+pub const SYS_sync_file_range: ::c_long = 84;
|
||||
+pub const SYS_vmsplice: ::c_long = 75;
|
||||
+pub const SYS_move_pages: ::c_long = 239;
|
||||
+pub const SYS_utimensat: ::c_long = 88;
|
||||
+pub const SYS_epoll_pwait: ::c_long = 22;
|
||||
+pub const SYS_timerfd_create: ::c_long = 85;
|
||||
+pub const SYS_fallocate: ::c_long = 47;
|
||||
+pub const SYS_timerfd_settime: ::c_long = 86;
|
||||
+pub const SYS_timerfd_gettime: ::c_long = 87;
|
||||
+pub const SYS_accept4: ::c_long = 242;
|
||||
+pub const SYS_signalfd4: ::c_long = 74;
|
||||
+pub const SYS_eventfd2: ::c_long = 19;
|
||||
+pub const SYS_epoll_create1: ::c_long = 20;
|
||||
+pub const SYS_dup3: ::c_long = 24;
|
||||
+pub const SYS_pipe2: ::c_long = 59;
|
||||
+pub const SYS_inotify_init1: ::c_long = 26;
|
||||
+pub const SYS_preadv: ::c_long = 69;
|
||||
+pub const SYS_pwritev: ::c_long = 70;
|
||||
+pub const SYS_rt_tgsigqueueinfo: ::c_long = 240;
|
||||
+pub const SYS_perf_event_open: ::c_long = 241;
|
||||
+pub const SYS_recvmmsg: ::c_long = 243;
|
||||
+pub const SYS_fanotify_init: ::c_long = 262;
|
||||
+pub const SYS_fanotify_mark: ::c_long = 263;
|
||||
+pub const SYS_prlimit64: ::c_long = 261;
|
||||
+pub const SYS_name_to_handle_at: ::c_long = 264;
|
||||
+pub const SYS_open_by_handle_at: ::c_long = 265;
|
||||
+pub const SYS_clock_adjtime: ::c_long = 266;
|
||||
+pub const SYS_syncfs: ::c_long = 267;
|
||||
+pub const SYS_sendmmsg: ::c_long = 269;
|
||||
+pub const SYS_setns: ::c_long = 268;
|
||||
+pub const SYS_getcpu: ::c_long = 168;
|
||||
+pub const SYS_process_vm_readv: ::c_long = 270;
|
||||
+pub const SYS_process_vm_writev: ::c_long = 271;
|
||||
+pub const SYS_kcmp: ::c_long = 272;
|
||||
+pub const SYS_finit_module: ::c_long = 273;
|
||||
+pub const SYS_sched_setattr: ::c_long = 274;
|
||||
+pub const SYS_sched_getattr: ::c_long = 275;
|
||||
+pub const SYS_renameat2: ::c_long = 276;
|
||||
+pub const SYS_seccomp: ::c_long = 277;
|
||||
+pub const SYS_getrandom: ::c_long = 278;
|
||||
+pub const SYS_memfd_create: ::c_long = 279;
|
||||
+pub const SYS_bpf: ::c_long = 280;
|
||||
+pub const SYS_execveat: ::c_long = 281;
|
||||
+pub const SYS_userfaultfd: ::c_long = 282;
|
||||
+pub const SYS_membarrier: ::c_long = 283;
|
||||
+pub const SYS_mlock2: ::c_long = 284;
|
||||
+pub const SYS_copy_file_range: ::c_long = 285;
|
||||
+pub const SYS_preadv2: ::c_long = 286;
|
||||
+pub const SYS_pwritev2: ::c_long = 287;
|
||||
+pub const SYS_pkey_mprotect: ::c_long = 288;
|
||||
+pub const SYS_pkey_alloc: ::c_long = 289;
|
||||
+pub const SYS_pkey_free: ::c_long = 290;
|
||||
+pub const SYS_statx: ::c_long = 291;
|
||||
+pub const SYS_pidfd_open: ::c_long = 434;
|
||||
+pub const SYS_clone3: ::c_long = 435;
|
||||
--
|
||||
2.27.0
|
||||
|
||||
@@ -1,31 +0,0 @@
|
||||
From 4319893ebb7fca8bbd2bffc4bddb8d3ecdc08cc2 Mon Sep 17 00:00:00 2001
|
||||
From: Ralf Anton Beier <ralf_beier@me.com>
|
||||
Date: Sun, 8 Aug 2021 11:07:21 +0200
|
||||
Subject: [PATCH 6/8] FIXUP: linux/musl/mod.rs: add riscv64 to b64 set -
|
||||
libc-0.2.93
|
||||
|
||||
https://github.com/rust-lang/libc/pull/1994/commits/30070c822be2ef399b2ba38cdc1d72ac694d65a3
|
||||
|
||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||
Signed-off-by: Ralf Anton Beier <ralf_beier@me.com>
|
||||
---
|
||||
vendor/libc-0.2.93/src/unix/linux_like/linux/musl/mod.rs | 3 ++-
|
||||
1 file changed, 2 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/vendor/libc-0.2.93/src/unix/linux_like/linux/musl/mod.rs b/vendor/libc-0.2.93/src/unix/linux_like/linux/musl/mod.rs
|
||||
index 00f26475d..a37f410fd 100644
|
||||
--- a/vendor/libc-0.2.93/src/unix/linux_like/linux/musl/mod.rs
|
||||
+++ b/vendor/libc-0.2.93/src/unix/linux_like/linux/musl/mod.rs
|
||||
@@ -716,7 +716,8 @@ cfg_if! {
|
||||
target_arch = "aarch64",
|
||||
target_arch = "mips64",
|
||||
target_arch = "powerpc64",
|
||||
- target_arch = "s390x"))] {
|
||||
+ target_arch = "s390x",
|
||||
+ target_arch = "riscv64"))] {
|
||||
mod b64;
|
||||
pub use self::b64::*;
|
||||
} else if #[cfg(any(target_arch = "x86",
|
||||
--
|
||||
2.27.0
|
||||
|
||||
@@ -1,741 +0,0 @@
|
||||
From 9d240d05c6e6620f36e4ddbcbcb5862fb3269d9f Mon Sep 17 00:00:00 2001
|
||||
From: Ralf Anton Beier <ralf_beier@me.com>
|
||||
Date: Sun, 8 Aug 2021 11:09:17 +0200
|
||||
Subject: [PATCH 7/8] FIXUP Correct definitions to match musl - libc-0.2.93
|
||||
|
||||
https://github.com/rust-lang/libc/pull/1994/commits/5f6a4d9745c79c81be63c708515ab116786554a3
|
||||
|
||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||
Signed-off-by: Ralf Anton Beier <ralf_beier@me.com>
|
||||
---
|
||||
.../linux_like/linux/musl/b64/riscv64/mod.rs | 708 ++++++++----------
|
||||
1 file changed, 311 insertions(+), 397 deletions(-)
|
||||
|
||||
diff --git a/vendor/libc-0.2.93/src/unix/linux_like/linux/musl/b64/riscv64/mod.rs b/vendor/libc-0.2.93/src/unix/linux_like/linux/musl/b64/riscv64/mod.rs
|
||||
index 14bae11d0..c37190cca 100644
|
||||
--- a/vendor/libc-0.2.93/src/unix/linux_like/linux/musl/b64/riscv64/mod.rs
|
||||
+++ b/vendor/libc-0.2.93/src/unix/linux_like/linux/musl/b64/riscv64/mod.rs
|
||||
@@ -191,403 +191,8 @@ s! {
|
||||
pub l_len: ::off64_t,
|
||||
pub l_pid: ::pid_t,
|
||||
}
|
||||
-
|
||||
- pub struct ip_mreqn {
|
||||
- pub imr_multiaddr: ::in_addr,
|
||||
- pub imr_address: ::in_addr,
|
||||
- pub imr_ifindex: ::c_int,
|
||||
- }
|
||||
}
|
||||
|
||||
-pub const POSIX_FADV_DONTNEED: ::c_int = 4;
|
||||
-pub const POSIX_FADV_NOREUSE: ::c_int = 5;
|
||||
-pub const VEOF: usize = 4;
|
||||
-pub const RTLD_DEEPBIND: ::c_int = 0x8;
|
||||
-pub const RTLD_GLOBAL: ::c_int = 0x100;
|
||||
-pub const RTLD_NOLOAD: ::c_int = 0x4;
|
||||
-pub const TIOCGSOFTCAR: ::c_ulong = 21529;
|
||||
-pub const TIOCSSOFTCAR: ::c_ulong = 21530;
|
||||
-pub const TIOCGRS485: ::c_int = 21550;
|
||||
-pub const TIOCSRS485: ::c_int = 21551;
|
||||
-pub const RLIMIT_RSS: ::__rlimit_resource_t = 5;
|
||||
-pub const RLIMIT_AS: ::__rlimit_resource_t = 9;
|
||||
-pub const RLIMIT_MEMLOCK: ::__rlimit_resource_t = 8;
|
||||
-pub const RLIMIT_NOFILE: ::__rlimit_resource_t = 7;
|
||||
-pub const RLIMIT_NPROC: ::__rlimit_resource_t = 6;
|
||||
-pub const O_APPEND: ::c_int = 1024;
|
||||
-pub const O_CREAT: ::c_int = 64;
|
||||
-pub const O_EXCL: ::c_int = 128;
|
||||
-pub const O_NOCTTY: ::c_int = 256;
|
||||
-pub const O_NONBLOCK: ::c_int = 2048;
|
||||
-pub const O_SYNC: ::c_int = 1052672;
|
||||
-pub const O_RSYNC: ::c_int = 1052672;
|
||||
-pub const O_DSYNC: ::c_int = 4096;
|
||||
-pub const O_FSYNC: ::c_int = 1052672;
|
||||
-pub const O_NOATIME: ::c_int = 262144;
|
||||
-pub const O_PATH: ::c_int = 2097152;
|
||||
-pub const O_TMPFILE: ::c_int = 4259840;
|
||||
-pub const MAP_GROWSDOWN: ::c_int = 256;
|
||||
-pub const EDEADLK: ::c_int = 35;
|
||||
-pub const ENAMETOOLONG: ::c_int = 36;
|
||||
-pub const ENOLCK: ::c_int = 37;
|
||||
-pub const ENOSYS: ::c_int = 38;
|
||||
-pub const ENOTEMPTY: ::c_int = 39;
|
||||
-pub const ELOOP: ::c_int = 40;
|
||||
-pub const ENOMSG: ::c_int = 42;
|
||||
-pub const EIDRM: ::c_int = 43;
|
||||
-pub const ECHRNG: ::c_int = 44;
|
||||
-pub const EL2NSYNC: ::c_int = 45;
|
||||
-pub const EL3HLT: ::c_int = 46;
|
||||
-pub const EL3RST: ::c_int = 47;
|
||||
-pub const ELNRNG: ::c_int = 48;
|
||||
-pub const EUNATCH: ::c_int = 49;
|
||||
-pub const ENOCSI: ::c_int = 50;
|
||||
-pub const EL2HLT: ::c_int = 51;
|
||||
-pub const EBADE: ::c_int = 52;
|
||||
-pub const EBADR: ::c_int = 53;
|
||||
-pub const EXFULL: ::c_int = 54;
|
||||
-pub const ENOANO: ::c_int = 55;
|
||||
-pub const EBADRQC: ::c_int = 56;
|
||||
-pub const EBADSLT: ::c_int = 57;
|
||||
-pub const EMULTIHOP: ::c_int = 72;
|
||||
-pub const EOVERFLOW: ::c_int = 75;
|
||||
-pub const ENOTUNIQ: ::c_int = 76;
|
||||
-pub const EBADFD: ::c_int = 77;
|
||||
-pub const EBADMSG: ::c_int = 74;
|
||||
-pub const EREMCHG: ::c_int = 78;
|
||||
-pub const ELIBACC: ::c_int = 79;
|
||||
-pub const ELIBBAD: ::c_int = 80;
|
||||
-pub const ELIBSCN: ::c_int = 81;
|
||||
-pub const ELIBMAX: ::c_int = 82;
|
||||
-pub const ELIBEXEC: ::c_int = 83;
|
||||
-pub const EILSEQ: ::c_int = 84;
|
||||
-pub const ERESTART: ::c_int = 85;
|
||||
-pub const ESTRPIPE: ::c_int = 86;
|
||||
-pub const EUSERS: ::c_int = 87;
|
||||
-pub const ENOTSOCK: ::c_int = 88;
|
||||
-pub const EDESTADDRREQ: ::c_int = 89;
|
||||
-pub const EMSGSIZE: ::c_int = 90;
|
||||
-pub const EPROTOTYPE: ::c_int = 91;
|
||||
-pub const ENOPROTOOPT: ::c_int = 92;
|
||||
-pub const EPROTONOSUPPORT: ::c_int = 93;
|
||||
-pub const ESOCKTNOSUPPORT: ::c_int = 94;
|
||||
-pub const EOPNOTSUPP: ::c_int = 95;
|
||||
-pub const EPFNOSUPPORT: ::c_int = 96;
|
||||
-pub const EAFNOSUPPORT: ::c_int = 97;
|
||||
-pub const EADDRINUSE: ::c_int = 98;
|
||||
-pub const EADDRNOTAVAIL: ::c_int = 99;
|
||||
-pub const ENETDOWN: ::c_int = 100;
|
||||
-pub const ENETUNREACH: ::c_int = 101;
|
||||
-pub const ENETRESET: ::c_int = 102;
|
||||
-pub const ECONNABORTED: ::c_int = 103;
|
||||
-pub const ECONNRESET: ::c_int = 104;
|
||||
-pub const ENOBUFS: ::c_int = 105;
|
||||
-pub const EISCONN: ::c_int = 106;
|
||||
-pub const ENOTCONN: ::c_int = 107;
|
||||
-pub const ESHUTDOWN: ::c_int = 108;
|
||||
-pub const ETOOMANYREFS: ::c_int = 109;
|
||||
-pub const ETIMEDOUT: ::c_int = 110;
|
||||
-pub const ECONNREFUSED: ::c_int = 111;
|
||||
-pub const EHOSTDOWN: ::c_int = 112;
|
||||
-pub const EHOSTUNREACH: ::c_int = 113;
|
||||
-pub const EALREADY: ::c_int = 114;
|
||||
-pub const EINPROGRESS: ::c_int = 115;
|
||||
-pub const ESTALE: ::c_int = 116;
|
||||
-pub const EDQUOT: ::c_int = 122;
|
||||
-pub const ENOMEDIUM: ::c_int = 123;
|
||||
-pub const EMEDIUMTYPE: ::c_int = 124;
|
||||
-pub const ECANCELED: ::c_int = 125;
|
||||
-pub const ENOKEY: ::c_int = 126;
|
||||
-pub const EKEYEXPIRED: ::c_int = 127;
|
||||
-pub const EKEYREVOKED: ::c_int = 128;
|
||||
-pub const EKEYREJECTED: ::c_int = 129;
|
||||
-pub const EOWNERDEAD: ::c_int = 130;
|
||||
-pub const ENOTRECOVERABLE: ::c_int = 131;
|
||||
-pub const EHWPOISON: ::c_int = 133;
|
||||
-pub const ERFKILL: ::c_int = 132;
|
||||
-pub const SOL_SOCKET: ::c_int = 1;
|
||||
-pub const SO_REUSEADDR: ::c_int = 2;
|
||||
-pub const SO_TYPE: ::c_int = 3;
|
||||
-pub const SO_ERROR: ::c_int = 4;
|
||||
-pub const SO_DONTROUTE: ::c_int = 5;
|
||||
-pub const SO_BROADCAST: ::c_int = 6;
|
||||
-pub const SO_SNDBUF: ::c_int = 7;
|
||||
-pub const SO_RCVBUF: ::c_int = 8;
|
||||
-pub const SO_SNDBUFFORCE: ::c_int = 32;
|
||||
-pub const SO_RCVBUFFORCE: ::c_int = 33;
|
||||
-pub const SO_KEEPALIVE: ::c_int = 9;
|
||||
-pub const SO_OOBINLINE: ::c_int = 10;
|
||||
-pub const SO_NO_CHECK: ::c_int = 11;
|
||||
-pub const SO_PRIORITY: ::c_int = 12;
|
||||
-pub const SO_LINGER: ::c_int = 13;
|
||||
-pub const SO_BSDCOMPAT: ::c_int = 14;
|
||||
-pub const SO_REUSEPORT: ::c_int = 15;
|
||||
-pub const SO_PASSCRED: ::c_int = 16;
|
||||
-pub const SO_PEERCRED: ::c_int = 17;
|
||||
-pub const SO_RCVLOWAT: ::c_int = 18;
|
||||
-pub const SO_SNDLOWAT: ::c_int = 19;
|
||||
-pub const SO_RCVTIMEO: ::c_int = 20;
|
||||
-pub const SO_SNDTIMEO: ::c_int = 21;
|
||||
-pub const SO_SECURITY_AUTHENTICATION: ::c_int = 22;
|
||||
-pub const SO_SECURITY_ENCRYPTION_TRANSPORT: ::c_int = 23;
|
||||
-pub const SO_SECURITY_ENCRYPTION_NETWORK: ::c_int = 24;
|
||||
-pub const SO_BINDTODEVICE: ::c_int = 25;
|
||||
-pub const SO_ATTACH_FILTER: ::c_int = 26;
|
||||
-pub const SO_DETACH_FILTER: ::c_int = 27;
|
||||
-pub const SO_GET_FILTER: ::c_int = 26;
|
||||
-pub const SO_PEERNAME: ::c_int = 28;
|
||||
-pub const SO_TIMESTAMP: ::c_int = 29;
|
||||
-pub const SO_ACCEPTCONN: ::c_int = 30;
|
||||
-pub const SO_PEERSEC: ::c_int = 31;
|
||||
-pub const SO_PASSSEC: ::c_int = 34;
|
||||
-pub const SO_TIMESTAMPNS: ::c_int = 35;
|
||||
-pub const SCM_TIMESTAMPNS: ::c_int = 35;
|
||||
-pub const SO_MARK: ::c_int = 36;
|
||||
-pub const SO_PROTOCOL: ::c_int = 38;
|
||||
-pub const SO_DOMAIN: ::c_int = 39;
|
||||
-pub const SO_RXQ_OVFL: ::c_int = 40;
|
||||
-pub const SO_WIFI_STATUS: ::c_int = 41;
|
||||
-pub const SCM_WIFI_STATUS: ::c_int = 41;
|
||||
-pub const SO_PEEK_OFF: ::c_int = 42;
|
||||
-pub const SO_NOFCS: ::c_int = 43;
|
||||
-pub const SO_LOCK_FILTER: ::c_int = 44;
|
||||
-pub const SO_SELECT_ERR_QUEUE: ::c_int = 45;
|
||||
-pub const SO_BUSY_POLL: ::c_int = 46;
|
||||
-pub const SO_MAX_PACING_RATE: ::c_int = 47;
|
||||
-pub const SO_BPF_EXTENSIONS: ::c_int = 48;
|
||||
-pub const SO_INCOMING_CPU: ::c_int = 49;
|
||||
-pub const SO_ATTACH_BPF: ::c_int = 50;
|
||||
-pub const SO_DETACH_BPF: ::c_int = 27;
|
||||
-pub const SOCK_STREAM: ::c_int = 1;
|
||||
-pub const SOCK_DGRAM: ::c_int = 2;
|
||||
-pub const SA_ONSTACK: ::c_int = 134217728;
|
||||
-pub const SA_SIGINFO: ::c_int = 4;
|
||||
-pub const SA_NOCLDWAIT: ::c_int = 2;
|
||||
-pub const SIGTTIN: ::c_int = 21;
|
||||
-pub const SIGTTOU: ::c_int = 22;
|
||||
-pub const SIGXCPU: ::c_int = 24;
|
||||
-pub const SIGXFSZ: ::c_int = 25;
|
||||
-pub const SIGVTALRM: ::c_int = 26;
|
||||
-pub const SIGPROF: ::c_int = 27;
|
||||
-pub const SIGWINCH: ::c_int = 28;
|
||||
-pub const SIGCHLD: ::c_int = 17;
|
||||
-pub const SIGBUS: ::c_int = 7;
|
||||
-pub const SIGUSR1: ::c_int = 10;
|
||||
-pub const SIGUSR2: ::c_int = 12;
|
||||
-pub const SIGCONT: ::c_int = 18;
|
||||
-pub const SIGSTOP: ::c_int = 19;
|
||||
-pub const SIGTSTP: ::c_int = 20;
|
||||
-pub const SIGURG: ::c_int = 23;
|
||||
-pub const SIGIO: ::c_int = 29;
|
||||
-pub const SIGSYS: ::c_int = 31;
|
||||
-pub const SIGSTKFLT: ::c_int = 16;
|
||||
-pub const SIGPOLL: ::c_int = 29;
|
||||
-pub const SIGPWR: ::c_int = 30;
|
||||
-pub const SIG_SETMASK: ::c_int = 2;
|
||||
-pub const SIG_BLOCK: ::c_int = 0;
|
||||
-pub const SIG_UNBLOCK: ::c_int = 1;
|
||||
-pub const POLLWRNORM: ::c_short = 256;
|
||||
-pub const POLLWRBAND: ::c_short = 512;
|
||||
-pub const O_ASYNC: ::c_int = 8192;
|
||||
-pub const O_NDELAY: ::c_int = 2048;
|
||||
-pub const PTRACE_DETACH: ::c_uint = 17;
|
||||
-pub const EFD_NONBLOCK: ::c_int = 2048;
|
||||
-pub const F_GETLK: ::c_int = 5;
|
||||
-pub const F_GETOWN: ::c_int = 9;
|
||||
-pub const F_SETOWN: ::c_int = 8;
|
||||
-pub const F_SETLK: ::c_int = 6;
|
||||
-pub const F_SETLKW: ::c_int = 7;
|
||||
-pub const F_RDLCK: ::c_int = 0;
|
||||
-pub const F_WRLCK: ::c_int = 1;
|
||||
-pub const F_UNLCK: ::c_int = 2;
|
||||
-pub const F_OFD_GETLK: ::c_int = 36;
|
||||
-pub const F_OFD_SETLK: ::c_int = 37;
|
||||
-pub const F_OFD_SETLKW: ::c_int = 38;
|
||||
-pub const SFD_NONBLOCK: ::c_int = 2048;
|
||||
-pub const TCSANOW: ::c_int = 0;
|
||||
-pub const TCSADRAIN: ::c_int = 1;
|
||||
-pub const TCSAFLUSH: ::c_int = 2;
|
||||
-pub const TIOCLINUX: ::c_ulong = 21532;
|
||||
-pub const TIOCGSERIAL: ::c_ulong = 21534;
|
||||
-pub const TIOCEXCL: ::c_ulong = 21516;
|
||||
-pub const TIOCNXCL: ::c_ulong = 21517;
|
||||
-pub const TIOCSCTTY: ::c_ulong = 21518;
|
||||
-pub const TIOCSTI: ::c_ulong = 21522;
|
||||
-pub const TIOCMGET: ::c_ulong = 21525;
|
||||
-pub const TIOCMBIS: ::c_ulong = 21526;
|
||||
-pub const TIOCMBIC: ::c_ulong = 21527;
|
||||
-pub const TIOCMSET: ::c_ulong = 21528;
|
||||
-pub const TIOCCONS: ::c_ulong = 21533;
|
||||
-pub const TIOCM_ST: ::c_int = 8;
|
||||
-pub const TIOCM_SR: ::c_int = 16;
|
||||
-pub const TIOCM_CTS: ::c_int = 32;
|
||||
-pub const TIOCM_CAR: ::c_int = 64;
|
||||
-pub const TIOCM_RNG: ::c_int = 128;
|
||||
-pub const TIOCM_DSR: ::c_int = 256;
|
||||
-pub const SFD_CLOEXEC: ::c_int = 524288;
|
||||
-pub const NCCS: usize = 32;
|
||||
-pub const O_TRUNC: ::c_int = 512;
|
||||
-pub const O_CLOEXEC: ::c_int = 524288;
|
||||
-pub const EBFONT: ::c_int = 59;
|
||||
-pub const ENOSTR: ::c_int = 60;
|
||||
-pub const ENODATA: ::c_int = 61;
|
||||
-pub const ETIME: ::c_int = 62;
|
||||
-pub const ENOSR: ::c_int = 63;
|
||||
-pub const ENONET: ::c_int = 64;
|
||||
-pub const ENOPKG: ::c_int = 65;
|
||||
-pub const EREMOTE: ::c_int = 66;
|
||||
-pub const ENOLINK: ::c_int = 67;
|
||||
-pub const EADV: ::c_int = 68;
|
||||
-pub const ESRMNT: ::c_int = 69;
|
||||
-pub const ECOMM: ::c_int = 70;
|
||||
-pub const EPROTO: ::c_int = 71;
|
||||
-pub const EDOTDOT: ::c_int = 73;
|
||||
-pub const SA_NODEFER: ::c_int = 1073741824;
|
||||
-pub const SA_RESETHAND: ::c_int = -2147483648;
|
||||
-pub const SA_RESTART: ::c_int = 268435456;
|
||||
-pub const SA_NOCLDSTOP: ::c_int = 1;
|
||||
-pub const EPOLL_CLOEXEC: ::c_int = 524288;
|
||||
-pub const EFD_CLOEXEC: ::c_int = 524288;
|
||||
-pub const __SIZEOF_PTHREAD_CONDATTR_T: usize = 4;
|
||||
-pub const __SIZEOF_PTHREAD_MUTEXATTR_T: usize = 4;
|
||||
-pub const O_DIRECT: ::c_int = 16384;
|
||||
-pub const O_DIRECTORY: ::c_int = 65536;
|
||||
-pub const O_NOFOLLOW: ::c_int = 131072;
|
||||
-pub const MAP_HUGETLB: ::c_int = 262144;
|
||||
-pub const MAP_LOCKED: ::c_int = 8192;
|
||||
-pub const MAP_NORESERVE: ::c_int = 16384;
|
||||
-pub const MAP_ANON: ::c_int = 32;
|
||||
-pub const MAP_ANONYMOUS: ::c_int = 32;
|
||||
-pub const MAP_DENYWRITE: ::c_int = 2048;
|
||||
-pub const MAP_EXECUTABLE: ::c_int = 4096;
|
||||
-pub const MAP_POPULATE: ::c_int = 32768;
|
||||
-pub const MAP_NONBLOCK: ::c_int = 65536;
|
||||
-pub const MAP_STACK: ::c_int = 131072;
|
||||
-pub const MAP_SYNC : ::c_int = 0x080000;
|
||||
-pub const EDEADLOCK: ::c_int = 35;
|
||||
-pub const EUCLEAN: ::c_int = 117;
|
||||
-pub const ENOTNAM: ::c_int = 118;
|
||||
-pub const ENAVAIL: ::c_int = 119;
|
||||
-pub const EISNAM: ::c_int = 120;
|
||||
-pub const EREMOTEIO: ::c_int = 121;
|
||||
-pub const FIOCLEX: ::c_ulong = 21585;
|
||||
-pub const FIONCLEX: ::c_ulong = 21584;
|
||||
-pub const FIONBIO: ::c_ulong = 21537;
|
||||
-pub const MCL_CURRENT: ::c_int = 1;
|
||||
-pub const MCL_FUTURE: ::c_int = 2;
|
||||
-pub const SIGSTKSZ: ::size_t = 8192;
|
||||
-pub const MINSIGSTKSZ: ::size_t = 2048;
|
||||
-pub const CBAUD: ::tcflag_t = 4111;
|
||||
-pub const TAB1: ::tcflag_t = 2048;
|
||||
-pub const TAB2: ::tcflag_t = 4096;
|
||||
-pub const TAB3: ::tcflag_t = 6144;
|
||||
-pub const CR1: ::tcflag_t = 512;
|
||||
-pub const CR2: ::tcflag_t = 1024;
|
||||
-pub const CR3: ::tcflag_t = 1536;
|
||||
-pub const FF1: ::tcflag_t = 32768;
|
||||
-pub const BS1: ::tcflag_t = 8192;
|
||||
-pub const VT1: ::tcflag_t = 16384;
|
||||
-pub const VWERASE: usize = 14;
|
||||
-pub const VREPRINT: usize = 12;
|
||||
-pub const VSUSP: usize = 10;
|
||||
-pub const VSTART: usize = 8;
|
||||
-pub const VSTOP: usize = 9;
|
||||
-pub const VDISCARD: usize = 13;
|
||||
-pub const VTIME: usize = 5;
|
||||
-pub const IXON: ::tcflag_t = 1024;
|
||||
-pub const IXOFF: ::tcflag_t = 4096;
|
||||
-pub const ONLCR: ::tcflag_t = 4;
|
||||
-pub const CSIZE: ::tcflag_t = 48;
|
||||
-pub const CS6: ::tcflag_t = 16;
|
||||
-pub const CS7: ::tcflag_t = 32;
|
||||
-pub const CS8: ::tcflag_t = 48;
|
||||
-pub const CSTOPB: ::tcflag_t = 64;
|
||||
-pub const CREAD: ::tcflag_t = 128;
|
||||
-pub const PARENB: ::tcflag_t = 256;
|
||||
-pub const PARODD: ::tcflag_t = 512;
|
||||
-pub const HUPCL: ::tcflag_t = 1024;
|
||||
-pub const CLOCAL: ::tcflag_t = 2048;
|
||||
-pub const ECHOKE: ::tcflag_t = 2048;
|
||||
-pub const ECHOE: ::tcflag_t = 16;
|
||||
-pub const ECHOK: ::tcflag_t = 32;
|
||||
-pub const ECHONL: ::tcflag_t = 64;
|
||||
-pub const ECHOPRT: ::tcflag_t = 1024;
|
||||
-pub const ECHOCTL: ::tcflag_t = 512;
|
||||
-pub const ISIG: ::tcflag_t = 1;
|
||||
-pub const ICANON: ::tcflag_t = 2;
|
||||
-pub const PENDIN: ::tcflag_t = 16384;
|
||||
-pub const NOFLSH: ::tcflag_t = 128;
|
||||
-pub const CIBAUD: ::tcflag_t = 269418496;
|
||||
-pub const CBAUDEX: ::tcflag_t = 4096;
|
||||
-pub const VSWTC: usize = 7;
|
||||
-pub const OLCUC: ::tcflag_t = 2;
|
||||
-pub const NLDLY: ::tcflag_t = 256;
|
||||
-pub const CRDLY: ::tcflag_t = 1536;
|
||||
-pub const TABDLY: ::tcflag_t = 6144;
|
||||
-pub const BSDLY: ::tcflag_t = 8192;
|
||||
-pub const FFDLY: ::tcflag_t = 32768;
|
||||
-pub const VTDLY: ::tcflag_t = 16384;
|
||||
-pub const XTABS: ::tcflag_t = 6144;
|
||||
-pub const B0: ::speed_t = 0;
|
||||
-pub const B50: ::speed_t = 1;
|
||||
-pub const B75: ::speed_t = 2;
|
||||
-pub const B110: ::speed_t = 3;
|
||||
-pub const B134: ::speed_t = 4;
|
||||
-pub const B150: ::speed_t = 5;
|
||||
-pub const B200: ::speed_t = 6;
|
||||
-pub const B300: ::speed_t = 7;
|
||||
-pub const B600: ::speed_t = 8;
|
||||
-pub const B1200: ::speed_t = 9;
|
||||
-pub const B1800: ::speed_t = 10;
|
||||
-pub const B2400: ::speed_t = 11;
|
||||
-pub const B4800: ::speed_t = 12;
|
||||
-pub const B9600: ::speed_t = 13;
|
||||
-pub const B19200: ::speed_t = 14;
|
||||
-pub const B38400: ::speed_t = 15;
|
||||
-pub const EXTA: ::speed_t = 14;
|
||||
-pub const EXTB: ::speed_t = 15;
|
||||
-pub const B57600: ::speed_t = 4097;
|
||||
-pub const B115200: ::speed_t = 4098;
|
||||
-pub const B230400: ::speed_t = 4099;
|
||||
-pub const B460800: ::speed_t = 4100;
|
||||
-pub const B500000: ::speed_t = 4101;
|
||||
-pub const B576000: ::speed_t = 4102;
|
||||
-pub const B921600: ::speed_t = 4103;
|
||||
-pub const B1000000: ::speed_t = 4104;
|
||||
-pub const B1152000: ::speed_t = 4105;
|
||||
-pub const B1500000: ::speed_t = 4106;
|
||||
-pub const B2000000: ::speed_t = 4107;
|
||||
-pub const B2500000: ::speed_t = 4108;
|
||||
-pub const B3000000: ::speed_t = 4109;
|
||||
-pub const B3500000: ::speed_t = 4110;
|
||||
-pub const B4000000: ::speed_t = 4111;
|
||||
-pub const VEOL: usize = 11;
|
||||
-pub const VEOL2: usize = 16;
|
||||
-pub const VMIN: usize = 6;
|
||||
-pub const IEXTEN: ::tcflag_t = 32768;
|
||||
-pub const TOSTOP: ::tcflag_t = 256;
|
||||
-pub const FLUSHO: ::tcflag_t = 4096;
|
||||
-pub const EXTPROC: ::tcflag_t = 65536;
|
||||
-pub const TCGETS: ::c_ulong = 21505;
|
||||
-pub const TCSETS: ::c_ulong = 21506;
|
||||
-pub const TCSETSW: ::c_ulong = 21507;
|
||||
-pub const TCSETSF: ::c_ulong = 21508;
|
||||
-pub const TCGETA: ::c_ulong = 21509;
|
||||
-pub const TCSETA: ::c_ulong = 21510;
|
||||
-pub const TCSETAW: ::c_ulong = 21511;
|
||||
-pub const TCSETAF: ::c_ulong = 21512;
|
||||
-pub const TCSBRK: ::c_ulong = 21513;
|
||||
-pub const TCXONC: ::c_ulong = 21514;
|
||||
-pub const TCFLSH: ::c_ulong = 21515;
|
||||
-pub const TIOCINQ: ::c_ulong = 21531;
|
||||
-pub const TIOCGPGRP: ::c_ulong = 21519;
|
||||
-pub const TIOCSPGRP: ::c_ulong = 21520;
|
||||
-pub const TIOCOUTQ: ::c_ulong = 21521;
|
||||
-pub const TIOCGWINSZ: ::c_ulong = 21523;
|
||||
-pub const TIOCSWINSZ: ::c_ulong = 21524;
|
||||
-pub const FIONREAD: ::c_ulong = 21531;
|
||||
-pub const __SIZEOF_PTHREAD_MUTEX_T: usize = 40;
|
||||
-pub const __SIZEOF_PTHREAD_RWLOCK_T: usize = 56;
|
||||
pub const SYS_read: ::c_long = 63;
|
||||
pub const SYS_write: ::c_long = 64;
|
||||
pub const SYS_close: ::c_long = 57;
|
||||
@@ -863,5 +468,314 @@ pub const SYS_pkey_mprotect: ::c_long = 288;
|
||||
pub const SYS_pkey_alloc: ::c_long = 289;
|
||||
pub const SYS_pkey_free: ::c_long = 290;
|
||||
pub const SYS_statx: ::c_long = 291;
|
||||
-pub const SYS_pidfd_open: ::c_long = 434;
|
||||
-pub const SYS_clone3: ::c_long = 435;
|
||||
+
|
||||
+pub const O_APPEND: ::c_int = 1024;
|
||||
+pub const O_DIRECT: ::c_int = 0x4000;
|
||||
+pub const O_DIRECTORY: ::c_int = 0x10000;
|
||||
+pub const O_LARGEFILE: ::c_int = 0;
|
||||
+pub const O_NOFOLLOW: ::c_int = 0x20000;
|
||||
+pub const O_CREAT: ::c_int = 64;
|
||||
+pub const O_EXCL: ::c_int = 128;
|
||||
+pub const O_NOCTTY: ::c_int = 256;
|
||||
+pub const O_NONBLOCK: ::c_int = 2048;
|
||||
+pub const O_SYNC: ::c_int = 1052672;
|
||||
+pub const O_RSYNC: ::c_int = 1052672;
|
||||
+pub const O_DSYNC: ::c_int = 4096;
|
||||
+pub const O_ASYNC: ::c_int = 0x2000;
|
||||
+
|
||||
+pub const TIOCGRS485: ::c_int = 0x542E;
|
||||
+pub const TIOCSRS485: ::c_int = 0x542F;
|
||||
+
|
||||
+pub const SIGSTKSZ: ::size_t = 8192;
|
||||
+pub const MINSIGSTKSZ: ::size_t = 2048;
|
||||
+
|
||||
+pub const ENAMETOOLONG: ::c_int = 36;
|
||||
+pub const ENOLCK: ::c_int = 37;
|
||||
+pub const ENOSYS: ::c_int = 38;
|
||||
+pub const ENOTEMPTY: ::c_int = 39;
|
||||
+pub const ELOOP: ::c_int = 40;
|
||||
+pub const ENOMSG: ::c_int = 42;
|
||||
+pub const EIDRM: ::c_int = 43;
|
||||
+pub const ECHRNG: ::c_int = 44;
|
||||
+pub const EL2NSYNC: ::c_int = 45;
|
||||
+pub const EL3HLT: ::c_int = 46;
|
||||
+pub const EL3RST: ::c_int = 47;
|
||||
+pub const ELNRNG: ::c_int = 48;
|
||||
+pub const EUNATCH: ::c_int = 49;
|
||||
+pub const ENOCSI: ::c_int = 50;
|
||||
+pub const EL2HLT: ::c_int = 51;
|
||||
+pub const EBADE: ::c_int = 52;
|
||||
+pub const EBADR: ::c_int = 53;
|
||||
+pub const EXFULL: ::c_int = 54;
|
||||
+pub const ENOANO: ::c_int = 55;
|
||||
+pub const EBADRQC: ::c_int = 56;
|
||||
+pub const EBADSLT: ::c_int = 57;
|
||||
+pub const EMULTIHOP: ::c_int = 72;
|
||||
+pub const EOVERFLOW: ::c_int = 75;
|
||||
+pub const ENOTUNIQ: ::c_int = 76;
|
||||
+pub const EBADFD: ::c_int = 77;
|
||||
+pub const EBADMSG: ::c_int = 74;
|
||||
+pub const EREMCHG: ::c_int = 78;
|
||||
+pub const ELIBACC: ::c_int = 79;
|
||||
+pub const ELIBBAD: ::c_int = 80;
|
||||
+pub const ELIBSCN: ::c_int = 81;
|
||||
+pub const ELIBMAX: ::c_int = 82;
|
||||
+pub const ELIBEXEC: ::c_int = 83;
|
||||
+pub const EILSEQ: ::c_int = 84;
|
||||
+pub const ERESTART: ::c_int = 85;
|
||||
+pub const ESTRPIPE: ::c_int = 86;
|
||||
+pub const EUSERS: ::c_int = 87;
|
||||
+pub const ENOTSOCK: ::c_int = 88;
|
||||
+pub const EDESTADDRREQ: ::c_int = 89;
|
||||
+pub const EMSGSIZE: ::c_int = 90;
|
||||
+pub const EPROTOTYPE: ::c_int = 91;
|
||||
+pub const ENOPROTOOPT: ::c_int = 92;
|
||||
+pub const EPROTONOSUPPORT: ::c_int = 93;
|
||||
+pub const ESOCKTNOSUPPORT: ::c_int = 94;
|
||||
+pub const EOPNOTSUPP: ::c_int = 95;
|
||||
+pub const EPFNOSUPPORT: ::c_int = 96;
|
||||
+pub const EAFNOSUPPORT: ::c_int = 97;
|
||||
+pub const EADDRINUSE: ::c_int = 98;
|
||||
+pub const EADDRNOTAVAIL: ::c_int = 99;
|
||||
+pub const ENETDOWN: ::c_int = 100;
|
||||
+pub const ENETUNREACH: ::c_int = 101;
|
||||
+pub const ENETRESET: ::c_int = 102;
|
||||
+pub const ECONNABORTED: ::c_int = 103;
|
||||
+pub const ECONNRESET: ::c_int = 104;
|
||||
+pub const ENOBUFS: ::c_int = 105;
|
||||
+pub const EISCONN: ::c_int = 106;
|
||||
+pub const ENOTCONN: ::c_int = 107;
|
||||
+pub const ESHUTDOWN: ::c_int = 108;
|
||||
+pub const ETOOMANYREFS: ::c_int = 109;
|
||||
+pub const ETIMEDOUT: ::c_int = 110;
|
||||
+pub const ECONNREFUSED: ::c_int = 111;
|
||||
+pub const EHOSTDOWN: ::c_int = 112;
|
||||
+pub const EHOSTUNREACH: ::c_int = 113;
|
||||
+pub const EALREADY: ::c_int = 114;
|
||||
+pub const EINPROGRESS: ::c_int = 115;
|
||||
+pub const ESTALE: ::c_int = 116;
|
||||
+pub const EDQUOT: ::c_int = 122;
|
||||
+pub const ENOMEDIUM: ::c_int = 123;
|
||||
+pub const EMEDIUMTYPE: ::c_int = 124;
|
||||
+pub const ECANCELED: ::c_int = 125;
|
||||
+pub const ENOKEY: ::c_int = 126;
|
||||
+pub const EKEYEXPIRED: ::c_int = 127;
|
||||
+pub const EKEYREVOKED: ::c_int = 128;
|
||||
+pub const EKEYREJECTED: ::c_int = 129;
|
||||
+pub const EOWNERDEAD: ::c_int = 130;
|
||||
+pub const ENOTRECOVERABLE: ::c_int = 131;
|
||||
+pub const EHWPOISON: ::c_int = 133;
|
||||
+pub const ERFKILL: ::c_int = 132;
|
||||
+
|
||||
+pub const SA_ONSTACK: ::c_int = 0x08000000;
|
||||
+pub const SA_SIGINFO: ::c_int = 0x00000004;
|
||||
+pub const SA_NOCLDWAIT: ::c_int = 0x00000002;
|
||||
+
|
||||
+pub const SIGCHLD: ::c_int = 17;
|
||||
+pub const SIGBUS: ::c_int = 7;
|
||||
+pub const SIGTTIN: ::c_int = 21;
|
||||
+pub const SIGTTOU: ::c_int = 22;
|
||||
+pub const SIGXCPU: ::c_int = 24;
|
||||
+pub const SIGXFSZ: ::c_int = 25;
|
||||
+pub const SIGVTALRM: ::c_int = 26;
|
||||
+pub const SIGPROF: ::c_int = 27;
|
||||
+pub const SIGWINCH: ::c_int = 28;
|
||||
+pub const SIGUSR1: ::c_int = 10;
|
||||
+pub const SIGUSR2: ::c_int = 12;
|
||||
+pub const SIGCONT: ::c_int = 18;
|
||||
+pub const SIGSTOP: ::c_int = 19;
|
||||
+pub const SIGTSTP: ::c_int = 20;
|
||||
+pub const SIGURG: ::c_int = 23;
|
||||
+pub const SIGIO: ::c_int = 29;
|
||||
+pub const SIGSYS: ::c_int = 31;
|
||||
+pub const SIGSTKFLT: ::c_int = 16;
|
||||
+pub const SIGPOLL: ::c_int = 29;
|
||||
+pub const SIGPWR: ::c_int = 30;
|
||||
+pub const SIG_SETMASK: ::c_int = 2;
|
||||
+pub const SIG_BLOCK: ::c_int = 0x000000;
|
||||
+pub const SIG_UNBLOCK: ::c_int = 0x01;
|
||||
+
|
||||
+pub const F_GETLK: ::c_int = 5;
|
||||
+pub const F_GETOWN: ::c_int = 9;
|
||||
+pub const F_SETLK: ::c_int = 6;
|
||||
+pub const F_SETLKW: ::c_int = 7;
|
||||
+pub const F_SETOWN: ::c_int = 8;
|
||||
+pub const F_OFD_GETLK: ::c_int = 36;
|
||||
+pub const F_OFD_SETLK: ::c_int = 37;
|
||||
+pub const F_OFD_SETLKW: ::c_int = 38;
|
||||
+
|
||||
+pub const VEOF: usize = 4;
|
||||
+
|
||||
+pub const POLLWRNORM: ::c_short = 0x100;
|
||||
+pub const POLLWRBAND: ::c_short = 0x200;
|
||||
+
|
||||
+pub const SOCK_STREAM: ::c_int = 1;
|
||||
+pub const SOCK_DGRAM: ::c_int = 2;
|
||||
+pub const SOL_SOCKET: ::c_int = 1;
|
||||
+pub const SO_REUSEADDR: ::c_int = 2;
|
||||
+pub const SO_TYPE: ::c_int = 3;
|
||||
+pub const SO_ERROR: ::c_int = 4;
|
||||
+pub const SO_DONTROUTE: ::c_int = 5;
|
||||
+pub const SO_BROADCAST: ::c_int = 6;
|
||||
+pub const SO_SNDBUF: ::c_int = 7;
|
||||
+pub const SO_RCVBUF: ::c_int = 8;
|
||||
+pub const SO_KEEPALIVE: ::c_int = 9;
|
||||
+pub const SO_OOBINLINE: ::c_int = 10;
|
||||
+pub const SO_NO_CHECK: ::c_int = 11;
|
||||
+pub const SO_PRIORITY: ::c_int = 12;
|
||||
+pub const SO_LINGER: ::c_int = 13;
|
||||
+pub const SO_BSDCOMPAT: ::c_int = 14;
|
||||
+pub const SO_REUSEPORT: ::c_int = 15;
|
||||
+pub const SO_ACCEPTCONN: ::c_int = 30;
|
||||
+pub const SO_SNDBUFFORCE: ::c_int = 32;
|
||||
+pub const SO_RCVBUFFORCE: ::c_int = 33;
|
||||
+pub const SO_PROTOCOL: ::c_int = 38;
|
||||
+pub const SO_DOMAIN: ::c_int = 39;
|
||||
+
|
||||
+pub const MAP_ANON: ::c_int = 0x0020;
|
||||
+pub const MAP_GROWSDOWN: ::c_int = 0x0100;
|
||||
+pub const MAP_DENYWRITE: ::c_int = 0x0800;
|
||||
+pub const MAP_EXECUTABLE: ::c_int = 0x01000;
|
||||
+pub const MAP_LOCKED: ::c_int = 0x02000;
|
||||
+pub const MAP_NORESERVE: ::c_int = 0x04000;
|
||||
+pub const MAP_POPULATE: ::c_int = 0x08000;
|
||||
+pub const MAP_NONBLOCK: ::c_int = 0x010000;
|
||||
+pub const MAP_STACK: ::c_int = 0x020000;
|
||||
+pub const MAP_HUGETLB: ::c_int = 0x040000;
|
||||
+pub const MAP_SYNC : ::c_int = 0x080000;
|
||||
+
|
||||
+pub const RLIMIT_NLIMITS: ::c_int = 15;
|
||||
+pub const TIOCINQ: ::c_int = ::FIONREAD;
|
||||
+pub const MCL_CURRENT: ::c_int = 0x0001;
|
||||
+pub const MCL_FUTURE: ::c_int = 0x0002;
|
||||
+pub const CBAUD: ::tcflag_t = 0o0010017;
|
||||
+pub const TAB1: ::c_int = 0x00000800;
|
||||
+pub const TAB2: ::c_int = 0x00001000;
|
||||
+pub const TAB3: ::c_int = 0x00001800;
|
||||
+pub const CR1: ::c_int = 0x00000200;
|
||||
+pub const CR2: ::c_int = 0x00000400;
|
||||
+pub const CR3: ::c_int = 0x00000600;
|
||||
+pub const FF1: ::c_int = 0x00008000;
|
||||
+pub const BS1: ::c_int = 0x00002000;
|
||||
+pub const VT1: ::c_int = 0x00004000;
|
||||
+pub const VWERASE: usize = 14;
|
||||
+pub const VREPRINT: usize = 12;
|
||||
+pub const VSUSP: usize = 10;
|
||||
+pub const VSTART: usize = 8;
|
||||
+pub const VSTOP: usize = 9;
|
||||
+pub const VDISCARD: usize = 13;
|
||||
+pub const VTIME: usize = 5;
|
||||
+pub const IXON: ::tcflag_t = 0x00000400;
|
||||
+pub const IXOFF: ::tcflag_t = 0x00001000;
|
||||
+pub const ONLCR: ::tcflag_t = 0x4;
|
||||
+pub const CSIZE: ::tcflag_t = 0x00000030;
|
||||
+pub const CS6: ::tcflag_t = 0x00000010;
|
||||
+pub const CS7: ::tcflag_t = 0x00000020;
|
||||
+pub const CS8: ::tcflag_t = 0x00000030;
|
||||
+pub const CSTOPB: ::tcflag_t = 0x00000040;
|
||||
+pub const CREAD: ::tcflag_t = 0x00000080;
|
||||
+pub const PARENB: ::tcflag_t = 0x00000100;
|
||||
+pub const PARODD: ::tcflag_t = 0x00000200;
|
||||
+pub const HUPCL: ::tcflag_t = 0x00000400;
|
||||
+pub const CLOCAL: ::tcflag_t = 0x00000800;
|
||||
+pub const ECHOKE: ::tcflag_t = 0x00000800;
|
||||
+pub const ECHOE: ::tcflag_t = 0x00000010;
|
||||
+pub const ECHOK: ::tcflag_t = 0x00000020;
|
||||
+pub const ECHONL: ::tcflag_t = 0x00000040;
|
||||
+pub const ECHOPRT: ::tcflag_t = 0x00000400;
|
||||
+pub const ECHOCTL: ::tcflag_t = 0x00000200;
|
||||
+pub const ISIG: ::tcflag_t = 0x00000001;
|
||||
+pub const ICANON: ::tcflag_t = 0x00000002;
|
||||
+pub const PENDIN: ::tcflag_t = 0x00004000;
|
||||
+pub const NOFLSH: ::tcflag_t = 0x00000080;
|
||||
+pub const CIBAUD: ::tcflag_t = 0o02003600000;
|
||||
+pub const CBAUDEX: ::tcflag_t = 0o010000;
|
||||
+pub const VSWTC: usize = 7;
|
||||
+pub const OLCUC: ::tcflag_t = 0o000002;
|
||||
+pub const NLDLY: ::tcflag_t = 0o000400;
|
||||
+pub const CRDLY: ::tcflag_t = 0o003000;
|
||||
+pub const TABDLY: ::tcflag_t = 0o014000;
|
||||
+pub const BSDLY: ::tcflag_t = 0o020000;
|
||||
+pub const FFDLY: ::tcflag_t = 0o100000;
|
||||
+pub const VTDLY: ::tcflag_t = 0o040000;
|
||||
+pub const XTABS: ::tcflag_t = 0o014000;
|
||||
+pub const B57600: ::speed_t = 0o010001;
|
||||
+pub const B115200: ::speed_t = 0o010002;
|
||||
+pub const B230400: ::speed_t = 0o010003;
|
||||
+pub const B460800: ::speed_t = 0o010004;
|
||||
+pub const B500000: ::speed_t = 0o010005;
|
||||
+pub const B576000: ::speed_t = 0o010006;
|
||||
+pub const B921600: ::speed_t = 0o010007;
|
||||
+pub const B1000000: ::speed_t = 0o010010;
|
||||
+pub const B1152000: ::speed_t = 0o010011;
|
||||
+pub const B1500000: ::speed_t = 0o010012;
|
||||
+pub const B2000000: ::speed_t = 0o010013;
|
||||
+pub const B2500000: ::speed_t = 0o010014;
|
||||
+pub const B3000000: ::speed_t = 0o010015;
|
||||
+pub const B3500000: ::speed_t = 0o010016;
|
||||
+pub const B4000000: ::speed_t = 0o010017;
|
||||
+
|
||||
+pub const FIOCLEX: ::c_int = 0x5451;
|
||||
+pub const FIONCLEX: ::c_int = 0x5450;
|
||||
+pub const FIONBIO: ::c_int = 0x5421;
|
||||
+pub const EDEADLK: ::c_int = 35;
|
||||
+pub const EDEADLOCK: ::c_int = EDEADLK;
|
||||
+pub const SO_PASSCRED: ::c_int = 16;
|
||||
+pub const SO_PEERCRED: ::c_int = 17;
|
||||
+pub const SO_RCVLOWAT: ::c_int = 18;
|
||||
+pub const SO_SNDLOWAT: ::c_int = 19;
|
||||
+pub const SO_RCVTIMEO: ::c_int = 20;
|
||||
+pub const SO_SNDTIMEO: ::c_int = 21;
|
||||
+pub const EXTPROC: ::tcflag_t = 0x00010000;
|
||||
+pub const VEOL: usize = 11;
|
||||
+pub const VEOL2: usize = 16;
|
||||
+pub const VMIN: usize = 6;
|
||||
+pub const IEXTEN: ::tcflag_t = 0x00008000;
|
||||
+pub const TOSTOP: ::tcflag_t = 0x00000100;
|
||||
+pub const FLUSHO: ::tcflag_t = 0x00001000;
|
||||
+pub const TCGETS: ::c_int = 0x5401;
|
||||
+pub const TCSETS: ::c_int = 0x5402;
|
||||
+pub const TCSETSW: ::c_int = 0x5403;
|
||||
+pub const TCSETSF: ::c_int = 0x5404;
|
||||
+pub const TCGETA: ::c_int = 0x5405;
|
||||
+pub const TCSETA: ::c_int = 0x5406;
|
||||
+pub const TCSETAW: ::c_int = 0x5407;
|
||||
+pub const TCSETAF: ::c_int = 0x5408;
|
||||
+pub const TCSBRK: ::c_int = 0x5409;
|
||||
+pub const TCXONC: ::c_int = 0x540A;
|
||||
+pub const TCFLSH: ::c_int = 0x540B;
|
||||
+pub const TIOCGSOFTCAR: ::c_int = 0x5419;
|
||||
+pub const TIOCSSOFTCAR: ::c_int = 0x541A;
|
||||
+pub const TIOCLINUX: ::c_int = 0x541C;
|
||||
+pub const TIOCGSERIAL: ::c_int = 0x541E;
|
||||
+pub const TIOCEXCL: ::c_int = 0x540C;
|
||||
+pub const TIOCNXCL: ::c_int = 0x540D;
|
||||
+pub const TIOCSCTTY: ::c_int = 0x540E;
|
||||
+pub const TIOCGPGRP: ::c_int = 0x540F;
|
||||
+pub const TIOCSPGRP: ::c_int = 0x5410;
|
||||
+pub const TIOCOUTQ: ::c_int = 0x5411;
|
||||
+pub const TIOCSTI: ::c_int = 0x5412;
|
||||
+pub const TIOCGWINSZ: ::c_int = 0x5413;
|
||||
+pub const TIOCSWINSZ: ::c_int = 0x5414;
|
||||
+pub const TIOCMGET: ::c_int = 0x5415;
|
||||
+pub const TIOCMBIS: ::c_int = 0x5416;
|
||||
+pub const TIOCMBIC: ::c_int = 0x5417;
|
||||
+pub const TIOCMSET: ::c_int = 0x5418;
|
||||
+pub const FIONREAD: ::c_int = 0x541B;
|
||||
+pub const TIOCCONS: ::c_int = 0x541D;
|
||||
+
|
||||
+pub const TIOCM_LE: ::c_int = 0x001;
|
||||
+pub const TIOCM_DTR: ::c_int = 0x002;
|
||||
+pub const TIOCM_RTS: ::c_int = 0x004;
|
||||
+pub const TIOCM_ST: ::c_int = 0x008;
|
||||
+pub const TIOCM_SR: ::c_int = 0x010;
|
||||
+pub const TIOCM_CTS: ::c_int = 0x020;
|
||||
+pub const TIOCM_CAR: ::c_int = 0x040;
|
||||
+pub const TIOCM_RNG: ::c_int = 0x080;
|
||||
+pub const TIOCM_DSR: ::c_int = 0x100;
|
||||
+pub const TIOCM_CD: ::c_int = TIOCM_CAR;
|
||||
+pub const TIOCM_RI: ::c_int = TIOCM_RNG;
|
||||
+
|
||||
+extern "C" {
|
||||
+ pub fn ioctl(fd: ::c_int, request: ::c_int, ...) -> ::c_int;
|
||||
+}
|
||||
--
|
||||
2.27.0
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -1,40 +0,0 @@
|
||||
SUMMARY = "Rust standard libaries"
|
||||
HOMEPAGE = "http://www.rust-lang.org"
|
||||
SECTION = "devel"
|
||||
LICENSE = "MIT | Apache-2.0"
|
||||
LIC_FILES_CHKSUM = "file://../../COPYRIGHT;md5=93a95682d51b4cb0a633a97046940ef0"
|
||||
|
||||
RUSTLIB_DEP = ""
|
||||
inherit cargo
|
||||
|
||||
DEPENDS:append:libc-musl = " libunwind"
|
||||
# rv32 does not have libunwind ported yet
|
||||
DEPENDS:remove:riscv32 = "libunwind"
|
||||
DEPENDS:remove:riscv64 = "libunwind"
|
||||
|
||||
# Embed bitcode in order to allow compiling both with and without LTO
|
||||
RUSTFLAGS += "-Cembed-bitcode=yes"
|
||||
# Needed so cargo can find libbacktrace
|
||||
RUSTFLAGS += "-L ${STAGING_LIBDIR} -C link-arg=-Wl,-soname,libstd.so"
|
||||
|
||||
S = "${RUSTSRC}/src/libstd"
|
||||
|
||||
CARGO_FEATURES ?= "panic-unwind backtrace"
|
||||
CARGO_BUILD_FLAGS += "--features '${CARGO_FEATURES}'"
|
||||
CARGO_VENDORING_DIRECTORY = "${RUSTSRC}/vendor"
|
||||
|
||||
do_compile:prepend () {
|
||||
export CARGO_TARGET_DIR="${B}"
|
||||
# For Rust 1.13.0 and newer
|
||||
export RUSTC_BOOTSTRAP="1"
|
||||
}
|
||||
|
||||
do_install () {
|
||||
mkdir -p ${D}${rustlibdir}
|
||||
|
||||
# With the incremental build support added in 1.24, the libstd deps directory also includes dependency
|
||||
# files that get installed. Those are really only needed to incrementally rebuild the libstd library
|
||||
# itself and don't need to be installed.
|
||||
rm -f ${B}/${TARGET_SYS}/${BUILD_DIR}/deps/*.d
|
||||
cp ${B}/${TARGET_SYS}/${BUILD_DIR}/deps/* ${D}${rustlibdir}
|
||||
}
|
||||
@@ -1,871 +0,0 @@
|
||||
From 8b86ecf87cf3589861b458f099572ad8487fc6cc Mon Sep 17 00:00:00 2001
|
||||
From: Ralf Anton Beier <ralf_beier@me.com>
|
||||
Date: Sun, 8 Aug 2021 11:05:06 +0200
|
||||
Subject: [PATCH 1/4] Add base definitions for riscv64 + musl
|
||||
|
||||
https://github.com/rust-lang/libc/pull/1994/commits/030a07761f61f3293d53752e60edbd330a9d718d
|
||||
|
||||
Upstream-Status: Submitted [https://github.com/rust-lang/libc/pull/2537]
|
||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||
Signed-off-by: Ralf Anton Beier <ralf_beier@me.com>
|
||||
---
|
||||
.../src/unix/linux_like/linux/musl/b64/mod.rs | 3 +
|
||||
.../linux_like/linux/musl/b64/riscv64/mod.rs | 832 ++++++++++++++++++
|
||||
2 files changed, 835 insertions(+)
|
||||
create mode 100644 vendor/libc/src/unix/linux_like/linux/musl/b64/riscv64/mod.rs
|
||||
|
||||
diff --git a/vendor/libc/src/unix/linux_like/linux/musl/b64/mod.rs b/vendor/libc/src/unix/linux_like/linux/musl/b64/mod.rs
|
||||
index cfcdaaecf..7261b95d2 100644
|
||||
--- a/vendor/libc/src/unix/linux_like/linux/musl/b64/mod.rs
|
||||
+++ b/vendor/libc/src/unix/linux_like/linux/musl/b64/mod.rs
|
||||
@@ -163,6 +163,9 @@ cfg_if! {
|
||||
} else if #[cfg(any(target_arch = "x86_64"))] {
|
||||
mod x86_64;
|
||||
pub use self::x86_64::*;
|
||||
+ } else if #[cfg(any(target_arch = "riscv64"))] {
|
||||
+ mod riscv64;
|
||||
+ pub use self::riscv64::*;
|
||||
} else {
|
||||
// Unknown target_arch
|
||||
}
|
||||
diff --git a/vendor/libc/src/unix/linux_like/linux/musl/b64/riscv64/mod.rs b/vendor/libc/src/unix/linux_like/linux/musl/b64/riscv64/mod.rs
|
||||
new file mode 100644
|
||||
index 000000000..c656189c4
|
||||
--- /dev/null
|
||||
+++ b/vendor/libc/src/unix/linux_like/linux/musl/b64/riscv64/mod.rs
|
||||
@@ -0,0 +1,832 @@
|
||||
+//! RISC-V-specific definitions for 64-bit linux-like values
|
||||
+
|
||||
+pub type c_char = u8;
|
||||
+pub type c_long = i64;
|
||||
+pub type c_ulong = u64;
|
||||
+pub type wchar_t = ::c_int;
|
||||
+
|
||||
+pub type nlink_t = ::c_uint;
|
||||
+pub type blksize_t = ::c_int;
|
||||
+pub type fsblkcnt64_t = ::c_ulong;
|
||||
+pub type fsfilcnt64_t = ::c_ulong;
|
||||
+pub type suseconds_t = i64;
|
||||
+pub type __u64 = ::c_ulonglong;
|
||||
+
|
||||
+s! {
|
||||
+ pub struct pthread_attr_t {
|
||||
+ __size: [::c_ulong; 7],
|
||||
+ }
|
||||
+
|
||||
+ pub struct stat {
|
||||
+ pub st_dev: ::dev_t,
|
||||
+ pub st_ino: ::ino_t,
|
||||
+ pub st_mode: ::mode_t,
|
||||
+ pub st_nlink: ::nlink_t,
|
||||
+ pub st_uid: ::uid_t,
|
||||
+ pub st_gid: ::gid_t,
|
||||
+ pub st_rdev: ::dev_t,
|
||||
+ pub __pad1: ::dev_t,
|
||||
+ pub st_size: ::off_t,
|
||||
+ pub st_blksize: ::blksize_t,
|
||||
+ pub __pad2: ::c_int,
|
||||
+ pub st_blocks: ::blkcnt_t,
|
||||
+ pub st_atime: ::time_t,
|
||||
+ pub st_atime_nsec: ::c_long,
|
||||
+ pub st_mtime: ::time_t,
|
||||
+ pub st_mtime_nsec: ::c_long,
|
||||
+ pub st_ctime: ::time_t,
|
||||
+ pub st_ctime_nsec: ::c_long,
|
||||
+ __unused: [::c_int; 2usize],
|
||||
+ }
|
||||
+
|
||||
+ pub struct stat64 {
|
||||
+ pub st_dev: ::dev_t,
|
||||
+ pub st_ino: ::ino64_t,
|
||||
+ pub st_mode: ::mode_t,
|
||||
+ pub st_nlink: ::nlink_t,
|
||||
+ pub st_uid: ::uid_t,
|
||||
+ pub st_gid: ::gid_t,
|
||||
+ pub st_rdev: ::dev_t,
|
||||
+ pub __pad1: ::dev_t,
|
||||
+ pub st_size: ::off64_t,
|
||||
+ pub st_blksize: ::blksize_t,
|
||||
+ pub __pad2: ::c_int,
|
||||
+ pub st_blocks: ::blkcnt_t,
|
||||
+ pub st_atime: ::time_t,
|
||||
+ pub st_atime_nsec: ::c_long,
|
||||
+ pub st_mtime: ::time_t,
|
||||
+ pub st_mtime_nsec: ::c_long,
|
||||
+ pub st_ctime: ::time_t,
|
||||
+ pub st_ctime_nsec: ::c_long,
|
||||
+ __unused: [::c_int; 2],
|
||||
+ }
|
||||
+
|
||||
+ pub struct statfs {
|
||||
+ pub f_type: ::c_long,
|
||||
+ pub f_bsize: ::c_long,
|
||||
+ pub f_blocks: ::fsblkcnt_t,
|
||||
+ pub f_bfree: ::fsblkcnt_t,
|
||||
+ pub f_bavail: ::fsblkcnt_t,
|
||||
+ pub f_files: ::fsfilcnt_t,
|
||||
+ pub f_ffree: ::fsfilcnt_t,
|
||||
+ pub f_fsid: ::fsid_t,
|
||||
+ pub f_namelen: ::c_long,
|
||||
+ pub f_frsize: ::c_long,
|
||||
+ pub f_flags: ::c_long,
|
||||
+ pub f_spare: [::c_long; 4],
|
||||
+ }
|
||||
+
|
||||
+ pub struct statfs64 {
|
||||
+ pub f_type: ::c_long,
|
||||
+ pub f_bsize: ::c_long,
|
||||
+ pub f_blocks: ::fsblkcnt64_t,
|
||||
+ pub f_bfree: ::fsblkcnt64_t,
|
||||
+ pub f_bavail: ::fsblkcnt64_t,
|
||||
+ pub f_files: ::fsfilcnt64_t,
|
||||
+ pub f_ffree: ::fsfilcnt64_t,
|
||||
+ pub f_fsid: ::fsid_t,
|
||||
+ pub f_namelen: ::c_long,
|
||||
+ pub f_frsize: ::c_long,
|
||||
+ pub f_flags: ::c_long,
|
||||
+ pub f_spare: [::c_long; 4],
|
||||
+ }
|
||||
+
|
||||
+ pub struct statvfs {
|
||||
+ pub f_bsize: ::c_ulong,
|
||||
+ pub f_frsize: ::c_ulong,
|
||||
+ pub f_blocks: ::fsblkcnt_t,
|
||||
+ pub f_bfree: ::fsblkcnt_t,
|
||||
+ pub f_bavail: ::fsblkcnt_t,
|
||||
+ pub f_files: ::fsfilcnt_t,
|
||||
+ pub f_ffree: ::fsfilcnt_t,
|
||||
+ pub f_favail: ::fsfilcnt_t,
|
||||
+ pub f_fsid: ::c_ulong,
|
||||
+ pub f_flag: ::c_ulong,
|
||||
+ pub f_namemax: ::c_ulong,
|
||||
+ pub __f_spare: [::c_int; 6],
|
||||
+ }
|
||||
+
|
||||
+ pub struct statvfs64 {
|
||||
+ pub f_bsize: ::c_ulong,
|
||||
+ pub f_frsize: ::c_ulong,
|
||||
+ pub f_blocks: ::fsblkcnt64_t,
|
||||
+ pub f_bfree: ::fsblkcnt64_t,
|
||||
+ pub f_bavail: ::fsblkcnt64_t,
|
||||
+ pub f_files: ::fsfilcnt64_t,
|
||||
+ pub f_ffree: ::fsfilcnt64_t,
|
||||
+ pub f_favail: ::fsfilcnt64_t,
|
||||
+ pub f_fsid: ::c_ulong,
|
||||
+ pub f_flag: ::c_ulong,
|
||||
+ pub f_namemax: ::c_ulong,
|
||||
+ pub __f_spare: [::c_int; 6],
|
||||
+ }
|
||||
+
|
||||
+ pub struct siginfo_t {
|
||||
+ pub si_signo: ::c_int,
|
||||
+ pub si_errno: ::c_int,
|
||||
+ pub si_code: ::c_int,
|
||||
+ #[doc(hidden)]
|
||||
+ #[deprecated(
|
||||
+ since="0.2.54",
|
||||
+ note="Please leave a comment on \
|
||||
+ https://github.com/rust-lang/libc/pull/1316 if you're using \
|
||||
+ this field"
|
||||
+ )]
|
||||
+ pub _pad: [::c_int; 29],
|
||||
+ _align: [u64; 0],
|
||||
+ }
|
||||
+
|
||||
+ pub struct stack_t {
|
||||
+ pub ss_sp: *mut ::c_void,
|
||||
+ pub ss_flags: ::c_int,
|
||||
+ pub ss_size: ::size_t,
|
||||
+ }
|
||||
+
|
||||
+ pub struct sigaction {
|
||||
+ pub sa_sigaction: ::sighandler_t,
|
||||
+ pub sa_mask: ::sigset_t,
|
||||
+ pub sa_flags: ::c_int,
|
||||
+ pub sa_restorer: ::Option<unsafe extern "C" fn()>,
|
||||
+ }
|
||||
+
|
||||
+ pub struct ipc_perm {
|
||||
+ pub __key: ::key_t,
|
||||
+ pub uid: ::uid_t,
|
||||
+ pub gid: ::gid_t,
|
||||
+ pub cuid: ::uid_t,
|
||||
+ pub cgid: ::gid_t,
|
||||
+ pub mode: ::c_ushort,
|
||||
+ __pad1: ::c_ushort,
|
||||
+ pub __seq: ::c_ushort,
|
||||
+ __pad2: ::c_ushort,
|
||||
+ __unused1: ::c_ulong,
|
||||
+ __unused2: ::c_ulong,
|
||||
+ }
|
||||
+
|
||||
+ pub struct shmid_ds {
|
||||
+ pub shm_perm: ::ipc_perm,
|
||||
+ pub shm_segsz: ::size_t,
|
||||
+ pub shm_atime: ::time_t,
|
||||
+ pub shm_dtime: ::time_t,
|
||||
+ pub shm_ctime: ::time_t,
|
||||
+ pub shm_cpid: ::pid_t,
|
||||
+ pub shm_lpid: ::pid_t,
|
||||
+ pub shm_nattch: ::shmatt_t,
|
||||
+ __unused5: ::c_ulong,
|
||||
+ __unused6: ::c_ulong,
|
||||
+ }
|
||||
+
|
||||
+ pub struct flock {
|
||||
+ pub l_type: ::c_short,
|
||||
+ pub l_whence: ::c_short,
|
||||
+ pub l_start: ::off_t,
|
||||
+ pub l_len: ::off_t,
|
||||
+ pub l_pid: ::pid_t,
|
||||
+ }
|
||||
+
|
||||
+ pub struct flock64 {
|
||||
+ pub l_type: ::c_short,
|
||||
+ pub l_whence: ::c_short,
|
||||
+ pub l_start: ::off64_t,
|
||||
+ pub l_len: ::off64_t,
|
||||
+ pub l_pid: ::pid_t,
|
||||
+ }
|
||||
+
|
||||
+ pub struct ip_mreqn {
|
||||
+ pub imr_multiaddr: ::in_addr,
|
||||
+ pub imr_address: ::in_addr,
|
||||
+ pub imr_ifindex: ::c_int,
|
||||
+ }
|
||||
+}
|
||||
+
|
||||
+pub const POSIX_FADV_DONTNEED: ::c_int = 4;
|
||||
+pub const POSIX_FADV_NOREUSE: ::c_int = 5;
|
||||
+pub const VEOF: usize = 4;
|
||||
+pub const RTLD_DEEPBIND: ::c_int = 0x8;
|
||||
+pub const RTLD_GLOBAL: ::c_int = 0x100;
|
||||
+pub const RTLD_NOLOAD: ::c_int = 0x4;
|
||||
+pub const TIOCGSOFTCAR: ::c_ulong = 21529;
|
||||
+pub const TIOCSSOFTCAR: ::c_ulong = 21530;
|
||||
+pub const TIOCGRS485: ::c_int = 21550;
|
||||
+pub const TIOCSRS485: ::c_int = 21551;
|
||||
+pub const RLIMIT_RSS: ::__rlimit_resource_t = 5;
|
||||
+pub const RLIMIT_AS: ::__rlimit_resource_t = 9;
|
||||
+pub const RLIMIT_MEMLOCK: ::__rlimit_resource_t = 8;
|
||||
+pub const RLIMIT_NOFILE: ::__rlimit_resource_t = 7;
|
||||
+pub const RLIMIT_NPROC: ::__rlimit_resource_t = 6;
|
||||
+pub const O_APPEND: ::c_int = 1024;
|
||||
+pub const O_CREAT: ::c_int = 64;
|
||||
+pub const O_EXCL: ::c_int = 128;
|
||||
+pub const O_NOCTTY: ::c_int = 256;
|
||||
+pub const O_NONBLOCK: ::c_int = 2048;
|
||||
+pub const O_SYNC: ::c_int = 1052672;
|
||||
+pub const O_RSYNC: ::c_int = 1052672;
|
||||
+pub const O_DSYNC: ::c_int = 4096;
|
||||
+pub const O_FSYNC: ::c_int = 1052672;
|
||||
+pub const O_NOATIME: ::c_int = 262144;
|
||||
+pub const O_PATH: ::c_int = 2097152;
|
||||
+pub const O_TMPFILE: ::c_int = 4259840;
|
||||
+pub const MAP_GROWSDOWN: ::c_int = 256;
|
||||
+pub const EDEADLK: ::c_int = 35;
|
||||
+pub const ENAMETOOLONG: ::c_int = 36;
|
||||
+pub const ENOLCK: ::c_int = 37;
|
||||
+pub const ENOSYS: ::c_int = 38;
|
||||
+pub const ENOTEMPTY: ::c_int = 39;
|
||||
+pub const ELOOP: ::c_int = 40;
|
||||
+pub const ENOMSG: ::c_int = 42;
|
||||
+pub const EIDRM: ::c_int = 43;
|
||||
+pub const ECHRNG: ::c_int = 44;
|
||||
+pub const EL2NSYNC: ::c_int = 45;
|
||||
+pub const EL3HLT: ::c_int = 46;
|
||||
+pub const EL3RST: ::c_int = 47;
|
||||
+pub const ELNRNG: ::c_int = 48;
|
||||
+pub const EUNATCH: ::c_int = 49;
|
||||
+pub const ENOCSI: ::c_int = 50;
|
||||
+pub const EL2HLT: ::c_int = 51;
|
||||
+pub const EBADE: ::c_int = 52;
|
||||
+pub const EBADR: ::c_int = 53;
|
||||
+pub const EXFULL: ::c_int = 54;
|
||||
+pub const ENOANO: ::c_int = 55;
|
||||
+pub const EBADRQC: ::c_int = 56;
|
||||
+pub const EBADSLT: ::c_int = 57;
|
||||
+pub const EMULTIHOP: ::c_int = 72;
|
||||
+pub const EOVERFLOW: ::c_int = 75;
|
||||
+pub const ENOTUNIQ: ::c_int = 76;
|
||||
+pub const EBADFD: ::c_int = 77;
|
||||
+pub const EBADMSG: ::c_int = 74;
|
||||
+pub const EREMCHG: ::c_int = 78;
|
||||
+pub const ELIBACC: ::c_int = 79;
|
||||
+pub const ELIBBAD: ::c_int = 80;
|
||||
+pub const ELIBSCN: ::c_int = 81;
|
||||
+pub const ELIBMAX: ::c_int = 82;
|
||||
+pub const ELIBEXEC: ::c_int = 83;
|
||||
+pub const EILSEQ: ::c_int = 84;
|
||||
+pub const ERESTART: ::c_int = 85;
|
||||
+pub const ESTRPIPE: ::c_int = 86;
|
||||
+pub const EUSERS: ::c_int = 87;
|
||||
+pub const ENOTSOCK: ::c_int = 88;
|
||||
+pub const EDESTADDRREQ: ::c_int = 89;
|
||||
+pub const EMSGSIZE: ::c_int = 90;
|
||||
+pub const EPROTOTYPE: ::c_int = 91;
|
||||
+pub const ENOPROTOOPT: ::c_int = 92;
|
||||
+pub const EPROTONOSUPPORT: ::c_int = 93;
|
||||
+pub const ESOCKTNOSUPPORT: ::c_int = 94;
|
||||
+pub const EOPNOTSUPP: ::c_int = 95;
|
||||
+pub const EPFNOSUPPORT: ::c_int = 96;
|
||||
+pub const EAFNOSUPPORT: ::c_int = 97;
|
||||
+pub const EADDRINUSE: ::c_int = 98;
|
||||
+pub const EADDRNOTAVAIL: ::c_int = 99;
|
||||
+pub const ENETDOWN: ::c_int = 100;
|
||||
+pub const ENETUNREACH: ::c_int = 101;
|
||||
+pub const ENETRESET: ::c_int = 102;
|
||||
+pub const ECONNABORTED: ::c_int = 103;
|
||||
+pub const ECONNRESET: ::c_int = 104;
|
||||
+pub const ENOBUFS: ::c_int = 105;
|
||||
+pub const EISCONN: ::c_int = 106;
|
||||
+pub const ENOTCONN: ::c_int = 107;
|
||||
+pub const ESHUTDOWN: ::c_int = 108;
|
||||
+pub const ETOOMANYREFS: ::c_int = 109;
|
||||
+pub const ETIMEDOUT: ::c_int = 110;
|
||||
+pub const ECONNREFUSED: ::c_int = 111;
|
||||
+pub const EHOSTDOWN: ::c_int = 112;
|
||||
+pub const EHOSTUNREACH: ::c_int = 113;
|
||||
+pub const EALREADY: ::c_int = 114;
|
||||
+pub const EINPROGRESS: ::c_int = 115;
|
||||
+pub const ESTALE: ::c_int = 116;
|
||||
+pub const EDQUOT: ::c_int = 122;
|
||||
+pub const ENOMEDIUM: ::c_int = 123;
|
||||
+pub const EMEDIUMTYPE: ::c_int = 124;
|
||||
+pub const ECANCELED: ::c_int = 125;
|
||||
+pub const ENOKEY: ::c_int = 126;
|
||||
+pub const EKEYEXPIRED: ::c_int = 127;
|
||||
+pub const EKEYREVOKED: ::c_int = 128;
|
||||
+pub const EKEYREJECTED: ::c_int = 129;
|
||||
+pub const EOWNERDEAD: ::c_int = 130;
|
||||
+pub const ENOTRECOVERABLE: ::c_int = 131;
|
||||
+pub const EHWPOISON: ::c_int = 133;
|
||||
+pub const ERFKILL: ::c_int = 132;
|
||||
+
|
||||
+pub const SOCK_STREAM: ::c_int = 1;
|
||||
+pub const SOCK_DGRAM: ::c_int = 2;
|
||||
+pub const SA_ONSTACK: ::c_int = 134217728;
|
||||
+pub const SA_SIGINFO: ::c_int = 4;
|
||||
+pub const SA_NOCLDWAIT: ::c_int = 2;
|
||||
+pub const SIGTTIN: ::c_int = 21;
|
||||
+pub const SIGTTOU: ::c_int = 22;
|
||||
+pub const SIGXCPU: ::c_int = 24;
|
||||
+pub const SIGXFSZ: ::c_int = 25;
|
||||
+pub const SIGVTALRM: ::c_int = 26;
|
||||
+pub const SIGPROF: ::c_int = 27;
|
||||
+pub const SIGWINCH: ::c_int = 28;
|
||||
+pub const SIGCHLD: ::c_int = 17;
|
||||
+pub const SIGBUS: ::c_int = 7;
|
||||
+pub const SIGUSR1: ::c_int = 10;
|
||||
+pub const SIGUSR2: ::c_int = 12;
|
||||
+pub const SIGCONT: ::c_int = 18;
|
||||
+pub const SIGSTOP: ::c_int = 19;
|
||||
+pub const SIGTSTP: ::c_int = 20;
|
||||
+pub const SIGURG: ::c_int = 23;
|
||||
+pub const SIGIO: ::c_int = 29;
|
||||
+pub const SIGSYS: ::c_int = 31;
|
||||
+pub const SIGSTKFLT: ::c_int = 16;
|
||||
+pub const SIGPOLL: ::c_int = 29;
|
||||
+pub const SIGPWR: ::c_int = 30;
|
||||
+pub const SIG_SETMASK: ::c_int = 2;
|
||||
+pub const SIG_BLOCK: ::c_int = 0;
|
||||
+pub const SIG_UNBLOCK: ::c_int = 1;
|
||||
+pub const POLLWRNORM: ::c_short = 256;
|
||||
+pub const POLLWRBAND: ::c_short = 512;
|
||||
+pub const O_ASYNC: ::c_int = 8192;
|
||||
+pub const O_NDELAY: ::c_int = 2048;
|
||||
+pub const PTRACE_DETACH: ::c_uint = 17;
|
||||
+pub const EFD_NONBLOCK: ::c_int = 2048;
|
||||
+pub const F_GETLK: ::c_int = 5;
|
||||
+pub const F_GETOWN: ::c_int = 9;
|
||||
+pub const F_SETOWN: ::c_int = 8;
|
||||
+pub const F_SETLK: ::c_int = 6;
|
||||
+pub const F_SETLKW: ::c_int = 7;
|
||||
+pub const F_RDLCK: ::c_int = 0;
|
||||
+pub const F_WRLCK: ::c_int = 1;
|
||||
+pub const F_UNLCK: ::c_int = 2;
|
||||
+pub const F_OFD_GETLK: ::c_int = 36;
|
||||
+pub const F_OFD_SETLK: ::c_int = 37;
|
||||
+pub const F_OFD_SETLKW: ::c_int = 38;
|
||||
+pub const SFD_NONBLOCK: ::c_int = 2048;
|
||||
+pub const TCSANOW: ::c_int = 0;
|
||||
+pub const TCSADRAIN: ::c_int = 1;
|
||||
+pub const TCSAFLUSH: ::c_int = 2;
|
||||
+pub const TIOCLINUX: ::c_ulong = 21532;
|
||||
+pub const TIOCGSERIAL: ::c_ulong = 21534;
|
||||
+pub const TIOCEXCL: ::c_ulong = 21516;
|
||||
+pub const TIOCNXCL: ::c_ulong = 21517;
|
||||
+pub const TIOCSCTTY: ::c_ulong = 21518;
|
||||
+pub const TIOCSTI: ::c_ulong = 21522;
|
||||
+pub const TIOCMGET: ::c_ulong = 21525;
|
||||
+pub const TIOCMBIS: ::c_ulong = 21526;
|
||||
+pub const TIOCMBIC: ::c_ulong = 21527;
|
||||
+pub const TIOCMSET: ::c_ulong = 21528;
|
||||
+pub const TIOCCONS: ::c_ulong = 21533;
|
||||
+pub const TIOCM_ST: ::c_int = 8;
|
||||
+pub const TIOCM_SR: ::c_int = 16;
|
||||
+pub const TIOCM_CTS: ::c_int = 32;
|
||||
+pub const TIOCM_CAR: ::c_int = 64;
|
||||
+pub const TIOCM_RNG: ::c_int = 128;
|
||||
+pub const TIOCM_DSR: ::c_int = 256;
|
||||
+pub const SFD_CLOEXEC: ::c_int = 524288;
|
||||
+pub const NCCS: usize = 32;
|
||||
+pub const O_TRUNC: ::c_int = 512;
|
||||
+pub const O_CLOEXEC: ::c_int = 524288;
|
||||
+pub const EBFONT: ::c_int = 59;
|
||||
+pub const ENOSTR: ::c_int = 60;
|
||||
+pub const ENODATA: ::c_int = 61;
|
||||
+pub const ETIME: ::c_int = 62;
|
||||
+pub const ENOSR: ::c_int = 63;
|
||||
+pub const ENONET: ::c_int = 64;
|
||||
+pub const ENOPKG: ::c_int = 65;
|
||||
+pub const EREMOTE: ::c_int = 66;
|
||||
+pub const ENOLINK: ::c_int = 67;
|
||||
+pub const EADV: ::c_int = 68;
|
||||
+pub const ESRMNT: ::c_int = 69;
|
||||
+pub const ECOMM: ::c_int = 70;
|
||||
+pub const EPROTO: ::c_int = 71;
|
||||
+pub const EDOTDOT: ::c_int = 73;
|
||||
+pub const SA_NODEFER: ::c_int = 1073741824;
|
||||
+pub const SA_RESETHAND: ::c_int = -2147483648;
|
||||
+pub const SA_RESTART: ::c_int = 268435456;
|
||||
+pub const SA_NOCLDSTOP: ::c_int = 1;
|
||||
+pub const EPOLL_CLOEXEC: ::c_int = 524288;
|
||||
+pub const EFD_CLOEXEC: ::c_int = 524288;
|
||||
+pub const __SIZEOF_PTHREAD_CONDATTR_T: usize = 4;
|
||||
+pub const __SIZEOF_PTHREAD_MUTEXATTR_T: usize = 4;
|
||||
+pub const O_DIRECT: ::c_int = 16384;
|
||||
+pub const O_DIRECTORY: ::c_int = 65536;
|
||||
+pub const O_NOFOLLOW: ::c_int = 131072;
|
||||
+pub const MAP_HUGETLB: ::c_int = 262144;
|
||||
+pub const MAP_LOCKED: ::c_int = 8192;
|
||||
+pub const MAP_NORESERVE: ::c_int = 16384;
|
||||
+pub const MAP_ANON: ::c_int = 32;
|
||||
+pub const MAP_ANONYMOUS: ::c_int = 32;
|
||||
+pub const MAP_DENYWRITE: ::c_int = 2048;
|
||||
+pub const MAP_EXECUTABLE: ::c_int = 4096;
|
||||
+pub const MAP_POPULATE: ::c_int = 32768;
|
||||
+pub const MAP_NONBLOCK: ::c_int = 65536;
|
||||
+pub const MAP_STACK: ::c_int = 131072;
|
||||
+pub const MAP_SYNC: ::c_int = 0x080000;
|
||||
+pub const EDEADLOCK: ::c_int = 35;
|
||||
+pub const EUCLEAN: ::c_int = 117;
|
||||
+pub const ENOTNAM: ::c_int = 118;
|
||||
+pub const ENAVAIL: ::c_int = 119;
|
||||
+pub const EISNAM: ::c_int = 120;
|
||||
+pub const EREMOTEIO: ::c_int = 121;
|
||||
+pub const FIOCLEX: ::c_ulong = 21585;
|
||||
+pub const FIONCLEX: ::c_ulong = 21584;
|
||||
+pub const FIONBIO: ::c_ulong = 21537;
|
||||
+pub const MCL_CURRENT: ::c_int = 1;
|
||||
+pub const MCL_FUTURE: ::c_int = 2;
|
||||
+pub const SIGSTKSZ: ::size_t = 8192;
|
||||
+pub const MINSIGSTKSZ: ::size_t = 2048;
|
||||
+pub const CBAUD: ::tcflag_t = 4111;
|
||||
+pub const TAB1: ::tcflag_t = 2048;
|
||||
+pub const TAB2: ::tcflag_t = 4096;
|
||||
+pub const TAB3: ::tcflag_t = 6144;
|
||||
+pub const CR1: ::tcflag_t = 512;
|
||||
+pub const CR2: ::tcflag_t = 1024;
|
||||
+pub const CR3: ::tcflag_t = 1536;
|
||||
+pub const FF1: ::tcflag_t = 32768;
|
||||
+pub const BS1: ::tcflag_t = 8192;
|
||||
+pub const VT1: ::tcflag_t = 16384;
|
||||
+pub const VWERASE: usize = 14;
|
||||
+pub const VREPRINT: usize = 12;
|
||||
+pub const VSUSP: usize = 10;
|
||||
+pub const VSTART: usize = 8;
|
||||
+pub const VSTOP: usize = 9;
|
||||
+pub const VDISCARD: usize = 13;
|
||||
+pub const VTIME: usize = 5;
|
||||
+pub const IXON: ::tcflag_t = 1024;
|
||||
+pub const IXOFF: ::tcflag_t = 4096;
|
||||
+pub const ONLCR: ::tcflag_t = 4;
|
||||
+pub const CSIZE: ::tcflag_t = 48;
|
||||
+pub const CS6: ::tcflag_t = 16;
|
||||
+pub const CS7: ::tcflag_t = 32;
|
||||
+pub const CS8: ::tcflag_t = 48;
|
||||
+pub const CSTOPB: ::tcflag_t = 64;
|
||||
+pub const CREAD: ::tcflag_t = 128;
|
||||
+pub const PARENB: ::tcflag_t = 256;
|
||||
+pub const PARODD: ::tcflag_t = 512;
|
||||
+pub const HUPCL: ::tcflag_t = 1024;
|
||||
+pub const CLOCAL: ::tcflag_t = 2048;
|
||||
+pub const ECHOKE: ::tcflag_t = 2048;
|
||||
+pub const ECHOE: ::tcflag_t = 16;
|
||||
+pub const ECHOK: ::tcflag_t = 32;
|
||||
+pub const ECHONL: ::tcflag_t = 64;
|
||||
+pub const ECHOPRT: ::tcflag_t = 1024;
|
||||
+pub const ECHOCTL: ::tcflag_t = 512;
|
||||
+pub const ISIG: ::tcflag_t = 1;
|
||||
+pub const ICANON: ::tcflag_t = 2;
|
||||
+pub const PENDIN: ::tcflag_t = 16384;
|
||||
+pub const NOFLSH: ::tcflag_t = 128;
|
||||
+pub const CIBAUD: ::tcflag_t = 269418496;
|
||||
+pub const CBAUDEX: ::tcflag_t = 4096;
|
||||
+pub const VSWTC: usize = 7;
|
||||
+pub const OLCUC: ::tcflag_t = 2;
|
||||
+pub const NLDLY: ::tcflag_t = 256;
|
||||
+pub const CRDLY: ::tcflag_t = 1536;
|
||||
+pub const TABDLY: ::tcflag_t = 6144;
|
||||
+pub const BSDLY: ::tcflag_t = 8192;
|
||||
+pub const FFDLY: ::tcflag_t = 32768;
|
||||
+pub const VTDLY: ::tcflag_t = 16384;
|
||||
+pub const XTABS: ::tcflag_t = 6144;
|
||||
+pub const B0: ::speed_t = 0;
|
||||
+pub const B50: ::speed_t = 1;
|
||||
+pub const B75: ::speed_t = 2;
|
||||
+pub const B110: ::speed_t = 3;
|
||||
+pub const B134: ::speed_t = 4;
|
||||
+pub const B150: ::speed_t = 5;
|
||||
+pub const B200: ::speed_t = 6;
|
||||
+pub const B300: ::speed_t = 7;
|
||||
+pub const B600: ::speed_t = 8;
|
||||
+pub const B1200: ::speed_t = 9;
|
||||
+pub const B1800: ::speed_t = 10;
|
||||
+pub const B2400: ::speed_t = 11;
|
||||
+pub const B4800: ::speed_t = 12;
|
||||
+pub const B9600: ::speed_t = 13;
|
||||
+pub const B19200: ::speed_t = 14;
|
||||
+pub const B38400: ::speed_t = 15;
|
||||
+pub const EXTA: ::speed_t = 14;
|
||||
+pub const EXTB: ::speed_t = 15;
|
||||
+pub const B57600: ::speed_t = 4097;
|
||||
+pub const B115200: ::speed_t = 4098;
|
||||
+pub const B230400: ::speed_t = 4099;
|
||||
+pub const B460800: ::speed_t = 4100;
|
||||
+pub const B500000: ::speed_t = 4101;
|
||||
+pub const B576000: ::speed_t = 4102;
|
||||
+pub const B921600: ::speed_t = 4103;
|
||||
+pub const B1000000: ::speed_t = 4104;
|
||||
+pub const B1152000: ::speed_t = 4105;
|
||||
+pub const B1500000: ::speed_t = 4106;
|
||||
+pub const B2000000: ::speed_t = 4107;
|
||||
+pub const B2500000: ::speed_t = 4108;
|
||||
+pub const B3000000: ::speed_t = 4109;
|
||||
+pub const B3500000: ::speed_t = 4110;
|
||||
+pub const B4000000: ::speed_t = 4111;
|
||||
+pub const VEOL: usize = 11;
|
||||
+pub const VEOL2: usize = 16;
|
||||
+pub const VMIN: usize = 6;
|
||||
+pub const IEXTEN: ::tcflag_t = 32768;
|
||||
+pub const TOSTOP: ::tcflag_t = 256;
|
||||
+pub const FLUSHO: ::tcflag_t = 4096;
|
||||
+pub const EXTPROC: ::tcflag_t = 65536;
|
||||
+pub const TCGETS: ::c_ulong = 21505;
|
||||
+pub const TCSETS: ::c_ulong = 21506;
|
||||
+pub const TCSETSW: ::c_ulong = 21507;
|
||||
+pub const TCSETSF: ::c_ulong = 21508;
|
||||
+pub const TCGETA: ::c_ulong = 21509;
|
||||
+pub const TCSETA: ::c_ulong = 21510;
|
||||
+pub const TCSETAW: ::c_ulong = 21511;
|
||||
+pub const TCSETAF: ::c_ulong = 21512;
|
||||
+pub const TCSBRK: ::c_ulong = 21513;
|
||||
+pub const TCXONC: ::c_ulong = 21514;
|
||||
+pub const TCFLSH: ::c_ulong = 21515;
|
||||
+pub const TIOCINQ: ::c_ulong = 21531;
|
||||
+pub const TIOCGPGRP: ::c_ulong = 21519;
|
||||
+pub const TIOCSPGRP: ::c_ulong = 21520;
|
||||
+pub const TIOCOUTQ: ::c_ulong = 21521;
|
||||
+pub const TIOCGWINSZ: ::c_ulong = 21523;
|
||||
+pub const TIOCSWINSZ: ::c_ulong = 21524;
|
||||
+pub const FIONREAD: ::c_ulong = 21531;
|
||||
+pub const __SIZEOF_PTHREAD_MUTEX_T: usize = 40;
|
||||
+pub const __SIZEOF_PTHREAD_RWLOCK_T: usize = 56;
|
||||
+pub const SYS_read: ::c_long = 63;
|
||||
+pub const SYS_write: ::c_long = 64;
|
||||
+pub const SYS_close: ::c_long = 57;
|
||||
+pub const SYS_fstat: ::c_long = 80;
|
||||
+pub const SYS_lseek: ::c_long = 62;
|
||||
+pub const SYS_mmap: ::c_long = 222;
|
||||
+pub const SYS_mprotect: ::c_long = 226;
|
||||
+pub const SYS_munmap: ::c_long = 215;
|
||||
+pub const SYS_brk: ::c_long = 214;
|
||||
+pub const SYS_rt_sigaction: ::c_long = 134;
|
||||
+pub const SYS_rt_sigprocmask: ::c_long = 135;
|
||||
+pub const SYS_rt_sigreturn: ::c_long = 139;
|
||||
+pub const SYS_ioctl: ::c_long = 29;
|
||||
+pub const SYS_pread64: ::c_long = 67;
|
||||
+pub const SYS_pwrite64: ::c_long = 68;
|
||||
+pub const SYS_readv: ::c_long = 65;
|
||||
+pub const SYS_writev: ::c_long = 66;
|
||||
+pub const SYS_sched_yield: ::c_long = 124;
|
||||
+pub const SYS_mremap: ::c_long = 216;
|
||||
+pub const SYS_msync: ::c_long = 227;
|
||||
+pub const SYS_mincore: ::c_long = 232;
|
||||
+pub const SYS_madvise: ::c_long = 233;
|
||||
+pub const SYS_shmget: ::c_long = 194;
|
||||
+pub const SYS_shmat: ::c_long = 196;
|
||||
+pub const SYS_shmctl: ::c_long = 195;
|
||||
+pub const SYS_dup: ::c_long = 23;
|
||||
+pub const SYS_nanosleep: ::c_long = 101;
|
||||
+pub const SYS_getitimer: ::c_long = 102;
|
||||
+pub const SYS_setitimer: ::c_long = 103;
|
||||
+pub const SYS_getpid: ::c_long = 172;
|
||||
+pub const SYS_sendfile: ::c_long = 71;
|
||||
+pub const SYS_socket: ::c_long = 198;
|
||||
+pub const SYS_connect: ::c_long = 203;
|
||||
+pub const SYS_accept: ::c_long = 202;
|
||||
+pub const SYS_sendto: ::c_long = 206;
|
||||
+pub const SYS_recvfrom: ::c_long = 207;
|
||||
+pub const SYS_sendmsg: ::c_long = 211;
|
||||
+pub const SYS_recvmsg: ::c_long = 212;
|
||||
+pub const SYS_shutdown: ::c_long = 210;
|
||||
+pub const SYS_bind: ::c_long = 200;
|
||||
+pub const SYS_listen: ::c_long = 201;
|
||||
+pub const SYS_getsockname: ::c_long = 204;
|
||||
+pub const SYS_getpeername: ::c_long = 205;
|
||||
+pub const SYS_socketpair: ::c_long = 199;
|
||||
+pub const SYS_setsockopt: ::c_long = 208;
|
||||
+pub const SYS_getsockopt: ::c_long = 209;
|
||||
+pub const SYS_clone: ::c_long = 220;
|
||||
+pub const SYS_execve: ::c_long = 221;
|
||||
+pub const SYS_exit: ::c_long = 93;
|
||||
+pub const SYS_wait4: ::c_long = 260;
|
||||
+pub const SYS_kill: ::c_long = 129;
|
||||
+pub const SYS_uname: ::c_long = 160;
|
||||
+pub const SYS_semget: ::c_long = 190;
|
||||
+pub const SYS_semop: ::c_long = 193;
|
||||
+pub const SYS_semctl: ::c_long = 191;
|
||||
+pub const SYS_shmdt: ::c_long = 197;
|
||||
+pub const SYS_msgget: ::c_long = 186;
|
||||
+pub const SYS_msgsnd: ::c_long = 189;
|
||||
+pub const SYS_msgrcv: ::c_long = 188;
|
||||
+pub const SYS_msgctl: ::c_long = 187;
|
||||
+pub const SYS_fcntl: ::c_long = 25;
|
||||
+pub const SYS_flock: ::c_long = 32;
|
||||
+pub const SYS_fsync: ::c_long = 82;
|
||||
+pub const SYS_fdatasync: ::c_long = 83;
|
||||
+pub const SYS_truncate: ::c_long = 45;
|
||||
+pub const SYS_ftruncate: ::c_long = 46;
|
||||
+pub const SYS_getcwd: ::c_long = 17;
|
||||
+pub const SYS_chdir: ::c_long = 49;
|
||||
+pub const SYS_fchdir: ::c_long = 50;
|
||||
+pub const SYS_fchmod: ::c_long = 52;
|
||||
+pub const SYS_fchown: ::c_long = 55;
|
||||
+pub const SYS_umask: ::c_long = 166;
|
||||
+pub const SYS_gettimeofday: ::c_long = 169;
|
||||
+pub const SYS_getrlimit: ::c_long = 163;
|
||||
+pub const SYS_getrusage: ::c_long = 165;
|
||||
+pub const SYS_sysinfo: ::c_long = 179;
|
||||
+pub const SYS_times: ::c_long = 153;
|
||||
+pub const SYS_ptrace: ::c_long = 117;
|
||||
+pub const SYS_getuid: ::c_long = 174;
|
||||
+pub const SYS_syslog: ::c_long = 116;
|
||||
+pub const SYS_getgid: ::c_long = 176;
|
||||
+pub const SYS_setuid: ::c_long = 146;
|
||||
+pub const SYS_setgid: ::c_long = 144;
|
||||
+pub const SYS_geteuid: ::c_long = 175;
|
||||
+pub const SYS_getegid: ::c_long = 177;
|
||||
+pub const SYS_setpgid: ::c_long = 154;
|
||||
+pub const SYS_getppid: ::c_long = 173;
|
||||
+pub const SYS_setsid: ::c_long = 157;
|
||||
+pub const SYS_setreuid: ::c_long = 145;
|
||||
+pub const SYS_setregid: ::c_long = 143;
|
||||
+pub const SYS_getgroups: ::c_long = 158;
|
||||
+pub const SYS_setgroups: ::c_long = 159;
|
||||
+pub const SYS_setresuid: ::c_long = 147;
|
||||
+pub const SYS_getresuid: ::c_long = 148;
|
||||
+pub const SYS_setresgid: ::c_long = 149;
|
||||
+pub const SYS_getresgid: ::c_long = 150;
|
||||
+pub const SYS_getpgid: ::c_long = 155;
|
||||
+pub const SYS_setfsuid: ::c_long = 151;
|
||||
+pub const SYS_setfsgid: ::c_long = 152;
|
||||
+pub const SYS_getsid: ::c_long = 156;
|
||||
+pub const SYS_capget: ::c_long = 90;
|
||||
+pub const SYS_capset: ::c_long = 91;
|
||||
+pub const SYS_rt_sigpending: ::c_long = 136;
|
||||
+pub const SYS_rt_sigtimedwait: ::c_long = 137;
|
||||
+pub const SYS_rt_sigqueueinfo: ::c_long = 138;
|
||||
+pub const SYS_rt_sigsuspend: ::c_long = 133;
|
||||
+pub const SYS_sigaltstack: ::c_long = 132;
|
||||
+pub const SYS_personality: ::c_long = 92;
|
||||
+pub const SYS_statfs: ::c_long = 43;
|
||||
+pub const SYS_fstatfs: ::c_long = 44;
|
||||
+pub const SYS_getpriority: ::c_long = 141;
|
||||
+pub const SYS_setpriority: ::c_long = 140;
|
||||
+pub const SYS_sched_setparam: ::c_long = 118;
|
||||
+pub const SYS_sched_getparam: ::c_long = 121;
|
||||
+pub const SYS_sched_setscheduler: ::c_long = 119;
|
||||
+pub const SYS_sched_getscheduler: ::c_long = 120;
|
||||
+pub const SYS_sched_get_priority_max: ::c_long = 125;
|
||||
+pub const SYS_sched_get_priority_min: ::c_long = 126;
|
||||
+pub const SYS_sched_rr_get_interval: ::c_long = 127;
|
||||
+pub const SYS_mlock: ::c_long = 228;
|
||||
+pub const SYS_munlock: ::c_long = 229;
|
||||
+pub const SYS_mlockall: ::c_long = 230;
|
||||
+pub const SYS_munlockall: ::c_long = 231;
|
||||
+pub const SYS_vhangup: ::c_long = 58;
|
||||
+pub const SYS_pivot_root: ::c_long = 41;
|
||||
+pub const SYS_prctl: ::c_long = 167;
|
||||
+pub const SYS_adjtimex: ::c_long = 171;
|
||||
+pub const SYS_setrlimit: ::c_long = 164;
|
||||
+pub const SYS_chroot: ::c_long = 51;
|
||||
+pub const SYS_sync: ::c_long = 81;
|
||||
+pub const SYS_acct: ::c_long = 89;
|
||||
+pub const SYS_settimeofday: ::c_long = 170;
|
||||
+pub const SYS_mount: ::c_long = 40;
|
||||
+pub const SYS_umount2: ::c_long = 39;
|
||||
+pub const SYS_swapon: ::c_long = 224;
|
||||
+pub const SYS_swapoff: ::c_long = 225;
|
||||
+pub const SYS_reboot: ::c_long = 142;
|
||||
+pub const SYS_sethostname: ::c_long = 161;
|
||||
+pub const SYS_setdomainname: ::c_long = 162;
|
||||
+pub const SYS_init_module: ::c_long = 105;
|
||||
+pub const SYS_delete_module: ::c_long = 106;
|
||||
+pub const SYS_quotactl: ::c_long = 60;
|
||||
+pub const SYS_nfsservctl: ::c_long = 42;
|
||||
+pub const SYS_gettid: ::c_long = 178;
|
||||
+pub const SYS_readahead: ::c_long = 213;
|
||||
+pub const SYS_setxattr: ::c_long = 5;
|
||||
+pub const SYS_lsetxattr: ::c_long = 6;
|
||||
+pub const SYS_fsetxattr: ::c_long = 7;
|
||||
+pub const SYS_getxattr: ::c_long = 8;
|
||||
+pub const SYS_lgetxattr: ::c_long = 9;
|
||||
+pub const SYS_fgetxattr: ::c_long = 10;
|
||||
+pub const SYS_listxattr: ::c_long = 11;
|
||||
+pub const SYS_llistxattr: ::c_long = 12;
|
||||
+pub const SYS_flistxattr: ::c_long = 13;
|
||||
+pub const SYS_removexattr: ::c_long = 14;
|
||||
+pub const SYS_lremovexattr: ::c_long = 15;
|
||||
+pub const SYS_fremovexattr: ::c_long = 16;
|
||||
+pub const SYS_tkill: ::c_long = 130;
|
||||
+pub const SYS_futex: ::c_long = 98;
|
||||
+pub const SYS_sched_setaffinity: ::c_long = 122;
|
||||
+pub const SYS_sched_getaffinity: ::c_long = 123;
|
||||
+pub const SYS_io_setup: ::c_long = 0;
|
||||
+pub const SYS_io_destroy: ::c_long = 1;
|
||||
+pub const SYS_io_getevents: ::c_long = 4;
|
||||
+pub const SYS_io_submit: ::c_long = 2;
|
||||
+pub const SYS_io_cancel: ::c_long = 3;
|
||||
+pub const SYS_lookup_dcookie: ::c_long = 18;
|
||||
+pub const SYS_remap_file_pages: ::c_long = 234;
|
||||
+pub const SYS_getdents64: ::c_long = 61;
|
||||
+pub const SYS_set_tid_address: ::c_long = 96;
|
||||
+pub const SYS_restart_syscall: ::c_long = 128;
|
||||
+pub const SYS_semtimedop: ::c_long = 192;
|
||||
+pub const SYS_fadvise64: ::c_long = 223;
|
||||
+pub const SYS_timer_create: ::c_long = 107;
|
||||
+pub const SYS_timer_settime: ::c_long = 110;
|
||||
+pub const SYS_timer_gettime: ::c_long = 108;
|
||||
+pub const SYS_timer_getoverrun: ::c_long = 109;
|
||||
+pub const SYS_timer_delete: ::c_long = 111;
|
||||
+pub const SYS_clock_settime: ::c_long = 112;
|
||||
+pub const SYS_clock_gettime: ::c_long = 113;
|
||||
+pub const SYS_clock_getres: ::c_long = 114;
|
||||
+pub const SYS_clock_nanosleep: ::c_long = 115;
|
||||
+pub const SYS_exit_group: ::c_long = 94;
|
||||
+pub const SYS_epoll_ctl: ::c_long = 21;
|
||||
+pub const SYS_tgkill: ::c_long = 131;
|
||||
+pub const SYS_mbind: ::c_long = 235;
|
||||
+pub const SYS_set_mempolicy: ::c_long = 237;
|
||||
+pub const SYS_get_mempolicy: ::c_long = 236;
|
||||
+pub const SYS_mq_open: ::c_long = 180;
|
||||
+pub const SYS_mq_unlink: ::c_long = 181;
|
||||
+pub const SYS_mq_timedsend: ::c_long = 182;
|
||||
+pub const SYS_mq_timedreceive: ::c_long = 183;
|
||||
+pub const SYS_mq_notify: ::c_long = 184;
|
||||
+pub const SYS_mq_getsetattr: ::c_long = 185;
|
||||
+pub const SYS_kexec_load: ::c_long = 104;
|
||||
+pub const SYS_waitid: ::c_long = 95;
|
||||
+pub const SYS_add_key: ::c_long = 217;
|
||||
+pub const SYS_request_key: ::c_long = 218;
|
||||
+pub const SYS_keyctl: ::c_long = 219;
|
||||
+pub const SYS_ioprio_set: ::c_long = 30;
|
||||
+pub const SYS_ioprio_get: ::c_long = 31;
|
||||
+pub const SYS_inotify_add_watch: ::c_long = 27;
|
||||
+pub const SYS_inotify_rm_watch: ::c_long = 28;
|
||||
+pub const SYS_migrate_pages: ::c_long = 238;
|
||||
+pub const SYS_openat: ::c_long = 56;
|
||||
+pub const SYS_mkdirat: ::c_long = 34;
|
||||
+pub const SYS_mknodat: ::c_long = 33;
|
||||
+pub const SYS_fchownat: ::c_long = 54;
|
||||
+pub const SYS_newfstatat: ::c_long = 79;
|
||||
+pub const SYS_unlinkat: ::c_long = 35;
|
||||
+pub const SYS_linkat: ::c_long = 37;
|
||||
+pub const SYS_symlinkat: ::c_long = 36;
|
||||
+pub const SYS_readlinkat: ::c_long = 78;
|
||||
+pub const SYS_fchmodat: ::c_long = 53;
|
||||
+pub const SYS_faccessat: ::c_long = 48;
|
||||
+pub const SYS_pselect6: ::c_long = 72;
|
||||
+pub const SYS_ppoll: ::c_long = 73;
|
||||
+pub const SYS_unshare: ::c_long = 97;
|
||||
+pub const SYS_set_robust_list: ::c_long = 99;
|
||||
+pub const SYS_get_robust_list: ::c_long = 100;
|
||||
+pub const SYS_splice: ::c_long = 76;
|
||||
+pub const SYS_tee: ::c_long = 77;
|
||||
+pub const SYS_sync_file_range: ::c_long = 84;
|
||||
+pub const SYS_vmsplice: ::c_long = 75;
|
||||
+pub const SYS_move_pages: ::c_long = 239;
|
||||
+pub const SYS_utimensat: ::c_long = 88;
|
||||
+pub const SYS_epoll_pwait: ::c_long = 22;
|
||||
+pub const SYS_timerfd_create: ::c_long = 85;
|
||||
+pub const SYS_fallocate: ::c_long = 47;
|
||||
+pub const SYS_timerfd_settime: ::c_long = 86;
|
||||
+pub const SYS_timerfd_gettime: ::c_long = 87;
|
||||
+pub const SYS_accept4: ::c_long = 242;
|
||||
+pub const SYS_signalfd4: ::c_long = 74;
|
||||
+pub const SYS_eventfd2: ::c_long = 19;
|
||||
+pub const SYS_epoll_create1: ::c_long = 20;
|
||||
+pub const SYS_dup3: ::c_long = 24;
|
||||
+pub const SYS_pipe2: ::c_long = 59;
|
||||
+pub const SYS_inotify_init1: ::c_long = 26;
|
||||
+pub const SYS_preadv: ::c_long = 69;
|
||||
+pub const SYS_pwritev: ::c_long = 70;
|
||||
+pub const SYS_rt_tgsigqueueinfo: ::c_long = 240;
|
||||
+pub const SYS_perf_event_open: ::c_long = 241;
|
||||
+pub const SYS_recvmmsg: ::c_long = 243;
|
||||
+pub const SYS_fanotify_init: ::c_long = 262;
|
||||
+pub const SYS_fanotify_mark: ::c_long = 263;
|
||||
+pub const SYS_prlimit64: ::c_long = 261;
|
||||
+pub const SYS_name_to_handle_at: ::c_long = 264;
|
||||
+pub const SYS_open_by_handle_at: ::c_long = 265;
|
||||
+pub const SYS_clock_adjtime: ::c_long = 266;
|
||||
+pub const SYS_syncfs: ::c_long = 267;
|
||||
+pub const SYS_sendmmsg: ::c_long = 269;
|
||||
+pub const SYS_setns: ::c_long = 268;
|
||||
+pub const SYS_getcpu: ::c_long = 168;
|
||||
+pub const SYS_process_vm_readv: ::c_long = 270;
|
||||
+pub const SYS_process_vm_writev: ::c_long = 271;
|
||||
+pub const SYS_kcmp: ::c_long = 272;
|
||||
+pub const SYS_finit_module: ::c_long = 273;
|
||||
+pub const SYS_sched_setattr: ::c_long = 274;
|
||||
+pub const SYS_sched_getattr: ::c_long = 275;
|
||||
+pub const SYS_renameat2: ::c_long = 276;
|
||||
+pub const SYS_seccomp: ::c_long = 277;
|
||||
+pub const SYS_getrandom: ::c_long = 278;
|
||||
+pub const SYS_memfd_create: ::c_long = 279;
|
||||
+pub const SYS_bpf: ::c_long = 280;
|
||||
+pub const SYS_execveat: ::c_long = 281;
|
||||
+pub const SYS_userfaultfd: ::c_long = 282;
|
||||
+pub const SYS_membarrier: ::c_long = 283;
|
||||
+pub const SYS_mlock2: ::c_long = 284;
|
||||
+pub const SYS_copy_file_range: ::c_long = 285;
|
||||
+pub const SYS_preadv2: ::c_long = 286;
|
||||
+pub const SYS_pwritev2: ::c_long = 287;
|
||||
+pub const SYS_pkey_mprotect: ::c_long = 288;
|
||||
+pub const SYS_pkey_alloc: ::c_long = 289;
|
||||
+pub const SYS_pkey_free: ::c_long = 290;
|
||||
+pub const SYS_statx: ::c_long = 291;
|
||||
+pub const SYS_pidfd_send_signal: ::c_long = 424;
|
||||
+pub const SYS_io_uring_setup: ::c_long = 425;
|
||||
+pub const SYS_io_uring_enter: ::c_long = 426;
|
||||
+pub const SYS_io_uring_register: ::c_long = 427;
|
||||
+pub const SYS_open_tree: ::c_long = 428;
|
||||
+pub const SYS_move_mount: ::c_long = 429;
|
||||
+pub const SYS_fsopen: ::c_long = 430;
|
||||
+pub const SYS_fsconfig: ::c_long = 431;
|
||||
+pub const SYS_fsmount: ::c_long = 432;
|
||||
+pub const SYS_fspick: ::c_long = 433;
|
||||
+pub const SYS_pidfd_open: ::c_long = 434;
|
||||
+pub const SYS_clone3: ::c_long = 435;
|
||||
+pub const SYS_close_range: ::c_long = 436;
|
||||
+pub const SYS_openat2: ::c_long = 437;
|
||||
+pub const SYS_pidfd_getfd: ::c_long = 438;
|
||||
+pub const SYS_faccessat2: ::c_long = 439;
|
||||
+pub const SYS_process_madvise: ::c_long = 440;
|
||||
+pub const SYS_epoll_pwait2: ::c_long = 441;
|
||||
+pub const SYS_mount_setattr: ::c_long = 442;
|
||||
--
|
||||
2.20.1
|
||||
|
||||
@@ -1,31 +0,0 @@
|
||||
From bd805ef63035ecefa03f67d5ab2e1d79f7daf9bc Mon Sep 17 00:00:00 2001
|
||||
From: Ralf Anton Beier <ralf_beier@me.com>
|
||||
Date: Sun, 8 Aug 2021 11:07:21 +0200
|
||||
Subject: [PATCH 2/4] FIXUP: linux/musl/mod.rs: add riscv64 to b64 set
|
||||
|
||||
https://github.com/rust-lang/libc/pull/1994/commits/30070c822be2ef399b2ba38cdc1d72ac694d65a3
|
||||
|
||||
Upstream-Status: Submitted [https://github.com/rust-lang/libc/pull/2537]
|
||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||
Signed-off-by: Ralf Anton Beier <ralf_beier@me.com>
|
||||
---
|
||||
vendor/libc/src/unix/linux_like/linux/musl/mod.rs | 3 ++-
|
||||
1 file changed, 2 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/vendor/libc/src/unix/linux_like/linux/musl/mod.rs b/vendor/libc/src/unix/linux_like/linux/musl/mod.rs
|
||||
index df596e968..1ab13a712 100644
|
||||
--- a/vendor/libc/src/unix/linux_like/linux/musl/mod.rs
|
||||
+++ b/vendor/libc/src/unix/linux_like/linux/musl/mod.rs
|
||||
@@ -765,7 +765,8 @@ cfg_if! {
|
||||
target_arch = "aarch64",
|
||||
target_arch = "mips64",
|
||||
target_arch = "powerpc64",
|
||||
- target_arch = "s390x"))] {
|
||||
+ target_arch = "s390x",
|
||||
+ target_arch = "riscv64"))] {
|
||||
mod b64;
|
||||
pub use self::b64::*;
|
||||
} else if #[cfg(any(target_arch = "x86",
|
||||
--
|
||||
2.20.1
|
||||
|
||||
@@ -1,689 +0,0 @@
|
||||
From a811c933372b18b98fdef3d5901b512131b27b1c Mon Sep 17 00:00:00 2001
|
||||
From: Ralf Anton Beier <ralf_beier@me.com>
|
||||
Date: Sun, 8 Aug 2021 11:09:17 +0200
|
||||
Subject: [PATCH 3/4] FIXUP Correct definitions to match musl
|
||||
|
||||
https://github.com/rust-lang/libc/pull/1994/commits/5f6a4d9745c79c81be63c708515ab116786554a3
|
||||
|
||||
Upstream-Status: Submitted [https://github.com/rust-lang/libc/pull/2537]
|
||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||
Signed-off-by: Ralf Anton Beier <ralf_beier@me.com>
|
||||
---
|
||||
.../linux_like/linux/musl/b64/riscv64/mod.rs | 655 +++++++++---------
|
||||
1 file changed, 312 insertions(+), 343 deletions(-)
|
||||
|
||||
diff --git a/vendor/libc/src/unix/linux_like/linux/musl/b64/riscv64/mod.rs b/vendor/libc/src/unix/linux_like/linux/musl/b64/riscv64/mod.rs
|
||||
index c656189c4..1799539c2 100644
|
||||
--- a/vendor/libc/src/unix/linux_like/linux/musl/b64/riscv64/mod.rs
|
||||
+++ b/vendor/libc/src/unix/linux_like/linux/musl/b64/riscv64/mod.rs
|
||||
@@ -191,351 +191,8 @@ s! {
|
||||
pub l_len: ::off64_t,
|
||||
pub l_pid: ::pid_t,
|
||||
}
|
||||
-
|
||||
- pub struct ip_mreqn {
|
||||
- pub imr_multiaddr: ::in_addr,
|
||||
- pub imr_address: ::in_addr,
|
||||
- pub imr_ifindex: ::c_int,
|
||||
- }
|
||||
}
|
||||
|
||||
-pub const POSIX_FADV_DONTNEED: ::c_int = 4;
|
||||
-pub const POSIX_FADV_NOREUSE: ::c_int = 5;
|
||||
-pub const VEOF: usize = 4;
|
||||
-pub const RTLD_DEEPBIND: ::c_int = 0x8;
|
||||
-pub const RTLD_GLOBAL: ::c_int = 0x100;
|
||||
-pub const RTLD_NOLOAD: ::c_int = 0x4;
|
||||
-pub const TIOCGSOFTCAR: ::c_ulong = 21529;
|
||||
-pub const TIOCSSOFTCAR: ::c_ulong = 21530;
|
||||
-pub const TIOCGRS485: ::c_int = 21550;
|
||||
-pub const TIOCSRS485: ::c_int = 21551;
|
||||
-pub const RLIMIT_RSS: ::__rlimit_resource_t = 5;
|
||||
-pub const RLIMIT_AS: ::__rlimit_resource_t = 9;
|
||||
-pub const RLIMIT_MEMLOCK: ::__rlimit_resource_t = 8;
|
||||
-pub const RLIMIT_NOFILE: ::__rlimit_resource_t = 7;
|
||||
-pub const RLIMIT_NPROC: ::__rlimit_resource_t = 6;
|
||||
-pub const O_APPEND: ::c_int = 1024;
|
||||
-pub const O_CREAT: ::c_int = 64;
|
||||
-pub const O_EXCL: ::c_int = 128;
|
||||
-pub const O_NOCTTY: ::c_int = 256;
|
||||
-pub const O_NONBLOCK: ::c_int = 2048;
|
||||
-pub const O_SYNC: ::c_int = 1052672;
|
||||
-pub const O_RSYNC: ::c_int = 1052672;
|
||||
-pub const O_DSYNC: ::c_int = 4096;
|
||||
-pub const O_FSYNC: ::c_int = 1052672;
|
||||
-pub const O_NOATIME: ::c_int = 262144;
|
||||
-pub const O_PATH: ::c_int = 2097152;
|
||||
-pub const O_TMPFILE: ::c_int = 4259840;
|
||||
-pub const MAP_GROWSDOWN: ::c_int = 256;
|
||||
-pub const EDEADLK: ::c_int = 35;
|
||||
-pub const ENAMETOOLONG: ::c_int = 36;
|
||||
-pub const ENOLCK: ::c_int = 37;
|
||||
-pub const ENOSYS: ::c_int = 38;
|
||||
-pub const ENOTEMPTY: ::c_int = 39;
|
||||
-pub const ELOOP: ::c_int = 40;
|
||||
-pub const ENOMSG: ::c_int = 42;
|
||||
-pub const EIDRM: ::c_int = 43;
|
||||
-pub const ECHRNG: ::c_int = 44;
|
||||
-pub const EL2NSYNC: ::c_int = 45;
|
||||
-pub const EL3HLT: ::c_int = 46;
|
||||
-pub const EL3RST: ::c_int = 47;
|
||||
-pub const ELNRNG: ::c_int = 48;
|
||||
-pub const EUNATCH: ::c_int = 49;
|
||||
-pub const ENOCSI: ::c_int = 50;
|
||||
-pub const EL2HLT: ::c_int = 51;
|
||||
-pub const EBADE: ::c_int = 52;
|
||||
-pub const EBADR: ::c_int = 53;
|
||||
-pub const EXFULL: ::c_int = 54;
|
||||
-pub const ENOANO: ::c_int = 55;
|
||||
-pub const EBADRQC: ::c_int = 56;
|
||||
-pub const EBADSLT: ::c_int = 57;
|
||||
-pub const EMULTIHOP: ::c_int = 72;
|
||||
-pub const EOVERFLOW: ::c_int = 75;
|
||||
-pub const ENOTUNIQ: ::c_int = 76;
|
||||
-pub const EBADFD: ::c_int = 77;
|
||||
-pub const EBADMSG: ::c_int = 74;
|
||||
-pub const EREMCHG: ::c_int = 78;
|
||||
-pub const ELIBACC: ::c_int = 79;
|
||||
-pub const ELIBBAD: ::c_int = 80;
|
||||
-pub const ELIBSCN: ::c_int = 81;
|
||||
-pub const ELIBMAX: ::c_int = 82;
|
||||
-pub const ELIBEXEC: ::c_int = 83;
|
||||
-pub const EILSEQ: ::c_int = 84;
|
||||
-pub const ERESTART: ::c_int = 85;
|
||||
-pub const ESTRPIPE: ::c_int = 86;
|
||||
-pub const EUSERS: ::c_int = 87;
|
||||
-pub const ENOTSOCK: ::c_int = 88;
|
||||
-pub const EDESTADDRREQ: ::c_int = 89;
|
||||
-pub const EMSGSIZE: ::c_int = 90;
|
||||
-pub const EPROTOTYPE: ::c_int = 91;
|
||||
-pub const ENOPROTOOPT: ::c_int = 92;
|
||||
-pub const EPROTONOSUPPORT: ::c_int = 93;
|
||||
-pub const ESOCKTNOSUPPORT: ::c_int = 94;
|
||||
-pub const EOPNOTSUPP: ::c_int = 95;
|
||||
-pub const EPFNOSUPPORT: ::c_int = 96;
|
||||
-pub const EAFNOSUPPORT: ::c_int = 97;
|
||||
-pub const EADDRINUSE: ::c_int = 98;
|
||||
-pub const EADDRNOTAVAIL: ::c_int = 99;
|
||||
-pub const ENETDOWN: ::c_int = 100;
|
||||
-pub const ENETUNREACH: ::c_int = 101;
|
||||
-pub const ENETRESET: ::c_int = 102;
|
||||
-pub const ECONNABORTED: ::c_int = 103;
|
||||
-pub const ECONNRESET: ::c_int = 104;
|
||||
-pub const ENOBUFS: ::c_int = 105;
|
||||
-pub const EISCONN: ::c_int = 106;
|
||||
-pub const ENOTCONN: ::c_int = 107;
|
||||
-pub const ESHUTDOWN: ::c_int = 108;
|
||||
-pub const ETOOMANYREFS: ::c_int = 109;
|
||||
-pub const ETIMEDOUT: ::c_int = 110;
|
||||
-pub const ECONNREFUSED: ::c_int = 111;
|
||||
-pub const EHOSTDOWN: ::c_int = 112;
|
||||
-pub const EHOSTUNREACH: ::c_int = 113;
|
||||
-pub const EALREADY: ::c_int = 114;
|
||||
-pub const EINPROGRESS: ::c_int = 115;
|
||||
-pub const ESTALE: ::c_int = 116;
|
||||
-pub const EDQUOT: ::c_int = 122;
|
||||
-pub const ENOMEDIUM: ::c_int = 123;
|
||||
-pub const EMEDIUMTYPE: ::c_int = 124;
|
||||
-pub const ECANCELED: ::c_int = 125;
|
||||
-pub const ENOKEY: ::c_int = 126;
|
||||
-pub const EKEYEXPIRED: ::c_int = 127;
|
||||
-pub const EKEYREVOKED: ::c_int = 128;
|
||||
-pub const EKEYREJECTED: ::c_int = 129;
|
||||
-pub const EOWNERDEAD: ::c_int = 130;
|
||||
-pub const ENOTRECOVERABLE: ::c_int = 131;
|
||||
-pub const EHWPOISON: ::c_int = 133;
|
||||
-pub const ERFKILL: ::c_int = 132;
|
||||
-
|
||||
-pub const SOCK_STREAM: ::c_int = 1;
|
||||
-pub const SOCK_DGRAM: ::c_int = 2;
|
||||
-pub const SA_ONSTACK: ::c_int = 134217728;
|
||||
-pub const SA_SIGINFO: ::c_int = 4;
|
||||
-pub const SA_NOCLDWAIT: ::c_int = 2;
|
||||
-pub const SIGTTIN: ::c_int = 21;
|
||||
-pub const SIGTTOU: ::c_int = 22;
|
||||
-pub const SIGXCPU: ::c_int = 24;
|
||||
-pub const SIGXFSZ: ::c_int = 25;
|
||||
-pub const SIGVTALRM: ::c_int = 26;
|
||||
-pub const SIGPROF: ::c_int = 27;
|
||||
-pub const SIGWINCH: ::c_int = 28;
|
||||
-pub const SIGCHLD: ::c_int = 17;
|
||||
-pub const SIGBUS: ::c_int = 7;
|
||||
-pub const SIGUSR1: ::c_int = 10;
|
||||
-pub const SIGUSR2: ::c_int = 12;
|
||||
-pub const SIGCONT: ::c_int = 18;
|
||||
-pub const SIGSTOP: ::c_int = 19;
|
||||
-pub const SIGTSTP: ::c_int = 20;
|
||||
-pub const SIGURG: ::c_int = 23;
|
||||
-pub const SIGIO: ::c_int = 29;
|
||||
-pub const SIGSYS: ::c_int = 31;
|
||||
-pub const SIGSTKFLT: ::c_int = 16;
|
||||
-pub const SIGPOLL: ::c_int = 29;
|
||||
-pub const SIGPWR: ::c_int = 30;
|
||||
-pub const SIG_SETMASK: ::c_int = 2;
|
||||
-pub const SIG_BLOCK: ::c_int = 0;
|
||||
-pub const SIG_UNBLOCK: ::c_int = 1;
|
||||
-pub const POLLWRNORM: ::c_short = 256;
|
||||
-pub const POLLWRBAND: ::c_short = 512;
|
||||
-pub const O_ASYNC: ::c_int = 8192;
|
||||
-pub const O_NDELAY: ::c_int = 2048;
|
||||
-pub const PTRACE_DETACH: ::c_uint = 17;
|
||||
-pub const EFD_NONBLOCK: ::c_int = 2048;
|
||||
-pub const F_GETLK: ::c_int = 5;
|
||||
-pub const F_GETOWN: ::c_int = 9;
|
||||
-pub const F_SETOWN: ::c_int = 8;
|
||||
-pub const F_SETLK: ::c_int = 6;
|
||||
-pub const F_SETLKW: ::c_int = 7;
|
||||
-pub const F_RDLCK: ::c_int = 0;
|
||||
-pub const F_WRLCK: ::c_int = 1;
|
||||
-pub const F_UNLCK: ::c_int = 2;
|
||||
-pub const F_OFD_GETLK: ::c_int = 36;
|
||||
-pub const F_OFD_SETLK: ::c_int = 37;
|
||||
-pub const F_OFD_SETLKW: ::c_int = 38;
|
||||
-pub const SFD_NONBLOCK: ::c_int = 2048;
|
||||
-pub const TCSANOW: ::c_int = 0;
|
||||
-pub const TCSADRAIN: ::c_int = 1;
|
||||
-pub const TCSAFLUSH: ::c_int = 2;
|
||||
-pub const TIOCLINUX: ::c_ulong = 21532;
|
||||
-pub const TIOCGSERIAL: ::c_ulong = 21534;
|
||||
-pub const TIOCEXCL: ::c_ulong = 21516;
|
||||
-pub const TIOCNXCL: ::c_ulong = 21517;
|
||||
-pub const TIOCSCTTY: ::c_ulong = 21518;
|
||||
-pub const TIOCSTI: ::c_ulong = 21522;
|
||||
-pub const TIOCMGET: ::c_ulong = 21525;
|
||||
-pub const TIOCMBIS: ::c_ulong = 21526;
|
||||
-pub const TIOCMBIC: ::c_ulong = 21527;
|
||||
-pub const TIOCMSET: ::c_ulong = 21528;
|
||||
-pub const TIOCCONS: ::c_ulong = 21533;
|
||||
-pub const TIOCM_ST: ::c_int = 8;
|
||||
-pub const TIOCM_SR: ::c_int = 16;
|
||||
-pub const TIOCM_CTS: ::c_int = 32;
|
||||
-pub const TIOCM_CAR: ::c_int = 64;
|
||||
-pub const TIOCM_RNG: ::c_int = 128;
|
||||
-pub const TIOCM_DSR: ::c_int = 256;
|
||||
-pub const SFD_CLOEXEC: ::c_int = 524288;
|
||||
-pub const NCCS: usize = 32;
|
||||
-pub const O_TRUNC: ::c_int = 512;
|
||||
-pub const O_CLOEXEC: ::c_int = 524288;
|
||||
-pub const EBFONT: ::c_int = 59;
|
||||
-pub const ENOSTR: ::c_int = 60;
|
||||
-pub const ENODATA: ::c_int = 61;
|
||||
-pub const ETIME: ::c_int = 62;
|
||||
-pub const ENOSR: ::c_int = 63;
|
||||
-pub const ENONET: ::c_int = 64;
|
||||
-pub const ENOPKG: ::c_int = 65;
|
||||
-pub const EREMOTE: ::c_int = 66;
|
||||
-pub const ENOLINK: ::c_int = 67;
|
||||
-pub const EADV: ::c_int = 68;
|
||||
-pub const ESRMNT: ::c_int = 69;
|
||||
-pub const ECOMM: ::c_int = 70;
|
||||
-pub const EPROTO: ::c_int = 71;
|
||||
-pub const EDOTDOT: ::c_int = 73;
|
||||
-pub const SA_NODEFER: ::c_int = 1073741824;
|
||||
-pub const SA_RESETHAND: ::c_int = -2147483648;
|
||||
-pub const SA_RESTART: ::c_int = 268435456;
|
||||
-pub const SA_NOCLDSTOP: ::c_int = 1;
|
||||
-pub const EPOLL_CLOEXEC: ::c_int = 524288;
|
||||
-pub const EFD_CLOEXEC: ::c_int = 524288;
|
||||
-pub const __SIZEOF_PTHREAD_CONDATTR_T: usize = 4;
|
||||
-pub const __SIZEOF_PTHREAD_MUTEXATTR_T: usize = 4;
|
||||
-pub const O_DIRECT: ::c_int = 16384;
|
||||
-pub const O_DIRECTORY: ::c_int = 65536;
|
||||
-pub const O_NOFOLLOW: ::c_int = 131072;
|
||||
-pub const MAP_HUGETLB: ::c_int = 262144;
|
||||
-pub const MAP_LOCKED: ::c_int = 8192;
|
||||
-pub const MAP_NORESERVE: ::c_int = 16384;
|
||||
-pub const MAP_ANON: ::c_int = 32;
|
||||
-pub const MAP_ANONYMOUS: ::c_int = 32;
|
||||
-pub const MAP_DENYWRITE: ::c_int = 2048;
|
||||
-pub const MAP_EXECUTABLE: ::c_int = 4096;
|
||||
-pub const MAP_POPULATE: ::c_int = 32768;
|
||||
-pub const MAP_NONBLOCK: ::c_int = 65536;
|
||||
-pub const MAP_STACK: ::c_int = 131072;
|
||||
-pub const MAP_SYNC: ::c_int = 0x080000;
|
||||
-pub const EDEADLOCK: ::c_int = 35;
|
||||
-pub const EUCLEAN: ::c_int = 117;
|
||||
-pub const ENOTNAM: ::c_int = 118;
|
||||
-pub const ENAVAIL: ::c_int = 119;
|
||||
-pub const EISNAM: ::c_int = 120;
|
||||
-pub const EREMOTEIO: ::c_int = 121;
|
||||
-pub const FIOCLEX: ::c_ulong = 21585;
|
||||
-pub const FIONCLEX: ::c_ulong = 21584;
|
||||
-pub const FIONBIO: ::c_ulong = 21537;
|
||||
-pub const MCL_CURRENT: ::c_int = 1;
|
||||
-pub const MCL_FUTURE: ::c_int = 2;
|
||||
-pub const SIGSTKSZ: ::size_t = 8192;
|
||||
-pub const MINSIGSTKSZ: ::size_t = 2048;
|
||||
-pub const CBAUD: ::tcflag_t = 4111;
|
||||
-pub const TAB1: ::tcflag_t = 2048;
|
||||
-pub const TAB2: ::tcflag_t = 4096;
|
||||
-pub const TAB3: ::tcflag_t = 6144;
|
||||
-pub const CR1: ::tcflag_t = 512;
|
||||
-pub const CR2: ::tcflag_t = 1024;
|
||||
-pub const CR3: ::tcflag_t = 1536;
|
||||
-pub const FF1: ::tcflag_t = 32768;
|
||||
-pub const BS1: ::tcflag_t = 8192;
|
||||
-pub const VT1: ::tcflag_t = 16384;
|
||||
-pub const VWERASE: usize = 14;
|
||||
-pub const VREPRINT: usize = 12;
|
||||
-pub const VSUSP: usize = 10;
|
||||
-pub const VSTART: usize = 8;
|
||||
-pub const VSTOP: usize = 9;
|
||||
-pub const VDISCARD: usize = 13;
|
||||
-pub const VTIME: usize = 5;
|
||||
-pub const IXON: ::tcflag_t = 1024;
|
||||
-pub const IXOFF: ::tcflag_t = 4096;
|
||||
-pub const ONLCR: ::tcflag_t = 4;
|
||||
-pub const CSIZE: ::tcflag_t = 48;
|
||||
-pub const CS6: ::tcflag_t = 16;
|
||||
-pub const CS7: ::tcflag_t = 32;
|
||||
-pub const CS8: ::tcflag_t = 48;
|
||||
-pub const CSTOPB: ::tcflag_t = 64;
|
||||
-pub const CREAD: ::tcflag_t = 128;
|
||||
-pub const PARENB: ::tcflag_t = 256;
|
||||
-pub const PARODD: ::tcflag_t = 512;
|
||||
-pub const HUPCL: ::tcflag_t = 1024;
|
||||
-pub const CLOCAL: ::tcflag_t = 2048;
|
||||
-pub const ECHOKE: ::tcflag_t = 2048;
|
||||
-pub const ECHOE: ::tcflag_t = 16;
|
||||
-pub const ECHOK: ::tcflag_t = 32;
|
||||
-pub const ECHONL: ::tcflag_t = 64;
|
||||
-pub const ECHOPRT: ::tcflag_t = 1024;
|
||||
-pub const ECHOCTL: ::tcflag_t = 512;
|
||||
-pub const ISIG: ::tcflag_t = 1;
|
||||
-pub const ICANON: ::tcflag_t = 2;
|
||||
-pub const PENDIN: ::tcflag_t = 16384;
|
||||
-pub const NOFLSH: ::tcflag_t = 128;
|
||||
-pub const CIBAUD: ::tcflag_t = 269418496;
|
||||
-pub const CBAUDEX: ::tcflag_t = 4096;
|
||||
-pub const VSWTC: usize = 7;
|
||||
-pub const OLCUC: ::tcflag_t = 2;
|
||||
-pub const NLDLY: ::tcflag_t = 256;
|
||||
-pub const CRDLY: ::tcflag_t = 1536;
|
||||
-pub const TABDLY: ::tcflag_t = 6144;
|
||||
-pub const BSDLY: ::tcflag_t = 8192;
|
||||
-pub const FFDLY: ::tcflag_t = 32768;
|
||||
-pub const VTDLY: ::tcflag_t = 16384;
|
||||
-pub const XTABS: ::tcflag_t = 6144;
|
||||
-pub const B0: ::speed_t = 0;
|
||||
-pub const B50: ::speed_t = 1;
|
||||
-pub const B75: ::speed_t = 2;
|
||||
-pub const B110: ::speed_t = 3;
|
||||
-pub const B134: ::speed_t = 4;
|
||||
-pub const B150: ::speed_t = 5;
|
||||
-pub const B200: ::speed_t = 6;
|
||||
-pub const B300: ::speed_t = 7;
|
||||
-pub const B600: ::speed_t = 8;
|
||||
-pub const B1200: ::speed_t = 9;
|
||||
-pub const B1800: ::speed_t = 10;
|
||||
-pub const B2400: ::speed_t = 11;
|
||||
-pub const B4800: ::speed_t = 12;
|
||||
-pub const B9600: ::speed_t = 13;
|
||||
-pub const B19200: ::speed_t = 14;
|
||||
-pub const B38400: ::speed_t = 15;
|
||||
-pub const EXTA: ::speed_t = 14;
|
||||
-pub const EXTB: ::speed_t = 15;
|
||||
-pub const B57600: ::speed_t = 4097;
|
||||
-pub const B115200: ::speed_t = 4098;
|
||||
-pub const B230400: ::speed_t = 4099;
|
||||
-pub const B460800: ::speed_t = 4100;
|
||||
-pub const B500000: ::speed_t = 4101;
|
||||
-pub const B576000: ::speed_t = 4102;
|
||||
-pub const B921600: ::speed_t = 4103;
|
||||
-pub const B1000000: ::speed_t = 4104;
|
||||
-pub const B1152000: ::speed_t = 4105;
|
||||
-pub const B1500000: ::speed_t = 4106;
|
||||
-pub const B2000000: ::speed_t = 4107;
|
||||
-pub const B2500000: ::speed_t = 4108;
|
||||
-pub const B3000000: ::speed_t = 4109;
|
||||
-pub const B3500000: ::speed_t = 4110;
|
||||
-pub const B4000000: ::speed_t = 4111;
|
||||
-pub const VEOL: usize = 11;
|
||||
-pub const VEOL2: usize = 16;
|
||||
-pub const VMIN: usize = 6;
|
||||
-pub const IEXTEN: ::tcflag_t = 32768;
|
||||
-pub const TOSTOP: ::tcflag_t = 256;
|
||||
-pub const FLUSHO: ::tcflag_t = 4096;
|
||||
-pub const EXTPROC: ::tcflag_t = 65536;
|
||||
-pub const TCGETS: ::c_ulong = 21505;
|
||||
-pub const TCSETS: ::c_ulong = 21506;
|
||||
-pub const TCSETSW: ::c_ulong = 21507;
|
||||
-pub const TCSETSF: ::c_ulong = 21508;
|
||||
-pub const TCGETA: ::c_ulong = 21509;
|
||||
-pub const TCSETA: ::c_ulong = 21510;
|
||||
-pub const TCSETAW: ::c_ulong = 21511;
|
||||
-pub const TCSETAF: ::c_ulong = 21512;
|
||||
-pub const TCSBRK: ::c_ulong = 21513;
|
||||
-pub const TCXONC: ::c_ulong = 21514;
|
||||
-pub const TCFLSH: ::c_ulong = 21515;
|
||||
-pub const TIOCINQ: ::c_ulong = 21531;
|
||||
-pub const TIOCGPGRP: ::c_ulong = 21519;
|
||||
-pub const TIOCSPGRP: ::c_ulong = 21520;
|
||||
-pub const TIOCOUTQ: ::c_ulong = 21521;
|
||||
-pub const TIOCGWINSZ: ::c_ulong = 21523;
|
||||
-pub const TIOCSWINSZ: ::c_ulong = 21524;
|
||||
-pub const FIONREAD: ::c_ulong = 21531;
|
||||
-pub const __SIZEOF_PTHREAD_MUTEX_T: usize = 40;
|
||||
-pub const __SIZEOF_PTHREAD_RWLOCK_T: usize = 56;
|
||||
pub const SYS_read: ::c_long = 63;
|
||||
pub const SYS_write: ::c_long = 64;
|
||||
pub const SYS_close: ::c_long = 57;
|
||||
@@ -830,3 +487,315 @@ pub const SYS_faccessat2: ::c_long = 439;
|
||||
pub const SYS_process_madvise: ::c_long = 440;
|
||||
pub const SYS_epoll_pwait2: ::c_long = 441;
|
||||
pub const SYS_mount_setattr: ::c_long = 442;
|
||||
+
|
||||
+
|
||||
+pub const O_APPEND: ::c_int = 1024;
|
||||
+pub const O_DIRECT: ::c_int = 0x4000;
|
||||
+pub const O_DIRECTORY: ::c_int = 0x10000;
|
||||
+pub const O_LARGEFILE: ::c_int = 0;
|
||||
+pub const O_NOFOLLOW: ::c_int = 0x20000;
|
||||
+pub const O_CREAT: ::c_int = 64;
|
||||
+pub const O_EXCL: ::c_int = 128;
|
||||
+pub const O_NOCTTY: ::c_int = 256;
|
||||
+pub const O_NONBLOCK: ::c_int = 2048;
|
||||
+pub const O_SYNC: ::c_int = 1052672;
|
||||
+pub const O_RSYNC: ::c_int = 1052672;
|
||||
+pub const O_DSYNC: ::c_int = 4096;
|
||||
+pub const O_ASYNC: ::c_int = 0x2000;
|
||||
+
|
||||
+pub const TIOCGRS485: ::c_int = 0x542E;
|
||||
+pub const TIOCSRS485: ::c_int = 0x542F;
|
||||
+
|
||||
+pub const SIGSTKSZ: ::size_t = 8192;
|
||||
+pub const MINSIGSTKSZ: ::size_t = 2048;
|
||||
+
|
||||
+pub const ENAMETOOLONG: ::c_int = 36;
|
||||
+pub const ENOLCK: ::c_int = 37;
|
||||
+pub const ENOSYS: ::c_int = 38;
|
||||
+pub const ENOTEMPTY: ::c_int = 39;
|
||||
+pub const ELOOP: ::c_int = 40;
|
||||
+pub const ENOMSG: ::c_int = 42;
|
||||
+pub const EIDRM: ::c_int = 43;
|
||||
+pub const ECHRNG: ::c_int = 44;
|
||||
+pub const EL2NSYNC: ::c_int = 45;
|
||||
+pub const EL3HLT: ::c_int = 46;
|
||||
+pub const EL3RST: ::c_int = 47;
|
||||
+pub const ELNRNG: ::c_int = 48;
|
||||
+pub const EUNATCH: ::c_int = 49;
|
||||
+pub const ENOCSI: ::c_int = 50;
|
||||
+pub const EL2HLT: ::c_int = 51;
|
||||
+pub const EBADE: ::c_int = 52;
|
||||
+pub const EBADR: ::c_int = 53;
|
||||
+pub const EXFULL: ::c_int = 54;
|
||||
+pub const ENOANO: ::c_int = 55;
|
||||
+pub const EBADRQC: ::c_int = 56;
|
||||
+pub const EBADSLT: ::c_int = 57;
|
||||
+pub const EMULTIHOP: ::c_int = 72;
|
||||
+pub const EOVERFLOW: ::c_int = 75;
|
||||
+pub const ENOTUNIQ: ::c_int = 76;
|
||||
+pub const EBADFD: ::c_int = 77;
|
||||
+pub const EBADMSG: ::c_int = 74;
|
||||
+pub const EREMCHG: ::c_int = 78;
|
||||
+pub const ELIBACC: ::c_int = 79;
|
||||
+pub const ELIBBAD: ::c_int = 80;
|
||||
+pub const ELIBSCN: ::c_int = 81;
|
||||
+pub const ELIBMAX: ::c_int = 82;
|
||||
+pub const ELIBEXEC: ::c_int = 83;
|
||||
+pub const EILSEQ: ::c_int = 84;
|
||||
+pub const ERESTART: ::c_int = 85;
|
||||
+pub const ESTRPIPE: ::c_int = 86;
|
||||
+pub const EUSERS: ::c_int = 87;
|
||||
+pub const ENOTSOCK: ::c_int = 88;
|
||||
+pub const EDESTADDRREQ: ::c_int = 89;
|
||||
+pub const EMSGSIZE: ::c_int = 90;
|
||||
+pub const EPROTOTYPE: ::c_int = 91;
|
||||
+pub const ENOPROTOOPT: ::c_int = 92;
|
||||
+pub const EPROTONOSUPPORT: ::c_int = 93;
|
||||
+pub const ESOCKTNOSUPPORT: ::c_int = 94;
|
||||
+pub const EOPNOTSUPP: ::c_int = 95;
|
||||
+pub const EPFNOSUPPORT: ::c_int = 96;
|
||||
+pub const EAFNOSUPPORT: ::c_int = 97;
|
||||
+pub const EADDRINUSE: ::c_int = 98;
|
||||
+pub const EADDRNOTAVAIL: ::c_int = 99;
|
||||
+pub const ENETDOWN: ::c_int = 100;
|
||||
+pub const ENETUNREACH: ::c_int = 101;
|
||||
+pub const ENETRESET: ::c_int = 102;
|
||||
+pub const ECONNABORTED: ::c_int = 103;
|
||||
+pub const ECONNRESET: ::c_int = 104;
|
||||
+pub const ENOBUFS: ::c_int = 105;
|
||||
+pub const EISCONN: ::c_int = 106;
|
||||
+pub const ENOTCONN: ::c_int = 107;
|
||||
+pub const ESHUTDOWN: ::c_int = 108;
|
||||
+pub const ETOOMANYREFS: ::c_int = 109;
|
||||
+pub const ETIMEDOUT: ::c_int = 110;
|
||||
+pub const ECONNREFUSED: ::c_int = 111;
|
||||
+pub const EHOSTDOWN: ::c_int = 112;
|
||||
+pub const EHOSTUNREACH: ::c_int = 113;
|
||||
+pub const EALREADY: ::c_int = 114;
|
||||
+pub const EINPROGRESS: ::c_int = 115;
|
||||
+pub const ESTALE: ::c_int = 116;
|
||||
+pub const EDQUOT: ::c_int = 122;
|
||||
+pub const ENOMEDIUM: ::c_int = 123;
|
||||
+pub const EMEDIUMTYPE: ::c_int = 124;
|
||||
+pub const ECANCELED: ::c_int = 125;
|
||||
+pub const ENOKEY: ::c_int = 126;
|
||||
+pub const EKEYEXPIRED: ::c_int = 127;
|
||||
+pub const EKEYREVOKED: ::c_int = 128;
|
||||
+pub const EKEYREJECTED: ::c_int = 129;
|
||||
+pub const EOWNERDEAD: ::c_int = 130;
|
||||
+pub const ENOTRECOVERABLE: ::c_int = 131;
|
||||
+pub const EHWPOISON: ::c_int = 133;
|
||||
+pub const ERFKILL: ::c_int = 132;
|
||||
+
|
||||
+pub const SA_ONSTACK: ::c_int = 0x08000000;
|
||||
+pub const SA_SIGINFO: ::c_int = 0x00000004;
|
||||
+pub const SA_NOCLDWAIT: ::c_int = 0x00000002;
|
||||
+
|
||||
+pub const SIGCHLD: ::c_int = 17;
|
||||
+pub const SIGBUS: ::c_int = 7;
|
||||
+pub const SIGTTIN: ::c_int = 21;
|
||||
+pub const SIGTTOU: ::c_int = 22;
|
||||
+pub const SIGXCPU: ::c_int = 24;
|
||||
+pub const SIGXFSZ: ::c_int = 25;
|
||||
+pub const SIGVTALRM: ::c_int = 26;
|
||||
+pub const SIGPROF: ::c_int = 27;
|
||||
+pub const SIGWINCH: ::c_int = 28;
|
||||
+pub const SIGUSR1: ::c_int = 10;
|
||||
+pub const SIGUSR2: ::c_int = 12;
|
||||
+pub const SIGCONT: ::c_int = 18;
|
||||
+pub const SIGSTOP: ::c_int = 19;
|
||||
+pub const SIGTSTP: ::c_int = 20;
|
||||
+pub const SIGURG: ::c_int = 23;
|
||||
+pub const SIGIO: ::c_int = 29;
|
||||
+pub const SIGSYS: ::c_int = 31;
|
||||
+pub const SIGSTKFLT: ::c_int = 16;
|
||||
+pub const SIGPOLL: ::c_int = 29;
|
||||
+pub const SIGPWR: ::c_int = 30;
|
||||
+pub const SIG_SETMASK: ::c_int = 2;
|
||||
+pub const SIG_BLOCK: ::c_int = 0x000000;
|
||||
+pub const SIG_UNBLOCK: ::c_int = 0x01;
|
||||
+
|
||||
+pub const F_GETLK: ::c_int = 5;
|
||||
+pub const F_GETOWN: ::c_int = 9;
|
||||
+pub const F_SETLK: ::c_int = 6;
|
||||
+pub const F_SETLKW: ::c_int = 7;
|
||||
+pub const F_SETOWN: ::c_int = 8;
|
||||
+pub const F_OFD_GETLK: ::c_int = 36;
|
||||
+pub const F_OFD_SETLK: ::c_int = 37;
|
||||
+pub const F_OFD_SETLKW: ::c_int = 38;
|
||||
+
|
||||
+pub const VEOF: usize = 4;
|
||||
+
|
||||
+pub const POLLWRNORM: ::c_short = 0x100;
|
||||
+pub const POLLWRBAND: ::c_short = 0x200;
|
||||
+
|
||||
+pub const SOCK_STREAM: ::c_int = 1;
|
||||
+pub const SOCK_DGRAM: ::c_int = 2;
|
||||
+pub const SOL_SOCKET: ::c_int = 1;
|
||||
+pub const SO_REUSEADDR: ::c_int = 2;
|
||||
+pub const SO_TYPE: ::c_int = 3;
|
||||
+pub const SO_ERROR: ::c_int = 4;
|
||||
+pub const SO_DONTROUTE: ::c_int = 5;
|
||||
+pub const SO_BROADCAST: ::c_int = 6;
|
||||
+pub const SO_SNDBUF: ::c_int = 7;
|
||||
+pub const SO_RCVBUF: ::c_int = 8;
|
||||
+pub const SO_KEEPALIVE: ::c_int = 9;
|
||||
+pub const SO_OOBINLINE: ::c_int = 10;
|
||||
+pub const SO_NO_CHECK: ::c_int = 11;
|
||||
+pub const SO_PRIORITY: ::c_int = 12;
|
||||
+pub const SO_LINGER: ::c_int = 13;
|
||||
+pub const SO_BSDCOMPAT: ::c_int = 14;
|
||||
+pub const SO_REUSEPORT: ::c_int = 15;
|
||||
+pub const SO_ACCEPTCONN: ::c_int = 30;
|
||||
+pub const SO_SNDBUFFORCE: ::c_int = 32;
|
||||
+pub const SO_RCVBUFFORCE: ::c_int = 33;
|
||||
+pub const SO_PROTOCOL: ::c_int = 38;
|
||||
+pub const SO_DOMAIN: ::c_int = 39;
|
||||
+
|
||||
+pub const MAP_ANON: ::c_int = 0x0020;
|
||||
+pub const MAP_GROWSDOWN: ::c_int = 0x0100;
|
||||
+pub const MAP_DENYWRITE: ::c_int = 0x0800;
|
||||
+pub const MAP_EXECUTABLE: ::c_int = 0x01000;
|
||||
+pub const MAP_LOCKED: ::c_int = 0x02000;
|
||||
+pub const MAP_NORESERVE: ::c_int = 0x04000;
|
||||
+pub const MAP_POPULATE: ::c_int = 0x08000;
|
||||
+pub const MAP_NONBLOCK: ::c_int = 0x010000;
|
||||
+pub const MAP_STACK: ::c_int = 0x020000;
|
||||
+pub const MAP_HUGETLB: ::c_int = 0x040000;
|
||||
+pub const MAP_SYNC : ::c_int = 0x080000;
|
||||
+
|
||||
+pub const RLIMIT_NLIMITS: ::c_int = 15;
|
||||
+pub const TIOCINQ: ::c_int = ::FIONREAD;
|
||||
+pub const MCL_CURRENT: ::c_int = 0x0001;
|
||||
+pub const MCL_FUTURE: ::c_int = 0x0002;
|
||||
+pub const CBAUD: ::tcflag_t = 0o0010017;
|
||||
+pub const TAB1: ::c_int = 0x00000800;
|
||||
+pub const TAB2: ::c_int = 0x00001000;
|
||||
+pub const TAB3: ::c_int = 0x00001800;
|
||||
+pub const CR1: ::c_int = 0x00000200;
|
||||
+pub const CR2: ::c_int = 0x00000400;
|
||||
+pub const CR3: ::c_int = 0x00000600;
|
||||
+pub const FF1: ::c_int = 0x00008000;
|
||||
+pub const BS1: ::c_int = 0x00002000;
|
||||
+pub const VT1: ::c_int = 0x00004000;
|
||||
+pub const VWERASE: usize = 14;
|
||||
+pub const VREPRINT: usize = 12;
|
||||
+pub const VSUSP: usize = 10;
|
||||
+pub const VSTART: usize = 8;
|
||||
+pub const VSTOP: usize = 9;
|
||||
+pub const VDISCARD: usize = 13;
|
||||
+pub const VTIME: usize = 5;
|
||||
+pub const IXON: ::tcflag_t = 0x00000400;
|
||||
+pub const IXOFF: ::tcflag_t = 0x00001000;
|
||||
+pub const ONLCR: ::tcflag_t = 0x4;
|
||||
+pub const CSIZE: ::tcflag_t = 0x00000030;
|
||||
+pub const CS6: ::tcflag_t = 0x00000010;
|
||||
+pub const CS7: ::tcflag_t = 0x00000020;
|
||||
+pub const CS8: ::tcflag_t = 0x00000030;
|
||||
+pub const CSTOPB: ::tcflag_t = 0x00000040;
|
||||
+pub const CREAD: ::tcflag_t = 0x00000080;
|
||||
+pub const PARENB: ::tcflag_t = 0x00000100;
|
||||
+pub const PARODD: ::tcflag_t = 0x00000200;
|
||||
+pub const HUPCL: ::tcflag_t = 0x00000400;
|
||||
+pub const CLOCAL: ::tcflag_t = 0x00000800;
|
||||
+pub const ECHOKE: ::tcflag_t = 0x00000800;
|
||||
+pub const ECHOE: ::tcflag_t = 0x00000010;
|
||||
+pub const ECHOK: ::tcflag_t = 0x00000020;
|
||||
+pub const ECHONL: ::tcflag_t = 0x00000040;
|
||||
+pub const ECHOPRT: ::tcflag_t = 0x00000400;
|
||||
+pub const ECHOCTL: ::tcflag_t = 0x00000200;
|
||||
+pub const ISIG: ::tcflag_t = 0x00000001;
|
||||
+pub const ICANON: ::tcflag_t = 0x00000002;
|
||||
+pub const PENDIN: ::tcflag_t = 0x00004000;
|
||||
+pub const NOFLSH: ::tcflag_t = 0x00000080;
|
||||
+pub const CIBAUD: ::tcflag_t = 0o02003600000;
|
||||
+pub const CBAUDEX: ::tcflag_t = 0o010000;
|
||||
+pub const VSWTC: usize = 7;
|
||||
+pub const OLCUC: ::tcflag_t = 0o000002;
|
||||
+pub const NLDLY: ::tcflag_t = 0o000400;
|
||||
+pub const CRDLY: ::tcflag_t = 0o003000;
|
||||
+pub const TABDLY: ::tcflag_t = 0o014000;
|
||||
+pub const BSDLY: ::tcflag_t = 0o020000;
|
||||
+pub const FFDLY: ::tcflag_t = 0o100000;
|
||||
+pub const VTDLY: ::tcflag_t = 0o040000;
|
||||
+pub const XTABS: ::tcflag_t = 0o014000;
|
||||
+pub const B57600: ::speed_t = 0o010001;
|
||||
+pub const B115200: ::speed_t = 0o010002;
|
||||
+pub const B230400: ::speed_t = 0o010003;
|
||||
+pub const B460800: ::speed_t = 0o010004;
|
||||
+pub const B500000: ::speed_t = 0o010005;
|
||||
+pub const B576000: ::speed_t = 0o010006;
|
||||
+pub const B921600: ::speed_t = 0o010007;
|
||||
+pub const B1000000: ::speed_t = 0o010010;
|
||||
+pub const B1152000: ::speed_t = 0o010011;
|
||||
+pub const B1500000: ::speed_t = 0o010012;
|
||||
+pub const B2000000: ::speed_t = 0o010013;
|
||||
+pub const B2500000: ::speed_t = 0o010014;
|
||||
+pub const B3000000: ::speed_t = 0o010015;
|
||||
+pub const B3500000: ::speed_t = 0o010016;
|
||||
+pub const B4000000: ::speed_t = 0o010017;
|
||||
+
|
||||
+pub const FIOCLEX: ::c_int = 0x5451;
|
||||
+pub const FIONCLEX: ::c_int = 0x5450;
|
||||
+pub const FIONBIO: ::c_int = 0x5421;
|
||||
+pub const EDEADLK: ::c_int = 35;
|
||||
+pub const EDEADLOCK: ::c_int = EDEADLK;
|
||||
+pub const SO_PASSCRED: ::c_int = 16;
|
||||
+pub const SO_PEERCRED: ::c_int = 17;
|
||||
+pub const SO_RCVLOWAT: ::c_int = 18;
|
||||
+pub const SO_SNDLOWAT: ::c_int = 19;
|
||||
+pub const SO_RCVTIMEO: ::c_int = 20;
|
||||
+pub const SO_SNDTIMEO: ::c_int = 21;
|
||||
+pub const EXTPROC: ::tcflag_t = 0x00010000;
|
||||
+pub const VEOL: usize = 11;
|
||||
+pub const VEOL2: usize = 16;
|
||||
+pub const VMIN: usize = 6;
|
||||
+pub const IEXTEN: ::tcflag_t = 0x00008000;
|
||||
+pub const TOSTOP: ::tcflag_t = 0x00000100;
|
||||
+pub const FLUSHO: ::tcflag_t = 0x00001000;
|
||||
+pub const TCGETS: ::c_int = 0x5401;
|
||||
+pub const TCSETS: ::c_int = 0x5402;
|
||||
+pub const TCSETSW: ::c_int = 0x5403;
|
||||
+pub const TCSETSF: ::c_int = 0x5404;
|
||||
+pub const TCGETA: ::c_int = 0x5405;
|
||||
+pub const TCSETA: ::c_int = 0x5406;
|
||||
+pub const TCSETAW: ::c_int = 0x5407;
|
||||
+pub const TCSETAF: ::c_int = 0x5408;
|
||||
+pub const TCSBRK: ::c_int = 0x5409;
|
||||
+pub const TCXONC: ::c_int = 0x540A;
|
||||
+pub const TCFLSH: ::c_int = 0x540B;
|
||||
+pub const TIOCGSOFTCAR: ::c_int = 0x5419;
|
||||
+pub const TIOCSSOFTCAR: ::c_int = 0x541A;
|
||||
+pub const TIOCLINUX: ::c_int = 0x541C;
|
||||
+pub const TIOCGSERIAL: ::c_int = 0x541E;
|
||||
+pub const TIOCEXCL: ::c_int = 0x540C;
|
||||
+pub const TIOCNXCL: ::c_int = 0x540D;
|
||||
+pub const TIOCSCTTY: ::c_int = 0x540E;
|
||||
+pub const TIOCGPGRP: ::c_int = 0x540F;
|
||||
+pub const TIOCSPGRP: ::c_int = 0x5410;
|
||||
+pub const TIOCOUTQ: ::c_int = 0x5411;
|
||||
+pub const TIOCSTI: ::c_int = 0x5412;
|
||||
+pub const TIOCGWINSZ: ::c_int = 0x5413;
|
||||
+pub const TIOCSWINSZ: ::c_int = 0x5414;
|
||||
+pub const TIOCMGET: ::c_int = 0x5415;
|
||||
+pub const TIOCMBIS: ::c_int = 0x5416;
|
||||
+pub const TIOCMBIC: ::c_int = 0x5417;
|
||||
+pub const TIOCMSET: ::c_int = 0x5418;
|
||||
+pub const FIONREAD: ::c_int = 0x541B;
|
||||
+pub const TIOCCONS: ::c_int = 0x541D;
|
||||
+
|
||||
+pub const TIOCM_LE: ::c_int = 0x001;
|
||||
+pub const TIOCM_DTR: ::c_int = 0x002;
|
||||
+pub const TIOCM_RTS: ::c_int = 0x004;
|
||||
+pub const TIOCM_ST: ::c_int = 0x008;
|
||||
+pub const TIOCM_SR: ::c_int = 0x010;
|
||||
+pub const TIOCM_CTS: ::c_int = 0x020;
|
||||
+pub const TIOCM_CAR: ::c_int = 0x040;
|
||||
+pub const TIOCM_RNG: ::c_int = 0x080;
|
||||
+pub const TIOCM_DSR: ::c_int = 0x100;
|
||||
+pub const TIOCM_CD: ::c_int = TIOCM_CAR;
|
||||
+pub const TIOCM_RI: ::c_int = TIOCM_RNG;
|
||||
+
|
||||
+extern "C" {
|
||||
+ pub fn ioctl(fd: ::c_int, request: ::c_int, ...) -> ::c_int;
|
||||
+}
|
||||
--
|
||||
2.20.1
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -1,11 +0,0 @@
|
||||
require rust-source-${PV}.inc
|
||||
require libstd-rs.inc
|
||||
|
||||
SRC_URI += " \
|
||||
file://0005-Add-base-definitions-for-riscv64-musl-libc-0.2.93.patch;patchdir=../../ \
|
||||
file://0006-FIXUP-linux-musl-mod.rs-add-riscv64-to-b64-set-libc-.patch;patchdir=../../ \
|
||||
file://0007-FIXUP-Correct-definitions-to-match-musl-libc-0.2.93.patch;patchdir=../../ \
|
||||
file://0008-Update-checksums-for-modified-files-for-rust-1.54.0-.patch;patchdir=../../ \
|
||||
"
|
||||
# libstd moved from src/libstd to library/std in 1.47+
|
||||
S = "${RUSTSRC}/library/std"
|
||||
@@ -1,12 +0,0 @@
|
||||
require rust-source.inc
|
||||
require libstd-rs.inc
|
||||
|
||||
SRC_URI += " \
|
||||
file://0001-Add-base-definitions-for-riscv64-musl.patch;patchdir=../../ \
|
||||
file://0002-FIXUP-linux-musl-mod.rs-add-riscv64-to-b64-set.patch;patchdir=../../ \
|
||||
file://0003-FIXUP-Correct-definitions-to-match-musl.patch;patchdir=../../ \
|
||||
file://0004-Update-checksums-for-modified-files-for-rust.patch;patchdir=../../ \
|
||||
"
|
||||
|
||||
# libstd moved from src/libstd to library/std in 1.47+
|
||||
S = "${RUSTSRC}/library/std"
|
||||
15
recipes-devtools/rust/rust-1.3.0.inc
Normal file
15
recipes-devtools/rust/rust-1.3.0.inc
Normal file
@@ -0,0 +1,15 @@
|
||||
SRC_URI[rust.md5sum] = "ffb3971cc96eccaf2de202f621fd415f"
|
||||
SRC_URI[rust.sha256sum] = "ea02d7bc9e7de5b8be3fe6b37ea9b2bd823f9a532c8e4c47d02f37f24ffa3126"
|
||||
|
||||
## snapshot info taken from rust/src/snapshots.txt
|
||||
## TODO: find a way to add aditional SRC_URIs based on the contents of an
|
||||
## earlier SRC_URI.
|
||||
RS_DATE = "2015-07-26"
|
||||
RS_SRCHASH = "a5c12f4"
|
||||
# linux-x86_64
|
||||
RS_ARCH = "linux-x86_64"
|
||||
RS_HASH = "e451e3bd6e5fcef71e41ae6f3da9fb1cf0e13a0c"
|
||||
RUST_SNAPSHOT = "rust-stage0-${RS_DATE}-${RS_SRCHASH}-${RS_ARCH}-${RS_HASH}.tar.bz2"
|
||||
|
||||
SRC_URI[rust-snapshot.md5sum] = "8f804ec5cebf370c59563a2b35a808cb"
|
||||
SRC_URI[rust-snapshot.sha256sum] = "779943595dd63d6869c747e2a31c13095f9c5354d4530327d6f9310cc580c2ff"
|
||||
@@ -1,371 +0,0 @@
|
||||
|
||||
# Right now this is focused on arm-specific tune features.
|
||||
# We get away with this for now as one can only use x86-64 as the build host
|
||||
# (not arm).
|
||||
# Note that TUNE_FEATURES is _always_ refering to the target, so we really
|
||||
# don't want to use this for the host/build.
|
||||
def llvm_features_from_tune(d):
|
||||
f = []
|
||||
feat = d.getVar('TUNE_FEATURES')
|
||||
if not feat:
|
||||
return []
|
||||
feat = frozenset(feat.split())
|
||||
|
||||
mach_overrides = d.getVar('MACHINEOVERRIDES')
|
||||
mach_overrides = frozenset(mach_overrides.split(':'))
|
||||
|
||||
if 'vfpv4' in feat:
|
||||
f.append("+vfp4")
|
||||
if 'vfpv3' in feat:
|
||||
f.append("+vfp3")
|
||||
if 'vfpv3d16' in feat:
|
||||
f.append("+d16")
|
||||
|
||||
if 'vfpv2' in feat or 'vfp' in feat:
|
||||
f.append("+vfp2")
|
||||
|
||||
if 'mips32' in feat:
|
||||
f.append("+mips32")
|
||||
|
||||
if 'mips32r2' in feat:
|
||||
f.append("+mips32r2")
|
||||
|
||||
if target_is_armv7(d):
|
||||
f.append('+v7')
|
||||
|
||||
if 'neon' in feat:
|
||||
f.append("+neon")
|
||||
else:
|
||||
f.append("-neon")
|
||||
|
||||
if ('armv6' in mach_overrides) or ('armv6' in feat):
|
||||
f.append("+v6")
|
||||
if 'armv5te' in feat:
|
||||
f.append("+strict-align")
|
||||
f.append("+v5te")
|
||||
elif 'armv5' in feat:
|
||||
f.append("+strict-align")
|
||||
f.append("+v5")
|
||||
|
||||
if ('armv4' in mach_overrides) or ('armv4' in feat):
|
||||
f.append("+strict-align")
|
||||
|
||||
if 'dsp' in feat:
|
||||
f.append("+dsp")
|
||||
|
||||
if 'thumb' in feat:
|
||||
if d.getVar('ARM_THUMB_OPT') == "thumb":
|
||||
if target_is_armv7(d):
|
||||
f.append('+thumb2')
|
||||
f.append("+thumb-mode")
|
||||
|
||||
if 'cortexa5' in feat:
|
||||
f.append("+a5")
|
||||
if 'cortexa7' in feat:
|
||||
f.append("+a7")
|
||||
if 'cortexa9' in feat:
|
||||
f.append("+a9")
|
||||
if 'cortexa15' in feat:
|
||||
f.append("+a15")
|
||||
if 'cortexa17' in feat:
|
||||
f.append("+a17")
|
||||
if ('riscv64' in feat) or ('riscv32' in feat):
|
||||
f.append("+a,+c,+d,+f,+m")
|
||||
return f
|
||||
llvm_features_from_tune[vardepvalue] = "${@llvm_features_from_tune(d)}"
|
||||
|
||||
# TARGET_CC_ARCH changes from build/cross/target so it'll do the right thing
|
||||
# this should go away when https://github.com/rust-lang/rust/pull/31709 is
|
||||
# stable (1.9.0?)
|
||||
def llvm_features_from_cc_arch(d):
|
||||
f = []
|
||||
feat = d.getVar('TARGET_CC_ARCH')
|
||||
if not feat:
|
||||
return []
|
||||
feat = frozenset(feat.split())
|
||||
|
||||
if '-mmmx' in feat:
|
||||
f.append("+mmx")
|
||||
if '-msse' in feat:
|
||||
f.append("+sse")
|
||||
if '-msse2' in feat:
|
||||
f.append("+sse2")
|
||||
if '-msse3' in feat:
|
||||
f.append("+sse3")
|
||||
if '-mssse3' in feat:
|
||||
f.append("+ssse3")
|
||||
if '-msse4.1' in feat:
|
||||
f.append("+sse4.1")
|
||||
if '-msse4.2' in feat:
|
||||
f.append("+sse4.2")
|
||||
if '-msse4a' in feat:
|
||||
f.append("+sse4a")
|
||||
if '-mavx' in feat:
|
||||
f.append("+avx")
|
||||
if '-mavx2' in feat:
|
||||
f.append("+avx2")
|
||||
|
||||
return f
|
||||
|
||||
def llvm_features_from_target_fpu(d):
|
||||
# TARGET_FPU can be hard or soft. +soft-float tell llvm to use soft float
|
||||
# ABI. There is no option for hard.
|
||||
|
||||
fpu = d.getVar('TARGET_FPU', True)
|
||||
return ["+soft-float"] if fpu == "soft" else []
|
||||
|
||||
def llvm_features(d):
|
||||
return ','.join(llvm_features_from_tune(d) +
|
||||
llvm_features_from_cc_arch(d) +
|
||||
llvm_features_from_target_fpu(d))
|
||||
|
||||
|
||||
## arm-unknown-linux-gnueabihf
|
||||
DATA_LAYOUT[arm-eabi] = "e-m:e-p:32:32-i64:64-v128:64:128-a:0:32-n32-S64"
|
||||
LLVM_TARGET[arm-eabi] = "${RUST_TARGET_SYS}"
|
||||
TARGET_ENDIAN[arm-eabi] = "little"
|
||||
TARGET_POINTER_WIDTH[arm-eabi] = "32"
|
||||
TARGET_C_INT_WIDTH[arm-eabi] = "32"
|
||||
MAX_ATOMIC_WIDTH[arm-eabi] = "64"
|
||||
FEATURES[arm-eabi] = "+v6,+vfp2"
|
||||
|
||||
## armv7-unknown-linux-gnueabihf
|
||||
DATA_LAYOUT[armv7-eabi] = "e-m:e-p:32:32-i64:64-v128:64:128-a:0:32-n32-S64"
|
||||
LLVM_TARGET[armv7-eabi] = "${RUST_TARGET_SYS}"
|
||||
TARGET_ENDIAN[armv7-eabi] = "little"
|
||||
TARGET_POINTER_WIDTH[armv7-eabi] = "32"
|
||||
TARGET_C_INT_WIDTH[armv7-eabi] = "32"
|
||||
MAX_ATOMIC_WIDTH[armv7-eabi] = "64"
|
||||
FEATURES[armv7-eabi] = "+v7,+vfp2,+thumb2"
|
||||
|
||||
## aarch64-unknown-linux-{gnu, musl}
|
||||
DATA_LAYOUT[aarch64] = "e-m:e-i8:8:32-i16:16:32-i64:64-i128:128-n32:64-S128"
|
||||
LLVM_TARGET[aarch64] = "${RUST_TARGET_SYS}"
|
||||
TARGET_ENDIAN[aarch64] = "little"
|
||||
TARGET_POINTER_WIDTH[aarch64] = "64"
|
||||
TARGET_C_INT_WIDTH[aarch64] = "32"
|
||||
MAX_ATOMIC_WIDTH[aarch64] = "128"
|
||||
|
||||
## x86_64-unknown-linux-{gnu, musl}
|
||||
DATA_LAYOUT[x86_64] = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
|
||||
LLVM_TARGET[x86_64] = "${RUST_TARGET_SYS}"
|
||||
TARGET_ENDIAN[x86_64] = "little"
|
||||
TARGET_POINTER_WIDTH[x86_64] = "64"
|
||||
TARGET_C_INT_WIDTH[x86_64] = "32"
|
||||
MAX_ATOMIC_WIDTH[x86_64] = "64"
|
||||
|
||||
## x86_64-unknown-linux-gnux32
|
||||
DATA_LAYOUT[x86_64-x32] = "e-m:e-p:32:32-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
|
||||
LLVM_TARGET[x86_64-x32] = "${RUST_TARGET_SYS}"
|
||||
TARGET_ENDIAN[x86_64-x32] = "little"
|
||||
TARGET_POINTER_WIDTH[x86_64-x32] = "32"
|
||||
TARGET_C_INT_WIDTH[x86_64-x32] = "32"
|
||||
MAX_ATOMIC_WIDTH[x86_64-x32] = "64"
|
||||
|
||||
## i686-unknown-linux-{gnu, musl}
|
||||
DATA_LAYOUT[i686] = "e-m:e-p:32:32-f64:32:64-f80:32-n8:16:32-S128"
|
||||
LLVM_TARGET[i686] = "${RUST_TARGET_SYS}"
|
||||
TARGET_ENDIAN[i686] = "little"
|
||||
TARGET_POINTER_WIDTH[i686] = "32"
|
||||
TARGET_C_INT_WIDTH[i686] = "32"
|
||||
MAX_ATOMIC_WIDTH[i686] = "64"
|
||||
|
||||
## XXX: a bit of a hack so qemux86 builds, clone of i686-unknown-linux-{gnu, musl} above
|
||||
DATA_LAYOUT[i586] = "e-m:e-p:32:32-f64:32:64-f80:32-n8:16:32-S128"
|
||||
LLVM_TARGET[i586] = "${RUST_TARGET_SYS}"
|
||||
TARGET_ENDIAN[i586] = "little"
|
||||
TARGET_POINTER_WIDTH[i586] = "32"
|
||||
TARGET_C_INT_WIDTH[i586] = "32"
|
||||
MAX_ATOMIC_WIDTH[i586] = "64"
|
||||
|
||||
## mips-unknown-linux-{gnu, musl}
|
||||
DATA_LAYOUT[mips] = "E-m:m-p:32:32-i8:8:32-i16:16:32-i64:64-n32-S64"
|
||||
LLVM_TARGET[mips] = "${RUST_TARGET_SYS}"
|
||||
TARGET_ENDIAN[mips] = "big"
|
||||
TARGET_POINTER_WIDTH[mips] = "32"
|
||||
TARGET_C_INT_WIDTH[mips] = "32"
|
||||
MAX_ATOMIC_WIDTH[mips] = "32"
|
||||
|
||||
## mipsel-unknown-linux-{gnu, musl}
|
||||
DATA_LAYOUT[mipsel] = "e-m:m-p:32:32-i8:8:32-i16:16:32-i64:64-n32-S64"
|
||||
LLVM_TARGET[mipsel] = "${RUST_TARGET_SYS}"
|
||||
TARGET_ENDIAN[mipsel] = "little"
|
||||
TARGET_POINTER_WIDTH[mipsel] = "32"
|
||||
TARGET_C_INT_WIDTH[mipsel] = "32"
|
||||
MAX_ATOMIC_WIDTH[mipsel] = "32"
|
||||
|
||||
## mips64-unknown-linux-{gnu, musl}
|
||||
DATA_LAYOUT[mips64] = "E-m:e-i8:8:32-i16:16:32-i64:64-n32:64-S128"
|
||||
LLVM_TARGET[mips64] = "${RUST_TARGET_SYS}"
|
||||
TARGET_ENDIAN[mips64] = "big"
|
||||
TARGET_POINTER_WIDTH[mips64] = "64"
|
||||
TARGET_C_INT_WIDTH[mips64] = "64"
|
||||
MAX_ATOMIC_WIDTH[mips64] = "64"
|
||||
|
||||
## mips64el-unknown-linux-{gnu, musl}
|
||||
DATA_LAYOUT[mips64el] = "e-m:e-i8:8:32-i16:16:32-i64:64-n32:64-S128"
|
||||
LLVM_TARGET[mips64el] = "${RUST_TARGET_SYS}"
|
||||
TARGET_ENDIAN[mips64el] = "little"
|
||||
TARGET_POINTER_WIDTH[mips64el] = "64"
|
||||
TARGET_C_INT_WIDTH[mips64el] = "64"
|
||||
MAX_ATOMIC_WIDTH[mips64el] = "64"
|
||||
|
||||
## powerpc-unknown-linux-{gnu, musl}
|
||||
DATA_LAYOUT[powerpc] = "E-m:e-p:32:32-i64:64-n32"
|
||||
LLVM_TARGET[powerpc] = "${RUST_TARGET_SYS}"
|
||||
TARGET_ENDIAN[powerpc] = "big"
|
||||
TARGET_POINTER_WIDTH[powerpc] = "32"
|
||||
TARGET_C_INT_WIDTH[powerpc] = "32"
|
||||
MAX_ATOMIC_WIDTH[powerpc] = "32"
|
||||
|
||||
## powerpc64-unknown-linux-{gnu, musl}
|
||||
DATA_LAYOUT[powerpc64] = "E-m:e-i64:64-n32:64-S128-v256:256:256-v512:512:512"
|
||||
LLVM_TARGET[powerpc64] = "${RUST_TARGET_SYS}"
|
||||
TARGET_ENDIAN[powerpc64] = "big"
|
||||
TARGET_POINTER_WIDTH[powerpc64] = "64"
|
||||
TARGET_C_INT_WIDTH[powerpc64] = "64"
|
||||
MAX_ATOMIC_WIDTH[powerpc64] = "64"
|
||||
|
||||
## powerpc64le-unknown-linux-{gnu, musl}
|
||||
DATA_LAYOUT[powerpc64le] = "e-m:e-i64:64-n32:64-v256:256:256-v512:512:512"
|
||||
LLVM_TARGET[powerpc64le] = "${RUST_TARGET_SYS}"
|
||||
TARGET_ENDIAN[powerpc64le] = "little"
|
||||
TARGET_POINTER_WIDTH[powerpc64le] = "64"
|
||||
TARGET_C_INT_WIDTH[powerpc64le] = "64"
|
||||
MAX_ATOMIC_WIDTH[powerpc64le] = "64"
|
||||
|
||||
## riscv32-unknown-linux-{gnu, musl}
|
||||
DATA_LAYOUT[riscv32] = "e-m:e-p:32:32-i64:64-n32-S128"
|
||||
LLVM_TARGET[riscv32] = "${RUST_TARGET_SYS}"
|
||||
TARGET_ENDIAN[riscv32] = "little"
|
||||
TARGET_POINTER_WIDTH[riscv32] = "32"
|
||||
TARGET_C_INT_WIDTH[riscv32] = "32"
|
||||
MAX_ATOMIC_WIDTH[riscv32] = "32"
|
||||
|
||||
## riscv64-unknown-linux-{gnu, musl}
|
||||
DATA_LAYOUT[riscv64] = "e-m:e-p:64:64-i64:64-i128:128-n64-S128"
|
||||
LLVM_TARGET[riscv64] = "${RUST_TARGET_SYS}"
|
||||
TARGET_ENDIAN[riscv64] = "little"
|
||||
TARGET_POINTER_WIDTH[riscv64] = "64"
|
||||
TARGET_C_INT_WIDTH[riscv64] = "64"
|
||||
MAX_ATOMIC_WIDTH[riscv64] = "64"
|
||||
|
||||
def sys_for(d, thing):
|
||||
return d.getVar('{}_SYS'.format(thing))
|
||||
|
||||
def prefix_for(d, thing):
|
||||
return d.getVar('{}_PREFIX'.format(thing))
|
||||
|
||||
# Convert a normal arch (HOST_ARCH, TARGET_ARCH, BUILD_ARCH, etc) to something
|
||||
# rust's internals won't choke on.
|
||||
def arch_to_rust_target_arch(arch):
|
||||
if arch == "i586" or arch == "i686":
|
||||
return "x86"
|
||||
elif arch == "mipsel":
|
||||
return "mips"
|
||||
elif arch == "mip64sel":
|
||||
return "mips64"
|
||||
elif arch == "armv7":
|
||||
return "arm"
|
||||
elif arch == "powerpc64le":
|
||||
return "powerpc64"
|
||||
else:
|
||||
return arch
|
||||
|
||||
# generates our target CPU value
|
||||
def llvm_cpu(d):
|
||||
cpu = d.getVar('PACKAGE_ARCH')
|
||||
target = d.getVar('TRANSLATED_TARGET_ARCH')
|
||||
|
||||
trans = {}
|
||||
trans['corei7-64'] = "corei7"
|
||||
trans['core2-32'] = "core2"
|
||||
trans['x86-64'] = "x86-64"
|
||||
trans['i686'] = "i686"
|
||||
trans['i586'] = "i586"
|
||||
trans['powerpc'] = "powerpc"
|
||||
trans['mips64'] = "mips64"
|
||||
trans['mips64el'] = "mips64"
|
||||
trans['riscv64'] = "generic-rv64"
|
||||
trans['riscv32'] = "generic-rv32"
|
||||
|
||||
if target in ["mips", "mipsel"]:
|
||||
feat = frozenset(d.getVar('TUNE_FEATURES').split())
|
||||
if "mips32r2" in feat:
|
||||
trans['mipsel'] = "mips32r2"
|
||||
trans['mips'] = "mips32r2"
|
||||
elif "mips32" in feat:
|
||||
trans['mipsel'] = "mips32"
|
||||
trans['mips'] = "mips32"
|
||||
|
||||
try:
|
||||
return trans[cpu]
|
||||
except:
|
||||
return trans.get(target, "generic")
|
||||
|
||||
TARGET_LLVM_CPU="${@llvm_cpu(d)}"
|
||||
TARGET_LLVM_FEATURES = "${@llvm_features(d)}"
|
||||
|
||||
# class-native implies TARGET=HOST, and TUNE_FEATURES only describes the real
|
||||
# (original) target.
|
||||
TARGET_LLVM_FEATURES:class-native = "${@','.join(llvm_features_from_cc_arch(d))}"
|
||||
|
||||
def rust_gen_target(d, thing, wd, features, cpu, arch, abi=""):
|
||||
import json
|
||||
sys = sys_for(d, thing)
|
||||
prefix = prefix_for(d, thing)
|
||||
|
||||
if abi:
|
||||
arch_abi = "{}-{}".format(arch, abi)
|
||||
else:
|
||||
arch_abi = arch
|
||||
|
||||
features = features or d.getVarFlag('FEATURES', arch_abi) or ""
|
||||
features = features.strip()
|
||||
|
||||
# build tspec
|
||||
tspec = {}
|
||||
tspec['llvm-target'] = d.getVarFlag('LLVM_TARGET', arch_abi)
|
||||
tspec['data-layout'] = d.getVarFlag('DATA_LAYOUT', arch_abi)
|
||||
tspec['max-atomic-width'] = int(d.getVarFlag('MAX_ATOMIC_WIDTH', arch_abi))
|
||||
tspec['target-pointer-width'] = d.getVarFlag('TARGET_POINTER_WIDTH', arch_abi)
|
||||
tspec['target-c-int-width'] = d.getVarFlag('TARGET_C_INT_WIDTH', arch_abi)
|
||||
tspec['target-endian'] = d.getVarFlag('TARGET_ENDIAN', arch_abi)
|
||||
tspec['arch'] = arch_to_rust_target_arch(arch)
|
||||
tspec['os'] = "linux"
|
||||
if "musl" in tspec['llvm-target']:
|
||||
tspec['env'] = "musl"
|
||||
else:
|
||||
tspec['env'] = "gnu"
|
||||
if "riscv64" in tspec['llvm-target']:
|
||||
tspec['llvm-abiname'] = "lp64d"
|
||||
if "riscv32" in tspec['llvm-target']:
|
||||
tspec['llvm-abiname'] = "ilp32d"
|
||||
tspec['vendor'] = "unknown"
|
||||
tspec['target-family'] = "unix"
|
||||
tspec['linker'] = "{}{}gcc".format(d.getVar('CCACHE'), prefix)
|
||||
tspec['cpu'] = cpu
|
||||
if features != "":
|
||||
tspec['features'] = features
|
||||
tspec['dynamic-linking'] = True
|
||||
tspec['executables'] = True
|
||||
tspec['linker-is-gnu'] = True
|
||||
tspec['linker-flavor'] = "gcc"
|
||||
tspec['has-rpath'] = True
|
||||
tspec['has-elf-tls'] = True
|
||||
tspec['position-independent-executables'] = True
|
||||
tspec['panic-strategy'] = d.getVar("RUST_PANIC_STRATEGY")
|
||||
|
||||
# write out the target spec json file
|
||||
with open(wd + sys + '.json', 'w') as f:
|
||||
json.dump(tspec, f, indent=4)
|
||||
|
||||
python do_rust_gen_targets () {
|
||||
wd = d.getVar('WORKDIR') + '/targets/'
|
||||
build_arch = d.getVar('BUILD_ARCH')
|
||||
rust_gen_target(d, 'BUILD', wd, "", "generic", build_arch)
|
||||
}
|
||||
|
||||
addtask rust_gen_targets after do_patch before do_compile
|
||||
do_rust_gen_targets[dirs] += "${WORKDIR}/targets"
|
||||
|
||||
@@ -1,55 +0,0 @@
|
||||
|
||||
RUST_ALTERNATE_EXE_PATH = "${STAGING_LIBDIR_NATIVE}/llvm-rust/bin/llvm-config"
|
||||
|
||||
require rust.inc
|
||||
|
||||
DEPENDS += "rust-llvm (=${PV})"
|
||||
|
||||
inherit cross-canadian
|
||||
|
||||
DEPENDS += " \
|
||||
virtual/${HOST_PREFIX}gcc-crosssdk \
|
||||
virtual/nativesdk-libc rust-llvm-native \
|
||||
virtual/${TARGET_PREFIX}compilerlibs \
|
||||
virtual/nativesdk-${HOST_PREFIX}compilerlibs \
|
||||
gcc-cross-${TARGET_ARCH} \
|
||||
"
|
||||
|
||||
# The host tools are likely not to be able to do the necessary operation on
|
||||
# the target architecturea. Alternatively one could check compatibility
|
||||
# between host/target.
|
||||
EXCLUDE_FROM_SHLIBS_${RUSTLIB_TARGET_PN} = "1"
|
||||
|
||||
DEBUG_PREFIX_MAP = "-fdebug-prefix-map=${WORKDIR}=/usr/src/debug/${PN}/${EXTENDPE}${PV}-${PR} \
|
||||
-fdebug-prefix-map=${STAGING_DIR_HOST}= \
|
||||
-fdebug-prefix-map=${STAGING_DIR_NATIVE}= \
|
||||
"
|
||||
|
||||
LLVM_TARGET[x86_64] = "${RUST_HOST_SYS}"
|
||||
python do_rust_gen_targets () {
|
||||
wd = d.getVar('WORKDIR') + '/targets/'
|
||||
rust_gen_target(d, 'TARGET', wd, d.getVar('TARGET_LLVM_FEATURES') or "", d.getVar('TARGET_LLVM_CPU'), d.getVar('TARGET_ARCH'))
|
||||
rust_gen_target(d, 'HOST', wd, "", "generic", d.getVar('HOST_ARCH'))
|
||||
rust_gen_target(d, 'BUILD', wd, "", "generic", d.getVar('BUILD_ARCH'))
|
||||
}
|
||||
|
||||
INHIBIT_DEFAULT_RUST_DEPS = "1"
|
||||
|
||||
export WRAPPER_TARGET_CC = "${CCACHE}${TARGET_PREFIX}gcc --sysroot=${STAGING_DIR_TARGET} ${TARGET_CC_ARCH} ${SECURITY_NOPIE_CFLAGS}"
|
||||
export WRAPPER_TARGET_CXX = "${CCACHE}${TARGET_PREFIX}g++ --sysroot=${STAGING_DIR_TARGET} ${TARGET_CC_ARCH} ${SECURITY_NOPIE_CFLAGS}"
|
||||
export WRAPPER_TARGET_CCLD = "${TARGET_PREFIX}gcc --sysroot=${STAGING_DIR_TARGET} ${TARGET_CC_ARCH} ${SECURITY_NOPIE_CFLAGS}"
|
||||
export WRAPPER_TARGET_LDFLAGS = "${TARGET_LDFLAGS}"
|
||||
export WRAPPER_TARGET_AR = "${TARGET_PREFIX}ar"
|
||||
|
||||
python do_configure:prepend() {
|
||||
targets = [d.getVar("TARGET_SYS", True), "{}-unknown-linux-gnu".format(d.getVar("HOST_ARCH", True))]
|
||||
hosts = ["{}-unknown-linux-gnu".format(d.getVar("HOST_ARCH", True))]
|
||||
}
|
||||
|
||||
INSANE_SKIP:${RUSTLIB_TARGET_PN} = "file-rdeps arch ldflags"
|
||||
SKIP_FILEDEPS:${RUSTLIB_TARGET_PN} = "1"
|
||||
|
||||
INHIBIT_PACKAGE_DEBUG_SPLIT = "1"
|
||||
INHIBIT_PACKAGE_STRIP = "1"
|
||||
INHIBIT_SYSROOT_STRIP = "1"
|
||||
|
||||
@@ -1,78 +0,0 @@
|
||||
|
||||
require rust-cross-canadian-common.inc
|
||||
|
||||
RUSTLIB_TARGET_PN = "rust-cross-canadian-rustlib-target-${TRANSLATED_TARGET_ARCH}"
|
||||
RUSTLIB_HOST_PN = "rust-cross-canadian-rustlib-host-${TRANSLATED_TARGET_ARCH}"
|
||||
RUSTLIB_SRC_PN = "rust-cross-canadian-src"
|
||||
RUSTLIB_PKGS = "${RUSTLIB_SRC_PN} ${RUSTLIB_TARGET_PN} ${RUSTLIB_HOST_PN}"
|
||||
PN = "rust-cross-canadian-${TRANSLATED_TARGET_ARCH}"
|
||||
|
||||
PACKAGES = "${RUSTLIB_PKGS} ${PN}"
|
||||
RDEPENDS:${PN} += "${RUSTLIB_PKGS}"
|
||||
|
||||
# The default behaviour of x.py changed in 1.47+ so now we need to
|
||||
# explicitly ask for the stage 2 compiler to be assembled.
|
||||
do_compile () {
|
||||
rust_runx build --stage 2
|
||||
}
|
||||
|
||||
do_install () {
|
||||
# Rust requires /usr/lib to contain the libs.
|
||||
# Similar story is with /usr/bin ruquiring `lib` to be at the same level.
|
||||
# The required structure is retained for simplicity.
|
||||
SYS_LIBDIR=$(dirname ${D}${libdir})
|
||||
SYS_BINDIR=$(dirname ${D}${bindir})
|
||||
RUSTLIB_DIR=${SYS_LIBDIR}/${TARGET_SYS}/rustlib
|
||||
|
||||
install -d "${SYS_BINDIR}"
|
||||
cp build/${SNAPSHOT_BUILD_SYS}/stage2/bin/* ${SYS_BINDIR}
|
||||
for i in ${SYS_BINDIR}/*; do
|
||||
chrpath -r "\$ORIGIN/../lib" ${i}
|
||||
done
|
||||
|
||||
install -d "${D}${libdir}"
|
||||
cp -pRd build/${SNAPSHOT_BUILD_SYS}/stage2/lib/${TARGET_SYS}/*.so ${SYS_LIBDIR}
|
||||
cp -pRd build/${SNAPSHOT_BUILD_SYS}/stage2/lib/${TARGET_SYS}/rustlib ${RUSTLIB_DIR}
|
||||
|
||||
for i in ${SYS_LIBDIR}/*.so; do
|
||||
chrpath -r "\$ORIGIN/../lib" ${i}
|
||||
done
|
||||
for i in ${RUSTLIB_DIR}/*/lib/*.so; do
|
||||
chrpath -d ${i}
|
||||
done
|
||||
|
||||
install -m 0644 "${WORKDIR}/targets/${TARGET_SYS}.json" "${RUSTLIB_DIR}"
|
||||
|
||||
SRC_DIR=${RUSTLIB_DIR}/src/rust
|
||||
install -d ${SRC_DIR}/src/llvm-project
|
||||
cp -R --no-dereference build/${SNAPSHOT_BUILD_SYS}/stage2/lib/rustlib/src/rust/src/llvm-project/libunwind ${SRC_DIR}/src/llvm-project
|
||||
cp -R --no-dereference build/${SNAPSHOT_BUILD_SYS}/stage2/lib/rustlib/src/rust/library ${SRC_DIR}
|
||||
cp --no-dereference build/${SNAPSHOT_BUILD_SYS}/stage2/lib/rustlib/src/rust/Cargo.lock ${SRC_DIR}
|
||||
# Remove executable bit from any files so then SDK doesn't try to relocate.
|
||||
chmod -R -x+X ${SRC_DIR}
|
||||
|
||||
ENV_SETUP_DIR=${D}${base_prefix}/environment-setup.d
|
||||
mkdir "${ENV_SETUP_DIR}"
|
||||
ENV_SETUP_SH="${ENV_SETUP_DIR}/rust.sh"
|
||||
|
||||
cat <<- EOF > "${ENV_SETUP_SH}"
|
||||
export RUSTFLAGS="--sysroot=\$OECORE_NATIVE_SYSROOT/usr -C link-arg=--sysroot=\$OECORE_TARGET_SYSROOT -L\$OECORE_NATIVE_SYSROOT/usr/lib/${TARGET_SYS}/rustlib/${TARGET_SYS}/lib"
|
||||
export RUST_TARGET_PATH="\$OECORE_NATIVE_SYSROOT/usr/lib/${TARGET_SYS}/rustlib"
|
||||
EOF
|
||||
|
||||
chown -R root.root ${D}
|
||||
}
|
||||
|
||||
PKG_SYS_LIBDIR = "${SDKPATHNATIVE}/usr/lib"
|
||||
PKG_SYS_BINDIR = "${SDKPATHNATIVE}/usr/bin"
|
||||
PKG_RUSTLIB_DIR = "${PKG_SYS_LIBDIR}/${TARGET_SYS}/rustlib"
|
||||
FILES:${PN} = "${PKG_SYS_LIBDIR}/*.so ${PKG_SYS_BINDIR} ${base_prefix}/environment-setup.d"
|
||||
FILES:${RUSTLIB_TARGET_PN} = "${PKG_RUSTLIB_DIR}/${TARGET_SYS} ${PKG_RUSTLIB_DIR}/${TARGET_SYS}.json"
|
||||
FILES:${RUSTLIB_HOST_PN} = "${PKG_RUSTLIB_DIR}/${BUILD_ARCH}-unknown-linux-gnu"
|
||||
FILES:${RUSTLIB_SRC_PN} = "${PKG_RUSTLIB_DIR}/src"
|
||||
|
||||
SUMMARY:${RUSTLIB_TARGET_PN} = "Rust cross canadian libaries for ${TARGET_SYS}"
|
||||
SUMMARY:${RUSTLIB_HOST_PN} = "Rust cross canadian libaries for ${HOST_SYS}"
|
||||
SUMMARY:${RUSTLIB_SRC_PN} = "Rust standard library sources for cross canadian toolchain"
|
||||
SUMMARY:${PN} = "Rust crost canadian compiler"
|
||||
|
||||
@@ -1,6 +0,0 @@
|
||||
require rust-cross-canadian.inc
|
||||
require rust-source-${PV}.inc
|
||||
require rust-snapshot-${PV}.inc
|
||||
|
||||
FILESEXTRAPATHS:prepend := "${THISDIR}/rust:"
|
||||
|
||||
@@ -1,6 +0,0 @@
|
||||
require rust-cross-canadian.inc
|
||||
require rust-source.inc
|
||||
require rust-snapshot.inc
|
||||
|
||||
FILESEXTRAPATHS:prepend := "${THISDIR}/rust:"
|
||||
|
||||
@@ -1,73 +0,0 @@
|
||||
require rust.inc
|
||||
inherit cross
|
||||
|
||||
python do_rust_gen_targets () {
|
||||
wd = d.getVar('WORKDIR') + '/targets/'
|
||||
# It is important 'TARGET' is last here so that it overrides our less
|
||||
# informed choices for BUILD & HOST if TARGET happens to be the same as
|
||||
# either of them.
|
||||
for thing in ['BUILD', 'HOST', 'TARGET']:
|
||||
bb.debug(1, "rust_gen_target for " + thing)
|
||||
features = ""
|
||||
cpu = "generic"
|
||||
arch = d.getVar('{}_ARCH'.format(thing))
|
||||
abi = ""
|
||||
if thing is "TARGET":
|
||||
abi = d.getVar('ABIEXTENSION')
|
||||
# arm and armv7 have different targets in llvm
|
||||
if arch == "arm" and target_is_armv7(d):
|
||||
arch = 'armv7'
|
||||
features = d.getVar('TARGET_LLVM_FEATURES') or ""
|
||||
cpu = d.getVar('TARGET_LLVM_CPU')
|
||||
rust_gen_target(d, thing, wd, features, cpu, arch, abi)
|
||||
}
|
||||
|
||||
# Otherwise we'll depend on what we provide
|
||||
INHIBIT_DEFAULT_RUST_DEPS = "1"
|
||||
|
||||
# Unlike native (which nicely maps it's DEPENDS) cross wipes them out completely.
|
||||
# Generally, we (and cross in general) need the same things that native needs,
|
||||
# so it might make sense to take it's mapping. For now, though, we just mention
|
||||
# the bits we need explicitly.
|
||||
DEPENDS += "rust-llvm-native"
|
||||
DEPENDS += "virtual/${TARGET_PREFIX}gcc virtual/${TARGET_PREFIX}compilerlibs virtual/libc"
|
||||
DEPENDS += "rust-native"
|
||||
|
||||
PROVIDES = "virtual/${TARGET_PREFIX}rust"
|
||||
PN = "rust-cross-${TUNE_PKGARCH}-${TCLIBC}"
|
||||
|
||||
# In the cross compilation case, rustc doesn't seem to get the rpath quite
|
||||
# right. It manages to include '../../lib/${TARGET_PREFIX}', but doesn't
|
||||
# include the '../../lib' (ie: relative path from cross_bindir to normal
|
||||
# libdir. As a result, we end up not being able to properly reference files in normal ${libdir}.
|
||||
# Most of the time this happens to work fine as the systems libraries are
|
||||
# subsituted, but sometimes a host system will lack a library, or the right
|
||||
# version of a library (libtinfo was how I noticed this).
|
||||
#
|
||||
# FIXME: this should really be fixed in rust itself.
|
||||
# FIXME: using hard-coded relative paths is wrong, we should ask bitbake for
|
||||
# the relative path between 2 of it's vars.
|
||||
HOST_POST_LINK_ARGS:append = " -Wl,-rpath=../../lib"
|
||||
BUILD_POST_LINK_ARGS:append = " -Wl,-rpath=../../lib"
|
||||
|
||||
# We need the same thing for the calls to the compiler when building the runtime crap
|
||||
TARGET_CC_ARCH:append = " --sysroot=${STAGING_DIR_TARGET}"
|
||||
|
||||
do_rust_setup_snapshot () {
|
||||
}
|
||||
|
||||
do_configure () {
|
||||
}
|
||||
|
||||
do_compile () {
|
||||
}
|
||||
|
||||
do_install () {
|
||||
mkdir -p ${D}${prefix}/${base_libdir_native}/rustlib
|
||||
cp ${WORKDIR}/targets/${TARGET_SYS}.json ${D}${prefix}/${base_libdir_native}/rustlib
|
||||
}
|
||||
|
||||
rust_cross_sysroot_preprocess() {
|
||||
sysroot_stage_dir ${D}${prefix}/${base_libdir_native}/rustlib ${SYSROOT_DESTDIR}${prefix}/${base_libdir_native}/rustlib
|
||||
}
|
||||
SYSROOT_PREPROCESS_FUNCS += "rust_cross_sysroot_preprocess"
|
||||
@@ -1,2 +0,0 @@
|
||||
require rust-cross.inc
|
||||
require rust-source-${PV}.inc
|
||||
@@ -1,2 +0,0 @@
|
||||
require rust-cross.inc
|
||||
require rust-source.inc
|
||||
7
recipes-devtools/rust/rust-git.inc
Normal file
7
recipes-devtools/rust/rust-git.inc
Normal file
@@ -0,0 +1,7 @@
|
||||
SRC_URI = "\
|
||||
gitsm://github.com/rust-lang/rust.git;protocol=https \
|
||||
"
|
||||
S = "${WORKDIR}/git"
|
||||
PV .= "+git${SRCPV}"
|
||||
require rust.inc
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user