search for: yaay

Displaying 5 results from an estimated 5 matches for "yaay".

Did you mean: yay
2003 Nov 18
0
LLVM Status Update
...4. Brian has also been working on make the LLVM interpreter work. In particular, he implemented exception handling and variable argument handling support. 5. Bugpoint no longer crashes while performing "final cleanups". This allowed removing the -disable-final-cleanups option (yaay). 6. Reid Spencer contributed the LLVM Namespacification patch, which allows LLVM to interoperate with other people's source bases better: http://mail.cs.uiuc.edu/pipermail/llvmdev/2003-November/000554.html 7. Misha is on a quest to clean up our web pages, and make them really be H...
2005 Jan 14
0
[LLVMdev] Proposed Makefile Changes
.../Projects.html But it's not really a tutorial. A tutorial would be great to have, but we should figure out the relationship between these two docs. > The end result should be that using the LLVM Makefile for things other > than LLVM itself gets a easier/clearer and better documented. yaay. :) > I'm signing up to do the necessary changes in llvm and llvm-test. I'll > also help anyone with the necessary changes in their project. If you make these changes, please make sure to send instructions for exactly what needs to be done to update projects. These kinds of things...
2004 Jun 20
0
[LLVMdev] Problems loading passes on Mac OS X
Solved. Short version: You don't need to change DynamicLinker.cpp at all. dlopen() should just work, except that the defaults for libtool are to produce the wrong kind of shared object. On OS X, libtool needs to be passed the -module option to create dlopen-able objects: % diff Makefile.rules.old Makefile.rules 326c326 < Link := $(LIBTOOL) --mode=link $(CXX) --- > Link
2004 Jun 19
2
[LLVMdev] Problems loading passes on Mac OS X
OK, seems like I've got some more looking to do. From what I can find, the only difference with OS X and dynamic libraries is that you can't depend on the order of calling static constructors, but not that you can't depend on them getting called. :) If I find that library handling in LLVM needs changes to work with OS X, I'll send a patch. Thanks, -mike On Jun 19, 2004,
2005 Jan 14
6
[LLVMdev] Proposed Makefile Changes
Hi, In buildling XPS using LLVM's makefile system, I'm finding that there's a few things lacking in our support for LLVM-based projects. The items below should help but may require changes to project makefiles. I thought I'd check before just going and doing it. 1. Various autoconf generated variables (e.g. abs_top_srcdir) are set in the makefiles but not used. They