[llvm-commits] [llvm] r97770 - /llvm/trunk/tools/Makefile

Nick Lewycky nlewycky at google.com
Thu Mar 4 18:01:08 PST 2010


On 4 March 2010 16:54, Chris Lattner <sabre at nondot.org> wrote:

> Author: lattner
> Date: Thu Mar  4 18:54:45 2010
> New Revision: 97770
>
> URL: http://llvm.org/viewvc/llvm-project?rev=97770&view=rev
> Log:
> liblto and gold don't need to be built in serial
>

Yes they do. 'gold' depends on 'liblto'.

Nick


>
> Modified:
>    llvm/trunk/tools/Makefile
>
> Modified: llvm/trunk/tools/Makefile
> URL:
> http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/Makefile?rev=97770&r1=97769&r2=97770&view=diff
>
> ==============================================================================
> --- llvm/trunk/tools/Makefile (original)
> +++ llvm/trunk/tools/Makefile Thu Mar  4 18:54:45 2010
> @@ -33,15 +33,15 @@
>  include $(LEVEL)/Makefile.config
>
>  ifeq ($(ENABLE_PIC),1)
> -  DIRS += lto
> +  PARALLEL_DIRS += lto
>   ifdef BINUTILS_INCDIR
> -    DIRS += gold
> +    PARALLEL_DIRS += gold
>   endif
>  endif
>
>  # No support for lto / gold on windows targets
>  ifeq ($(TARGET_OS), $(filter $(TARGET_OS), Cygwin MingW))
> -  DIRS := $(filter-out lto gold, $(DIRS))
> +  PARALLEL_DIRS := $(filter-out lto gold, $(DIRS))
>  endif
>
>  # Only build edis if X86 target support is enabled.
>
>
> _______________________________________________
> llvm-commits mailing list
> llvm-commits at cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20100304/a129048e/attachment.html>


More information about the llvm-commits mailing list