Displaying 2 results from an estimated 2 matches for "28546e5e".
Did you mean:
285465
2005 May 29
0
[LLVMdev] Bug in Makefile
Hi,
I just updated from source and got this at the top of the master
Makefile:
LEVEL = .
DIRS = lib/System lib/Support utils lib
ifeq ($(MAKECMDGOALS),tools-only)
DIRS += tools
else
ifneq ($(MAKECMDGOALS),libs-only)
DIRS += runtime docs
OPTIONAL_DIRS = examples projects
endif
endif
This causes my build to be incorrect. In the general case, it doesn't
build the tools, and
2005 May 23
2
[LLVMdev] a question about LLCO
Hi Terry,
Reid is exactly right about the benefits of static (link-time)
optimization for whole programs. When all libraries are available, it
could alllow significantly better optimization without run-time
overhead.
But it is increasingly common today for libraries to be dynamically
linked. In these cases, you could get the benefits of LLVM
optimization in two ways, *if* you compile the