annotate sources/sections/elf2flt.build @ 1709:60eeade56d1a draft

The C version of the elf2flt linker wrapper is unhappy, use shell script version for now.
author Rob Landley <rob@landley.net>
date Mon, 24 Nov 2014 14:26:54 -0600
parents 3675adfb4e36
children ef7b355302ef
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1709
60eeade56d1a The C version of the elf2flt linker wrapper is unhappy, use shell script version for now.
Rob Landley <rob@landley.net>
parents: 1704
diff changeset
1 CC=${ARCH}cc ./configure --with-bfd-include-dir="$STAGE_DIR/include" \
1704
3675adfb4e36 Add basic elf2flt support to simple-cross-compiler.sh and sh2eb.
Rob Landley <rob@landley.net>
parents:
diff changeset
2 --with-binutils-include-dir="$STAGE_DIR/include" \
1709
60eeade56d1a The C version of the elf2flt linker wrapper is unhappy, use shell script version for now.
Rob Landley <rob@landley.net>
parents: 1704
diff changeset
3 --with-libbfd="$STAGE_DIR/lib/libbfd.a" --disable-ld-elf2flt-binary \
1704
3675adfb4e36 Add basic elf2flt support to simple-cross-compiler.sh and sh2eb.
Rob Landley <rob@landley.net>
parents:
diff changeset
4 --with-libiberty="$STAGE_DIR/lib/libiberty.a" \
3675adfb4e36 Add basic elf2flt support to simple-cross-compiler.sh and sh2eb.
Rob Landley <rob@landley.net>
parents:
diff changeset
5 --target="$ELF2FLT" --prefix="$STAGE_DIR" &&
3675adfb4e36 Add basic elf2flt support to simple-cross-compiler.sh and sh2eb.
Rob Landley <rob@landley.net>
parents:
diff changeset
6 make -j $CPUS &&
3675adfb4e36 Add basic elf2flt support to simple-cross-compiler.sh and sh2eb.
Rob Landley <rob@landley.net>
parents:
diff changeset
7 make install TARGET="$CROSS_TARGET" PREFIX="$TOOLCHAIN_PREFIX"