Displaying 3 results from an estimated 3 matches for "r97119".
2010 Mar 02
0
[LLVMdev] make SHARED_LIBRARY=1 broken?
I suspect my change adding --enable-shared broke you, since that
configure option didn't exist before last week (r97119).
SHARED_LIBRARY is not one of the variables you're supposed to be able
to set on make's command line
(http://llvm.org/docs/MakefileGuide.html#variables). What are you
using it for? What happens if you remove it?
On Tue, Mar 2, 2010 at 1:35 PM, James Williams <junk at giantblob.com>...
2010 Mar 02
2
[LLVMdev] make SHARED_LIBRARY=1 broken?
Hi,
Until recently I've been building LLVM with SHARED_LIBRARY=1. However, sith
current svn, build now fails with unresolved symbols building opt. I've done
a clean checkout, configure and make so it's not down to any local changes
I've made.
I'm building with:
./configure --enable-assertions \
--enable-expensive-checks=no \
--enable-pic \
--enable-targets=host-only \
2010 Mar 02
4
[LLVMdev] make SHARED_LIBRARY=1 broken?
...built as shared libraries supported? If so what's the correct build
procedure?
-- James
On 2 March 2010 21:51, Jeffrey Yasskin <jyasskin at google.com> wrote:
> I suspect my change adding --enable-shared broke you, since that
> configure option didn't exist before last week (r97119).
> SHARED_LIBRARY is not one of the variables you're supposed to be able
> to set on make's command line
> (http://llvm.org/docs/MakefileGuide.html#variables). What are you
> using it for? What happens if you remove it?
>
> On Tue, Mar 2, 2010 at 1:35 PM, James Williams &...