[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Trouble building base with clang
From: |
Wolfgang Lux |
Subject: |
Re: Trouble building base with clang |
Date: |
Mon, 22 Oct 2018 09:53:06 +0200 |
> Am 22.10.2018 um 00:46 schrieb Philip George <engineering@bamwu.com>:
>
> Here's the configure/make pair I used to kick off the libs-base build using
> clang:
>
> ./configure CC=clang CXX=clang++ LD=gcc
> make CC=clang CXX=clang++ LD=gcc messages=yes
I'm not sure if it's related to the build failure, but why are you asking for
gcc as linker here? If you are using clang for builds, it would look more sane
to me to use LD=clang.
Wolfgang