similar to: [LLVMdev] Pass Added as Required fails assert

Displaying 13 results from an estimated 13 matches similar to: "[LLVMdev] Pass Added as Required fails assert"

2008 Jul 17
0
[LLVMdev] Pass Added as Required fails assert
We have discovered the issue with our code. It seems that when the first call to doInitilization utilized one of the specified analyses, that analysis had never been properly added as required. Using gdb, we can see that addRequired is getting called (seen below) but when doInitalization is finally called, it still responds as if the analysis was not required. Is this a bug or is
2008 Apr 23
4
[LLVMdev] Error trying to build llvm-gcc
Hi, I was trying to build llvm-gcc by following the instructions as given in this webpage : http://llvm.org/docs/GCCFEBuildInstrs.html on Ubuntu 7.10. At step 5 (make ENABLE_OPTIMIZED=0), I am getting make errors: make[2]: Leaving directory `/home/pprabhu/llvm/llvm-objects/i686-pc-linux-gnu/libjava' /home/pprabhu/llvm/llvm-objects/gcc/gcj -B/home/pprabhu/llvm/llvm-objects/gcc/
2008 Apr 23
0
[LLVMdev] Error trying to build llvm-gcc
Prakash Prabhu wrote: > Hi, > > I was trying to build llvm-gcc by following the instructions as given > in this webpage : http://llvm.org/docs/GCCFEBuildInstrs.html > on Ubuntu 7.10. At step 5 (make ENABLE_OPTIMIZED=0), I am getting make > errors: > > make[2]: Leaving directory > `/home/pprabhu/llvm/llvm-objects/i686-pc-linux-gnu/libjava' >
2009 Jan 16
1
[LLVMdev] poolallocation error
Hi all, I too am getting this error for x86_64 when I am trying to use the Data Structure Analysis ...I svn upped both the llvm main branch and the poolalloc today in the morning and recompiled everything from scratch : $ opt -load /home/pprabhu/llvm/llvm-install-x86-64/lib/libpoolalloc.so -ds-aa < o.bc opt: /home/pprabhu/llvm/llvm/lib/VMCore/PassManager.cpp:1418: virtual void
2008 Nov 19
2
[LLVMdev] poolallocation error
Hi, I am trying to use the poolallocator. More specific, I am trying to play around with the pointer compression pass. Though, I get assertion failures for the pass dependencies. This is when it in PointerCompress::getAnalysisUsage tries to register the the BU pass as required. I.e. when AU.addRequired<CompleteBUDataStructures>(); is called. $ opt -f -load
2009 Jan 21
1
[LLVMdev] poolallocation error
Dear Prakash, I believe I've fixed the problem you were having with ds-aa. Please update your poolalloc tree, recompile, and let me know if it works. -- John T. Criswell, John T wrote: > [snip] > > ________________________________________ > From: llvmdev-bounces at cs.uiuc.edu [llvmdev-bounces at cs.uiuc.edu] On Behalf Of Prakash Prabhu [prakash.prabhu at gmail.com] > Sent:
2013 Mar 15
2
Samba (3.6.12) - Different Home Directories for Different Users
Hello, I am using Samba (3.6.12) with Gentoo Linux (Kernel Version 3.7.10) and I have a system integrated with Active Directory (the Microsoft Windows servers are running 2008 Enterprise Edition, Release 2). All is well on that front (I can log in, directories are created, etc.) What I would like to do now is have different /etc/skel directories for different groups. So, for example, if
2009 Jan 19
0
[LLVMdev] poolallocation error
Dear Prakash, Yes, DSA is still in active use, although nobody else uses the -ds-aa pass as far as I know. I tried the below sample (although ds-aa should be in libLLVMDataStructure.so and not libpoolalloc.so), and I get the same error. I've seen similar problems with other passes in our work here. My guess is that -ds-aa is requiring two passes that claim to invalidate each other; this
2013 Mar 13
1
New to Samba 4
Hi list, it's my first post here, and I have a basic question, but couldn't find a good explanation out there.... It's about users folders, or the [homes] section in Samba 3.X. I believe that the users now stay inside the AD, and they're not unix users anymore, so, how can I implement the users folders now, if there is no users folders on the host system???? Thanks!
2013 Mar 15
1
Samba 4 disabled users
Hello, With Samba 4 Active Directory, how can I determine from the command-line (wbinfo, samba-tool, etc.) whether or not a user is disabled? Thanks, Kris
2013 Mar 15
1
There are no currently logon servers available when mapping with "net use"
Hi people, I have a problem and I need so much of your help. I have a login script in \\server1\netlogon\script.bat (on my PDC and BDC) that runs "net use" commands to map some shares in time of the logon. This login tries to map share in another server (samba member of domain \\server2). So, I put the result at a log and appears these lines: " System error 1311 has occurred.
2008 Apr 23
1
[LLVMdev] Error trying to build llvm-gcc
Thanks for the quick reply, Edwin. I tried with --enable-languages=java and it still fails with the same error: ../llvm-gcc/configure --enable-languages=java,c++,c --prefix=/usr/local make ENABLE_OPTIMIZED=0 Actually I found that when I manually add /usr/share/java/libgcj-4.2.jar to the classpath to the failed command, it seems to work: /home/pprabhu/llvm/llvm-objects/gcc/gcj
2008 Oct 28
2
[LLVMdev] Debugging lli using bugpoint
Hi, I have a program that runs when statically compiled using llc and gcc but crashes with a segmentation fault when run with lli. I am trying to debug it with bugpoint and the initial part of bugpoint seems to be suggesting that I am somehow missing the linking with the libraries having dlsym/dlopen although I am passing it to lli : *$ bugpoint -run-jit