Displaying 20 results from an estimated 300 matches similar to: "[LLVMdev] pthread problems with gcc 4.1 includes?"
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 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 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 Jun 30
0
[LLVMdev] GCC 4.1 ABI and clang
On Thu, Jun 30, 2011 at 4:00 PM, Øyvind Harboe <oyvind.harboe at zylin.com> wrote:
> On Thu, Jun 30, 2011 at 3:43 PM, Duncan Sands <baldrick at free.fr> wrote:
>> On 30/06/11 15:13, Øyvind Harboe wrote:
>>>> Sorry, I meant from which version of clang? I'm using Ubuntu 10 and
>>>> I was wondering if clang/llvm 2.8 would do it.
>>>
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 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,
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
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
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+
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
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 Apr 23
2
[LLVMdev] Building CFE in Mingw
Hello, all.
Just found this file in my e-mail atchive, hope it will be useful for somebody.
===cut=here===
Some small rules:
1) No blankspace in the paths to the top-level directories.
2) Add paths to binaries to your system PATH variable.
3) Use short paths to top-level directories.
1. Some checks & preparations.
1) Be sure, that you're using right make version:
$ make
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
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
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
2003 Sep 10
1
[LLVMdev] Warning during compilation
Hi all,
I get this warning during compilation:
make[3]: Entering directory
`/home/wendling/llvm/llvm/lib/ExecutionEngine/JIT'
Compiling Emitter.cpp
Emitter.cpp:44:1: warning: "_POSIX_MAPPED_FILES" redefined
In file included from /usr/include/unistd.h:171,
from
/usr/include/c++/3.3.1/i586-mandrake-linux-gnu/bits/gthr-default.h:38,
from
2012 Jul 15
2
[LLVMdev] Compiling llvm and Clang on Linux
Hi Sitvanit,
> 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.
actually, no, this just means that you are using a shell that doesn't support
this syntax. What shell are you using? Try
export CC=gcc44
export CXX=g++44
../llvm/configure
Ciao, Duncan.
>
2011 Aug 06
2
[LLVMdev] llvm-gcc near tip causing crash in /usr/bin/ld due to memory corruption on linux x86_64
Hi everyone,
-r136747 of llvm-gcc (and possibly others) is apparently tickling a binutils
issue on linux x86-64
Has anyone seen anything like this?
Thanks
-jason
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20110806/e7e717ef/attachment.html>
-------------- next part --------------
2011 Jan 14
4
matrix multiplication speed R
Hi,
A quick bench-mark of an R matrix muliplication 500by500 X 500by10000, all
random variates, with matlab reveals a huge difference in speed (5 times at
least). Is there anything that can be done in R to speed up the
multiplication?
Kind regards, Oyvind
--
View this message in context: http://r.789695.n4.nabble.com/matrix-multiplication-speed-R-tp3217257p3217257.html
Sent from the R devel
2011 Jun 21
2
Error using RcppGSL
Hi, I get an error using RcppGSL: fatal error: gsl/gsl_vector.h:No such file
or directory. What is the best way to install these files as they seem to
be missing?
Thanks,
Oyvind
--
View this message in context: http://r.789695.n4.nabble.com/Error-using-RcppGSL-tp3613535p3613535.html
Sent from the R devel mailing list archive at Nabble.com.