Hi Dave, Thanks for the results. What platform is this on? And do these failures occur with 2.9? -bw On Nov 10, 2011, at 9:51 AM, David A. Greene wrote:> greened at obbligato.org (David A. Greene) writes: > >> Nikola Smiljanic <popizdeh at gmail.com> writes: >> >>> I'm not sure if this makes a difference but I ran this >>> >>> make -j 2 -k LLVMCC_OPTION=clang ENABLE_BUILT_CLANG=1 ENABLE_PARALLEL_REPORT=1 TEST=simple report > ../../report.txt 2>&1 >> >> That does indeed seem to get me further. Thanks! > > Failures below. > > -Dave > > ******************** TEST (simple) 'sse.expandfft' FAILED! ******************** > Execution Context Diff: > /home/greened/src/llvm-30-rc3/build/Release/bin/fpcmp: Compared: 1.139094e-07 and 1.159249e-07 > abs. diff = 2.015500e-09 rel.diff = 1.738626e-02 > Out of tolerance: rel/abs: 1.600000e-02/0.000000e+00 > > TEST-FAIL: exec /home/greened/src/llvm-30-rc3/build/projects/llvm-test/SingleSource/UnitTests/Vector/SSE/sse.expandfft > > ******************** TEST (simple) 'sse.stepfft' FAILED! ******************** > Execution Context Diff: > /home/greened/src/llvm-30-rc3/build/Release/bin/fpcmp: Compared: 1.139094e-07 and 1.159249e-07 > abs. diff = 2.015500e-09 rel.diff = 1.738626e-02 > Out of tolerance: rel/abs: 1.600000e-02/0.000000e+00 > > TEST-FAIL: exec /home/greened/src/llvm-30-rc3/build/projects/llvm-test/SingleSource/UnitTests/Vector/SSE/sse.stepfft > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev
Bill Wendling <wendling at apple.com> writes:> Hi Dave, > > Thanks for the results. What platform is this on? And do these failures occur with 2.9?Platform is Debian Linux testing, x86_64. clang is a disaster with 2.9 unfortunately, so I can't test it: /bin/cp Output/sse.expandfft.llvm.o.compile.time Output/sse.expandfft.simple.compile.time /home/greened/src/llvm-2.9/build/Release/bin/clang++ -o Output/sse.expandfft.simple Output/sse.expandfft.llvm.o -lm -msse2 /usr/bin/ld: cannot find crt1.o: No such file or directory /usr/bin/ld: cannot find crti.o: No such file or directory clang: error: linker command failed with exit code 1 (use -v to see invocation) -Dave
Joerg Sonnenberger
2011-Nov-15 18:18 UTC
[LLVMdev] [cfe-dev] LLVM 3.0rc3 Testing Beginning
On Tue, Nov 15, 2011 at 11:41:11AM -0600, David A. Greene wrote:> Bill Wendling <wendling at apple.com> writes: > > > Hi Dave, > > > > Thanks for the results. What platform is this on? And do these failures occur with 2.9? > > Platform is Debian Linux testing, x86_64. > > clang is a disaster with 2.9 unfortunately, so I can't test it: > > /bin/cp Output/sse.expandfft.llvm.o.compile.time Output/sse.expandfft.simple.compile.time > /home/greened/src/llvm-2.9/build/Release/bin/clang++ -o Output/sse.expandfft.simple Output/sse.expandfft.llvm.o -lm -msse2 > /usr/bin/ld: cannot find crt1.o: No such file or directory > /usr/bin/ld: cannot find crti.o: No such file or directory > clang: error: linker command failed with exit code 1 (use -v to see invocation)Add some symlinks to clean up the multilib mess Debian created. Joerg
On Nov 15, 2011, at 9:41 AM, David A. Greene wrote:> Bill Wendling <wendling at apple.com> writes: > >> Hi Dave, >> >> Thanks for the results. What platform is this on? And do these failures occur with 2.9? > > Platform is Debian Linux testing, x86_64. > > clang is a disaster with 2.9 unfortunately, so I can't test it: > > /bin/cp Output/sse.expandfft.llvm.o.compile.time Output/sse.expandfft.simple.compile.time > /home/greened/src/llvm-2.9/build/Release/bin/clang++ -o Output/sse.expandfft.simple Output/sse.expandfft.llvm.o -lm -msse2 > /usr/bin/ld: cannot find crt1.o: No such file or directory > /usr/bin/ld: cannot find crti.o: No such file or directory > clang: error: linker command failed with exit code 1 (use -v to see invocation)You'd need to edit the files that have the include and link paths. -eric