Displaying 20 results from an estimated 300 matches similar to: "[LLVMdev] Building CFE in Mingw"
2006 Apr 23
0
[LLVMdev] Re: Building CFE in Mingw
Anton Korobeynikov <asl at math.spbu.ru> writes:
[snip]
> 2) Problem: Complains about gthr-default.h file.
> Resolution: Grab gcc/gcc/gthr-win32.h file and copy it to gthr-default.h
... so --enable-threads=win32 is broken... good to know.
> 3) Problem: Complains about "CL_ObjCXX" and simular ("CL_") during
> compilation
2012 Aug 09
2
[LLVMdev] Compiling std::string with clang
Hi,
I am new to LLVM, so I am sorry if the question I am going to ask has
already been raised before. I will be thankful if anyone can describe me a
quick way to search relevant topics within the list archive,
When I am trying to compile a simple code, containing access to
std::string, with clang:
#include <string>
int main()
{
std::string s;
return
2012 Jul 12
2
[LLVMdev] Compiling llvm and Clang on Linux
> Yes, it is the same error referring to 4.1.2.
>
> /usr/lib/gcc/i386-redhat-linux/4.1.2/../../../../include/c+
> +/4.1.2/i386-redhat-linux/bits/gthr-default.h:114:1: error: weakref
> declaration must have internal
> linkage
> __gthrw(pthread_key_delete)
>
> There are several such errors.
Are you sure you are usin gcc44? Don't you need to run CC=gcc44 CXX=g++44
2012 Jul 13
2
[LLVMdev] Compiling llvm and Clang on Linux
Hi Sitvanit,
On 12/07/12 22:18, Sitvanit Ruah wrote:
> I ran "configure -help " and it says
>
> usage: configure [OPTION]..... [VAR=VALUE]
>
> So I assume configure CC=... is the right syntax. Isn't it?
while you might think so, try it the other way round. Also, by doing
make VERBOSE=1
you can see which compiler is really being used.
Ciao, Duncan.
>
>
2011 Jan 02
0
[LLVMdev] LLVM for ARM target
On Jan 1, 2011, at 8:29 PM, akramul azim wrote:
> Hi,
> I am planning to follow the steps to install LLVM for the ARM-target (Processor: Xscale, Architecture: armv5te):
>
> 1. Install binutils-2.21 (downloaded from gnu.org)
>
> Steps:
>
> $ ./configure --target=arm-unknown-linux-gnueabi --program-prefix=arm- --prefix
> =/llvm/arm
2011 Jan 02
3
[LLVMdev] LLVM for ARM target
Hi,
I am planning to follow the steps to install LLVM for the ARM-target (Processor: Xscale, Architecture: armv5te):
1. Install binutils-2.21 (downloaded from gnu.org)
Steps:
$ ./configure --target=arm-unknown-linux-gnueabi --program-prefix=arm- --prefix
=/llvm/arm --with-sysroot=/llvm/arms/sys-root
$ make
$ make install
2. Install LLVM
Steps
$ ../llvm-src/configure
2011 Jan 04
2
[LLVMdev] LLVM for ARM target
At the last step of building llvm for arm target, I am unable to build llvm-gcc. I am trying the follwing options:
$ ../llvm-gcc/configure --target=arm-linux --enable-pic --program-prefix=llvm-
--prefix=/llvm/install --disable-multilib --disable-optimized --enable-bindings
=none --enable-llvm=$PWD/../llvm-2.8 --enable-languages=c,c++ --disable-bootstr
ap
Then I get the following error when I
2012 Jul 12
3
[LLVMdev] Compiling llvm and Clang on Linux
Thanks for the information.
I am running on a machine on which gcc44 is installed but whose default
installation is 4.1.2.
I ran
../llvm/configure CC=gcc44 CXX=g++44
make
and still got the same error (I checked and CC=gcc44 and CXX=g++44 now in
build/Makefile.config)..
I tried also
../llvm/configure CC=gcc44 CXX=g++44 --include_dir=<gcc44 include dir>
but it didn't help
2012 Jul 12
0
[LLVMdev] Compiling llvm and Clang on Linux
I ran "configure -help " and it says
usage: configure [OPTION]..... [VAR=VALUE]
So I assume configure CC=... is the right syntax. Isn't it?
Regard,
Sitvanit
From: Konstantin Tokarev <annulen at yandex.ru>
To: Sitvanit Ruah/Haifa/IBM at IBMIL,
Cc: llvmdev-bounces at cs.uiuc.edu, llvmdev at cs.uiuc.edu, Duncan Sands
<baldrick at free.fr>
Date:
2012 Jul 11
5
[LLVMdev] Compiling llvm and Clang on Linux
Hello all,
I am new to this mailing list so I hope this is the right place to post the
following question.
We are considering using Clang front end for our tool. I tried to compile
LLVM
(using configure followed by make from the llvm top directory) on LINUX
X86 with gcc 4.1.2.
I got several compilation error messages of the form
/usr/lib/gcc/i386-redhat-linux/4.1.2/../../../../include/c+
2012 Jul 15
0
[LLVMdev] Compiling llvm and Clang on Linux
I tried
CC=gcc44 CXX=g++44 ../llvm/configure
and got
CC=gcc44: Command not found
So the syntax is indeed as wriiten in the help.
Sitvanit Ruah
Formal Verification Group
IBM Haifa Research Laboratory
Tel: 972-4-828-1249
From: Duncan Sands <baldrick at free.fr>
To: Sitvanit Ruah/Haifa/IBM at IBMIL,
Cc: Konstantin Tokarev <annulen at yandex.ru>, llvmdev at cs.uiuc.edu,
2010 May 20
3
Install eventmachine on Debian Lenny
Hi,
I can''t install eventmachine on Debian Lenny. ruby-dev and
build-essential are installed. Where''s the problem?
My (awful) logs:
=============================
# gem i eventmachine
Building native extensions. This could take a while...
ERROR: Error installing eventmachine:
ERROR: Failed to build gem native extension.
/usr/bin/ruby1.8 extconf.rb
checking for
2006 May 07
0
[LLVMdev] Configuring for the cfrontend build on Mingw
So the fundamental problem I'm trying to solve is how get my cfrontend
build configured properly.
The usual symptom of an incorrect configuration is the inability to find
various header files.
Here's some example spew:
$ /home/llvm_home/llvm-gcc-build/gcc/xgcc -v
-B/home/llvm_home/llvm-gcc-build/gcc/ -Bc:/msys/1.0/mingw32/bin/
-Bc:/msys/1.0/mingw32/lib/ -isystem
2002 Jun 11
5
problem installing WINE on Mandrake v8.2 - confirm with textutils
I'm trying to install WINE on my newly installed Mandrake v8.2 system.
The error I receive is "file /usr/bin/expand from install of
wine-cvs-unstripped-061102-1 conflicts with file from package
textutils-2.0.17-7mdk"
Any input would be greatly appreciated.
Thanks,
Josh
2012 Jul 11
0
[LLVMdev] Compiling llvm and Clang on Linux
It's undocumented FAQ, if you are using RHEL5 (or clone).
- install gcc44-c++
- Build with CC=gcc44 CXX=g++44
- You may need "CC=clang -std=gnu89" to use clang with its glibc.
Have fun!
ps. AFAIK, clang can be built more easily on centos6.
...Takumi
2012/7/11 Sitvanit Ruah <RUAH at il.ibm.com>:
>
> Hello all,
> I am new to this mailing list so I hope this is
2006 May 09
0
[LLVMdev] Bootstrapping llvm-gcc4 on Mingw
On Wed, 3 May 2006, Anton Korobeynikov wrote:
> You wrote Wednesday, May 3, 2006, 1:41:31 AM:
>
> CL> will fix it. If so, please let me know and I'll update my tree. If not,
> CL> please get a stack trace of the failure so I can see where it is called.
> Yes. This fixes the bug. ASM_OUTPUT_EXTERNAL was defined in cygming.h
> and seems to be platform specific. There
2006 May 06
1
[LLVMdev] Still Trying to Build on MINGW
Hello, Greg.
You wrote Saturday, May 6, 2006, 10:24:16 PM:
GP> If anyone has any insight I'd love to hear it.
GP> Meanwhile, I'll continue to investigate...
Currently I'm working on bootstrapping llvm-gcc4 on mingw32 platform.
There are some serious miscompartibilities preventing build. I'll let
know the results.
Anyway, it's common knowledge, that msys itself have
2011 Jul 05
0
[LLVMdev] pthread problems with gcc 4.1 includes?
I'm trying to build an app with clang against libraries that are using
GCC 4.1 ABI.
I'm getting an error "weakref declaration must have internal linkage"
Now I'm stumped though, perhaps it is an incompatibility between clang
trunk and gcc 4.1 include files?
- I've built clang from trunk
- fixed include paths to point to gcc 4.1 include paths
When I modify clang to use
2006 Aug 04
1
[LLVMdev] Building llvm under cygwin
Hello Anton
Thu, 3 Aug 2006 23:13:52 +0400 you wrote:
> I won't be available for the next 10-12 hours if you'll need some more
> files.
Well. I have one idea. Could you please execute "sort --version" from
your cygwin shell and let me know, whether it's GNU one (it should
reply with the words "textutils") or windows-supplied one (it should
just give you and
2011 Feb 20
3
[LLVMdev] Build problems with llvm-gcc
Hi there
I'm new to LLVM & am trying to build llvm-gcc.
I'm using Ubuntu 10.0.4. on an AMD64 processor.
I've had no problems with building the LLVM suite itself, but during
llvm-gcc compilation I am presented with the following error message - does
anybody happen to know if there is any remedy?
/root/llvm_gcc_source/llvm-gcc-objects/./gcc/xgcc