bug-binutils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Bug binutils/30758] ODR violations in opcodes dir


From: vries at gcc dot gnu.org
Subject: [Bug binutils/30758] ODR violations in opcodes dir
Date: Wed, 16 Aug 2023 14:53:38 +0000

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

[Prev in Thread] Current Thread [Next in Thread]