Displaying 20 results from an estimated 6000 matches similar to: "[LLVMdev] Error Building LLVM on AIX 6"
2010 Aug 22
0
[LLVMdev] Error Building LLVM on AIX 6
On Aug 22, 2010, at 3:38 PM, Patrick Simmons wrote:
> I get the following problem building LLVM 2.7 on AIX 6:
>
> gmake[1]: Entering directory
> `/home/home/ac/psimmons/llvm/llvm-2.7/lib/System'
> llvm[1]: Compiling Path.cpp for Release build
> In file included from Path.cpp:262:
> Unix/Path.inc: In static member function 'static llvm::sys::Path
>
2010 Aug 23
1
[LLVMdev] Error Building LLVM on AIX 6
Dear Patrick,
Documentation on some AIX routines to do the same thing can be found at
http://publib.boulder.ibm.com/infocenter/comphelp/v8v101/index.jsp?topic=/com.ibm.xlcpp8a.doc/proguide/ref/dynamic_load.htm.
Interestingly enough, the same page suggests that AIX does, in fact,
support dlopen() and friends for POSIX compatibility. You might need to
find out if there's a header file or a
2012 Oct 23
2
[LLVMdev] Error building llvm on AIX 7.1
Hi All,
I am trying to build llvm on AIX. I installed all the required packages
including gcc, g++, etc
./configure also went fine. but i tried to run gmake, i got the following
error:
llvm[1]: Compiling MemoryBuffer.cpp for Release+Asserts build
llvm[1]: Compiling MemoryObject.cpp for Release+Asserts build
llvm[1]: Compiling Mutex.cpp for Release+Asserts build
llvm[1]: Compiling Path.cpp for
2016 Jun 30
3
Building LLVM under Cygwin32 fails
I am updating our out-of-tree copy of LLVM to track the head (revision
#272991 specifically).
I have it building successfully with VC++ 2013 and CMake v3.5.2 on Windows,
and with GCC v4.8.5 and CMake v3.5.2 on CentOS; but when I try building on
Windows using Cygwin32 I get the following build failures:
[ 4%] Building CXX object
lib/Support/CMakeFiles/LLVMSupport.dir/Signals.cpp.o
In file
2008 Mar 11
3
[LLVMdev] Subversion head: build problem on cygwin?
Not sure if this is me or not, because this is the first time I've built
LLVM on Cygwin, but I can't get a working compile. I've configured with
the following options:
$ ./configure --with-llvmgccdir=/cygdrive/i/Projects/llvm-gcc4.2-2.2
--enable-debug-runtime --enable-jit --enable-targets=x86
Configure doesn't suggest there's anything wrong, but when I try make, I
almost
2016 Jun 30
0
Building LLVM under Cygwin32 fails
Googling indicates that cygwin doesn't have that functionality. Or, at
least, didn't in 2010, when someone asked about the same problem:
https://cygwin.com/ml/cygwin/2010-01/msg00596.html
"cygwin has only dlsym() not the SGI DL_info + dladdr() yet.
clang just needs it to get the path for the CIndex dll.
This should be possible with the code in the LLVM_ON_WIN32 section,
and convert
2008 Mar 11
0
[LLVMdev] Subversion head: build problem on cygwin?
Hi, Jules.
On Tue, March 11, 2008 2:14 pm, Jules wrote:
> Not sure if this is me or not, because this is the first time I've built
> LLVM on Cygwin, but I can't get a working compile.
Last I checked, LLVM-on-Cygwin has at least two problems, and you've hit
one of them. Working around them isn't too bad, though patches to fix
them would be appreciated.
>
2012 Oct 23
0
[LLVMdev] Error building llvm on AIX 7.1
I was able to process further by making some code changes and replacing
export-dynamic with -bexpfull in Makefile.config. Now, i am getting
following error while linking ..
llvm[3]: Linking Release+Asserts Loadable Module LLVMHello.so
ld: 0706-027 The -R $ORIGIN flag is ignored.
ld: 0711-317 ERROR: Undefined symbol: llvm::Pass::getPassName() const
ld: 0711-317 ERROR: Undefined symbol:
2004 Aug 31
9
[LLVMdev] POSIX compliance
Reid,
>As for Interix support in general, I'm having a hard time determining
>which variant of Unix Interix implements. It seems to be partially Posix
>1 and partially Posix 2 based. Do you have any further information
>related to the specific standards supported by Interix? I don't want to
>incorrectly categorize the Interix support.
I've discussed this subject with
2023 Mar 17
1
La_library() always returns "" on R-devel?
Seems like this in 83986 [1] needs a fix in Lapack.c:
if (dladdr((void *) F77_NAME(ilaver), &dl_info)) {
char buf[PATH_MAX+1];
char *res = realpath(dl_info.dli_fname, buf);
if (res) {
SEXP nfo = R_NilValue;
if (strstr(res, "flexiblas"))
nfo = R_flexiblas_info();
if
2012 Jul 13
2
[LLVMdev] [llvm-commits] Dealing with a corrupted /proc/self/exe link
On Fri, Jul 13, 2012 at 1:40 PM, Benjamin Kramer <benny.kra at gmail.com>wrote:
>
> On 13.07.2012, at 21:39, Gabor Greif <gabor.greif at alcatel-lucent.com>
> wrote:
>
> > Benjamin Kramer wrote:
> >> On 13.07.2012, at 09:46, Gabor Greif <gabor.greif at alcatel-lucent.com>
> wrote:
> >>
> >>> Hi all,
> >>>
>
2012 Jul 14
0
[LLVMdev] [llvm-commits] Dealing with a corrupted /proc/self/exe link
Chandler Carruth wrote:
> On Fri, Jul 13, 2012 at 1:40 PM, Benjamin Kramer <benny.kra at gmail.com
> <mailto:benny.kra at gmail.com>> wrote:
>
>
> On 13.07.2012, at 21:39, Gabor Greif <gabor.greif at alcatel-lucent.com
> <mailto:gabor.greif at alcatel-lucent.com>> wrote:
>
> > Benjamin Kramer wrote:
> >> On 13.07.2012,
2015 Apr 09
2
[LLVMdev] Intercepting dlinfo in memory sanitizer
Hi everyone,
I ran into a false positive with memory sanitizer due to it not
intercepting dlinfo. I tried to get started on writing such an interceptor,
but dlinfo seems like an extraordinarily difficult function to intercept.
The three considerations that I would like somebody to look at are:
1) How do we get the enum values to decide what kind of pointer dlinfo is
getting. Ideally we'd
2015 Apr 10
2
[LLVMdev] Intercepting dlinfo in memory sanitizer
Thanks! I'll try that.
In order to avoid starting a new thread, let me ask you the next question.
One of the shared libraries I load calls strtol and msan fails to intercept
it. Why would this be? The library seems to be otherwise implemented. One
of the potential culprits I saw is that strtol is marked as strong in libc.
Is there any workaround?
Keno
On Thu, Apr 9, 2015 at 3:00 PM, Evgeniy
2012 May 29
1
[LLVMdev] [cfe-commits] r157260 - in /cfe/trunk: include/clang/Rewrite/Rewriter.h lib/Rewrite/Rewriter.cpp unittests/CMakeLists.txt unittests/Tooling/RewriterTest.cpp unittests/Tooling/RewriterTestContext.h
Manuel,
After the discussion at last night, I have agreed that
GetTemporaryDirectory() on Win32 would do bad thing, thank you.
dir = GetTemporaryDirectory();
dir.eraseFromDisk(erase_contents = true);
dir = GetTemporaryDirectory(); /* It doesn't create anything on Win32
due to caching */
I suppose Manuel wants GetTemporaryDirectory() to keep semantics
similar mkdtemp(3).
Though it is in
2004 Sep 01
0
[LLVMdev] POSIX compliance
/lib/System/platform/Path.cpp is not compilable under Cygwin
(although it was motivated to be for Cygwin...):
-----------------------------------
Compiling Path.cpp
In file included from Path.cpp:37:
platform/Path.cpp: In static member function `static llvm::sys::Path
llvm::sys::Path::GetTemporaryDirectory()':
platform/Path.cpp:41: error: `mkdtemp' undeclared (first use this function)
2003 Apr 12
2
dlinfo() is missing in 5.0-REL
Hi,
In FreeBSD 5.0-REL the dlinfo() manpage is present but the function does
not
seem to be implemented, is there a good reason for this ?
-- Aurelien
2008 Mar 12
3
[LLVMdev] Subversion head: build problem on cygwin?
Sam Bishop wrote:
> What LLVM is trying to do here is determine its own path. I don't know
> if the approach being used will work on Cygwin. (The code is very new,
> and it's never worked on Cygwin.) You could try reading the
> /proc/$$/exe symlink. I don't know how long Cygwin has been emulating
> /proc, though.
The dladdr() code won't work on Cygwin; the
2012 Oct 23
2
[LLVMdev] Error building llvm on AIX 7.1
On 10/23/2012 12:20 PM, Sunil Saggar wrote:
> I was able to process further by making some code changes and replacing
> export-dynamic with -bexpfull in Makefile.config. Now, i am getting
> following error while linking ..
>
> llvm[3]: Linking Release+Asserts Loadable Module LLVMHello.so
What exactly was the linking command?
-Krzysztof
--
Qualcomm Innovation Center, Inc. is a
2004 Sep 19
1
[LLVMdev] Path.cpp patch to lib/System/Interix
Hi,
Just a minor fix to get Path.cpp to compile on Interix.
Henrik
_________________________________________________________________
Find det, du s�ger med MSN S�g http://search.msn.dk/
-------------- next part --------------
A non-text attachment was scrubbed...
Name: Path.cpp.zip
Type: application/x-zip-compressed
Size: 463 bytes
Desc: not available
URL: