search for: original_cc

Displaying 9 results from an estimated 9 matches for "original_cc".

2013 Feb 18
2
[LLVMdev] Problem to run SPEC2006
...LLVMers, I am having trouble to run SPEC2006. I have checked in my log file that the spec root has been correctly found with ./configure, but when I try: make TEST=simple in the External folder I get the following error: make -C /home/izabela/svn_llvm/llvm/projects/test-suite/tools all \ ORIGINAL_CC="clang" \ ORIGINAL_CXX="clang" make[1]: Entering directory `/home/izabela/svn_llvm/llvm/projects/test-suite/tools' make[1]: Nothing to be done for `all'. make[1]: Leaving directory `/home/izabela/svn_llvm/llvm/projects/test-suite/tools' make[1]: Entering direct...
2012 Oct 26
4
[LLVMdev] Configuring test-suite
...nt.py:748: fatal error: unable to build tools, aborting! Going to the dir where it built, and typing: $ make -C tools/ make: Entering directory `/home/rengolin/devel/llvm/sandbox/test-2012-10-26_21-43-48/tools' make -C /home/rengolin/devel/llvm/sandbox/test-2012-10-26_21-43-48/tools all \ ORIGINAL_CC="cc" \ ORIGINAL_CXX="cc" o timeit-target /home/rengolin/devel/llvm/test-suite/tools/timeit.c -O3 make: o: Command not found make: [timeit-target] Error 127 (ignored) E -o TargetConfig.mk -x c /home/rengolin/devel/llvm/test-suite/tools/TargetConfig.mk.in make: E: Command no...
2013 Feb 18
0
[LLVMdev] Problem to run SPEC2006
...uble to run SPEC2006. I have checked in my log file that the spec root has been correctly found with ./configure, but when I try: > > make TEST=simple > > in the External folder I get the following error: > > make -C /home/izabela/svn_llvm/llvm/projects/test-suite/tools all \ > ORIGINAL_CC="clang" \ > ORIGINAL_CXX="clang" > make[1]: Entering directory `/home/izabela/svn_llvm/llvm/projects/test-suite/tools' > make[1]: Nothing to be done for `all'. > make[1]: Leaving directory `/home/izabela/svn_llvm/llvm/projects/test-suite/tools' > make[...
2015 Apr 02
3
[LLVMdev] Cross Compiling LLVM's test-suite
Hi all, I'm working in a company to port LLVM on their own processor. I'm trying to run the test-suite, but it seems that it is usually run directly on the processor which is tested. In my case, I cannot run it on the processor, but I have a simulator on which I would like to run the test-suite. Also, it seems to me that the test-suite start by compiling some tools that have to be run
2013 Feb 19
1
[LLVMdev] Problem to run SPEC2006
...my log file that > the spec root has been correctly found with ./configure, but when I try: > > > > make TEST=simple > > > > in the External folder I get the following error: > > > > make -C /home/izabela/svn_llvm/llvm/projects/test-suite/tools all \ > > ORIGINAL_CC="clang" \ > > ORIGINAL_CXX="clang" > > make[1]: Entering directory > `/home/izabela/svn_llvm/llvm/projects/test-suite/tools' > > make[1]: Nothing to be done for `all'. > > make[1]: Leaving directory > `/home/izabela/svn_llvm/llvm/projects/te...
2012 Oct 26
0
[LLVMdev] Configuring test-suite
...s, aborting! > > Going to the dir where it built, and typing: > > $ make -C tools/ > make: Entering directory > `/home/rengolin/devel/llvm/sandbox/test-2012-10-26_21-43-48/tools' > make -C /home/rengolin/devel/llvm/sandbox/test-2012-10-26_21-43-48/tools all \ > ORIGINAL_CC="cc" \ > ORIGINAL_CXX="cc" > o timeit-target /home/rengolin/devel/llvm/test-suite/tools/timeit.c -O3 > make: o: Command not found > make: [timeit-target] Error 127 (ignored) > E -o TargetConfig.mk -x c > /home/rengolin/devel/llvm/test-suite/tools/T...
2012 Oct 27
0
[LLVMdev] Configuring test-suite
...rectory, please? > Going to the dir where it built, and typing: > > $ make -C tools/ > make: Entering directory > `/home/rengolin/devel/llvm/sandbox/test-2012-10-26_21-43-48/tools' > make -C /home/rengolin/devel/llvm/sandbox/test-2012-10-26_21-43-48/tools all \ > ORIGINAL_CC="cc" \ > ORIGINAL_CXX="cc" > o timeit-target /home/rengolin/devel/llvm/test-suite/tools/timeit.c -O3 > make: o: Command not found > make: [timeit-target] Error 127 (ignored) > E -o TargetConfig.mk -x c > /home/rengolin/devel/llvm/test-suite/tools/T...
2014 May 16
5
[LLVMdev] Use perf tool for more accurate time measuring on Linux
...Index: tools/Makefile =================================================================== --- tools/Makefile (revision 208774) +++ tools/Makefile (working copy) @@ -8,8 +8,13 @@ all:: timeit-target endif +ifeq ($(TARGET_OS),Linux) +timeit: timeit.sh + cp -f $< $@ +else timeit: timeit.c $(ORIGINAL_CC) $(CFLAGS) -O3 -o $@ $< +endif timeit-target: timeit.c $(LD_ENV_OVERRIDES) $(LCC) -o $@ $< $(LDFLAGS) $(CFLAGS) $(TARGET_FLAGS) -O3
2014 Apr 21
2
[LLVMdev] 3.4.1 Regression caused by merging r198940
On Thu, Apr 17, 2014 at 09:57:32AM -0400, Tom Stellard wrote: > On Fri, Apr 11, 2014 at 03:02:21PM -0700, Tom Stellard wrote: > > Hi, > > > > I have just tagged the first release candidate for the > > 3.4.1 release, so testers may begin testing. Please refer to > > http://llvm.org/docs/ReleaseProcess.html for information on how to > > validate a release.