[llvm-commits] [llvm] r81669 - /llvm/trunk/test/Makefile

Daniel Dunbar daniel at zuster.org
Sun Sep 13 12:23:30 PDT 2009


Hi Mikhail,

Do you think you could add a -cc= (or something) option to llvmc so
that it doesn't depend on llvm-gcc being in the path?

I'd like to not have to do the patch below, and just change the tests
to point at the right location for CC.

 - Daniel

On Sat, Sep 12, 2009 at 7:45 PM, Daniel Dunbar <daniel at zuster.org> wrote:
> Author: ddunbar
> Date: Sat Sep 12 21:45:57 2009
> New Revision: 81669
>
> URL: http://llvm.org/viewvc/llvm-project?rev=81669&view=rev
> Log:
> Add LLVMGCCBINDIR to path, since LLVMC expects to find llvm-gcc in the path.
>
> Modified:
>    llvm/trunk/test/Makefile
>
> Modified: llvm/trunk/test/Makefile
> URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Makefile?rev=81669&r1=81668&r2=81669&view=diff
>
> ==============================================================================
> --- llvm/trunk/test/Makefile (original)
> +++ llvm/trunk/test/Makefile Sat Sep 12 21:45:57 2009
> @@ -66,7 +66,7 @@
>  ifneq ($(RUNTEST),)
>  check-local:: site.exp
>        ( $(ULIMIT) \
> -         PATH="$(LLVMToolDir):$(LLVM_SRC_ROOT)/test/Scripts:$(PATH)" \
> +         PATH="$(LLVMToolDir):$(LLVM_SRC_ROOT)/test/Scripts:$(LLVMGCCDIR)/bin:$(PATH)" \
>          $(RUNTEST) $(RUNTESTFLAGS) )
>  else
>  check-local:: site.exp
> @@ -78,6 +78,7 @@
>          $(LLVM_SRC_ROOT)/utils/lit/lit.py \
>                --path "$(LLVMToolDir)" \
>                --path "$(LLVM_SRC_ROOT)/test/Scripts" \
> +               --path "$(LLVMGCCDIR)/bin" \
>                $(LIT_ARGS) $(LIT_TESTSUITE) )
>
>  ifdef TESTONE
>
>
> _______________________________________________
> llvm-commits mailing list
> llvm-commits at cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits
>




More information about the llvm-commits mailing list