annotate sources/sections/elf2flt.build @ 1704:3675adfb4e36 draft

Add basic elf2flt support to simple-cross-compiler.sh and sh2eb.
author Rob Landley <rob@landley.net>
date Fri, 07 Nov 2014 08:49:26 -0600
parents
children 60eeade56d1a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1704
3675adfb4e36 Add basic elf2flt support to simple-cross-compiler.sh and sh2eb.
Rob Landley <rob@landley.net>
parents:
diff changeset
1 ./configure --with-bfd-include-dir="$STAGE_DIR/include" \
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" \
3675adfb4e36 Add basic elf2flt support to simple-cross-compiler.sh and sh2eb.
Rob Landley <rob@landley.net>
parents:
diff changeset
3 --with-libbfd="$STAGE_DIR/lib/libbfd.a" \
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"