# HG changeset patch # User Rob Landley # Date 1416860814 21600 # Node ID 60eeade56d1abe7188dcea5c65fc2928dd72a398 # Parent b871f0e7b837eb9a21724fa345505b2b5dfbf8f2 The C version of the elf2flt linker wrapper is unhappy, use shell script version for now. diff -r b871f0e7b837 -r 60eeade56d1a sources/sections/elf2flt.build --- a/sources/sections/elf2flt.build Mon Nov 24 14:25:57 2014 -0600 +++ b/sources/sections/elf2flt.build Mon Nov 24 14:26:54 2014 -0600 @@ -1,6 +1,6 @@ -./configure --with-bfd-include-dir="$STAGE_DIR/include" \ +CC=${ARCH}cc ./configure --with-bfd-include-dir="$STAGE_DIR/include" \ --with-binutils-include-dir="$STAGE_DIR/include" \ - --with-libbfd="$STAGE_DIR/lib/libbfd.a" \ + --with-libbfd="$STAGE_DIR/lib/libbfd.a" --disable-ld-elf2flt-binary \ --with-libiberty="$STAGE_DIR/lib/libiberty.a" \ --target="$ELF2FLT" --prefix="$STAGE_DIR" && make -j $CPUS &&