summaryrefslogtreecommitdiff
path: root/strata/armv7lhf-cross-toolchain/armv7lhf-cross-binutils.morph
diff options
context:
space:
mode:
authorSam Thursfield <sam.thursfield@codethink.co.uk>2017-07-07 10:01:07 +0000
committerSam Thursfield <sam.thursfield@codethink.co.uk>2017-07-07 10:01:07 +0000
commitf6046f9b54c1f14d12a67fa66ca0c881b49e8ceb (patch)
tree7c4d5b1aa87b991fecb0b2c585514069947c3f0a /strata/armv7lhf-cross-toolchain/armv7lhf-cross-binutils.morph
parentdeba555368fd21316025c5ee0eaaf517b938775e (diff)
downloaddefinitions-f6046f9b54c1f14d12a67fa66ca0c881b49e8ceb.tar.gz
Move old Baserock format definitions into old/ directory
Diffstat (limited to 'strata/armv7lhf-cross-toolchain/armv7lhf-cross-binutils.morph')
-rw-r--r--strata/armv7lhf-cross-toolchain/armv7lhf-cross-binutils.morph24
1 files changed, 0 insertions, 24 deletions
diff --git a/strata/armv7lhf-cross-toolchain/armv7lhf-cross-binutils.morph b/strata/armv7lhf-cross-toolchain/armv7lhf-cross-binutils.morph
deleted file mode 100644
index 8e842e41..00000000
--- a/strata/armv7lhf-cross-toolchain/armv7lhf-cross-binutils.morph
+++ /dev/null
@@ -1,24 +0,0 @@
-name: armv7lhf-cross-binutils
-kind: chunk
-build-system: autotools
-
-configure-commands:
-- |
- # The TARGET used is the final triplet we expect, rather than that
- # of the libc-less GCC we build, since the binutils only needs to
- # be built once.
- # This requires extra effort to get the stage 1 GCC to use these
- # tools, but saves having an extra binutils build.
- export TARGET=armv7lhf-baserock-linux-gnueabi
-
- # 1. Binutils gets installed in the default sysroot path of
- # $PREFIX/$TARGET/{bin,lib}, with the actual sysroot at
- # $PREFIX/$TARGET/sys-root and its tools also available as
- # $PREFIX/bin/$TARGET-$tool
- # 2. The '=' makes the path we give relative to the sysroot.
- ./configure --prefix="$PREFIX" --disable-nls --disable-werror \
- --build=$(sh config.guess) \
- --host=$(sh config.guess) \
- --target="$TARGET" \
- `# [1]` --with-sysroot \
- `# [2]` --with-lib-path="=$PREFIX/lib"