search for: targetconfig

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

2012 Oct 26
4
[LLVMdev] Configuring test-suite
...ols' 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 not found make: [TargetConfig.mk] Error 127 (ignored) ... o? E? Might be environment messup, but I'm a little lost. Does this work out-of-the box to anyone? -- cheers, --renato http://systemcall.org/
2012 Oct 26
0
[LLVMdev] Configuring test-suite
...andbox/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 not found > make: [TargetConfig.mk] Error 127 (ignored) > ... > > o? E? Might be environment messup, but I'm a little lost. Does this > work out-of-the box to anyone? > > -- &gt...
2014 Feb 26
2
[LLVMdev] test-suite wrongly using big-endian results
On 24 February 2014 18:32, Daniel Dunbar <daniel at zuster.org> wrote: > $(error "ENDIAN is $ENDIAN"), before and after the include of > Makefile.config and Makefile.singlesrc (which includes Makefile.programs). Hi Daniel, Thanks, that did the trick! ;) In TargetConfig.mk.in: #ifdef __LITTLE_ENDIAN__ ENDIAN := little #else ENDIAN := big #endif Seems like it should be __ORDER_LITTLE_ENDIAN__ to be cross-platform. Attaching the patch that adds aarch64 (which is identical to the one applied in LLVM a few days ago) to the config plus change the TargetConfig.mk. S...
2012 Oct 27
0
[LLVMdev] Configuring test-suite
...andbox/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 not found > make: [TargetConfig.mk] Error 127 (ignored) > ... > > o? E? Might be environment messup, but I'm a little lost. The command you ran is not expected to work, the Makefiles de...
2014 Feb 24
2
[LLVMdev] test-suite wrongly using big-endian results
On 24 February 2014 17:02, Daniel Dunbar <daniel at zuster.org> wrote: > Nothing in particular springs to mind. Is it possible that in the context > where this part of the Makefile is running Makefile.config isn't available? This is a standard lnt run, create in the same way I ran for x86_64 and ARM, so I'm not sure what could be wrong. > I'm not sure how this can be