https://sourceware.org/bugzilla/show_bug.cgi?id=30758

--- Comment #2 from Tom de Vries <vries at gcc dot gnu.org> ---
(In reply to Nick Clifton from comment #1)
> Hi Tom,
> 
>   How are you configuring and building the sources when you encounter 
>   this error ?
> 

Like so:
...
$ cat build.sh
#!/bin/sh

pwd=$(pwd -P)

src=$pwd/../src

build=$pwd/build
rm -Rf $build
mkdir $build

cd $build

$src/configure \
    CFLAGS="-flto -O2 -g -Wall" \
    CXXFLAGS="-flto -O2 -g -Wall" \
    --enable-targets=all \
    --disable-sim \
    2>&1 \
    | tee CONFIGURELOG

cd $build/gdb

make \
    all-gdb \
    2>&1 \
    | tee MAKELOG
...

-- 
You are receiving this mail because:
You are on the CC list for the bug.

Reply via email to