search for: enable_built_clang

Displaying 16 results from an estimated 16 matches for "enable_built_clang".

2011 Nov 09
2
[LLVMdev] [cfe-dev] LLVM 3.0rc3 Testing Beginning
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! -Dave
2011 Sep 29
2
[LLVMdev] Building bitcode modules
...GNU/Linux I have added a bitcode library to the sample project I have modified the sample project to show my problem -- patch attached. The warning comes from Makefile.rules:1192. The check is performed over LLVMCC, set at Makefile.rules:428-443. Setting depends on LLVMCC_OPTIONS, CLANGPATH, and ENABLE_BUILT_CLANG. Previously -- I have tried with 3699261d3f49d65cee6a645c849c41cdca51a01f -- these vars was set throught the configure script, now they are not set. Thank you for the assistance, speziale.ettore at gmail.com -------------- next part -------------- A non-text attachment was scrubbed... Name: bitcod...
2011 Nov 10
0
[LLVMdev] [cfe-dev] LLVM 3.0rc3 Testing Beginning
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 Co...
2011 Nov 09
0
[LLVMdev] [cfe-dev] LLVM 3.0rc3 Testing Beginning
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 inside rc3/Phase3/Release/llvmCore-3.0-rc2.obj/projects/llvm-test On Wed, Nov 9, 2011 at 4:23 PM, David A. Greene <greened at obbligato.org>wrote: > Eric Christopher <echristo at apple.com> writes: &g...
2011 Sep 29
0
[LLVMdev] Building bitcode modules
...ode library to the sample project > > I have modified the sample project to show my problem -- patch attached. > > The warning comes from Makefile.rules:1192. The check is performed over > LLVMCC, set at Makefile.rules:428-443. Setting depends on > LLVMCC_OPTIONS, CLANGPATH, and ENABLE_BUILT_CLANG. Previously -- I have > tried with 3699261d3f49d65cee6a645c849c41cdca51a01f -- these vars was > set throught the configure script, now they are not set. Aha. I see. I'd forgotten to remove that code when I moved the rest of the compiler support out of the top level configure for llvm. I...
2011 Nov 09
3
[LLVMdev] [cfe-dev] LLVM 3.0rc3 Testing Beginning
Eric Christopher <echristo at apple.com> writes: > On Nov 8, 2011, at 7:20 PM, David A. Greene wrote: > > I couldn't figure out how to run the test-suite. Are there up-to-date > instructions somewhere? llvm-gcc doesn't exist anymore... > > Easiest is to check out the test-suite branch into projects and then after you configure and build from the top
2011 Nov 23
1
[LLVMdev] Follow-up questions after successful upgrade to LLVM 3.0rc4
...> and just doing a "./configure". > > the configure should be done in the directory where you built LLVM. Thanks! I tried doing: > cd llvm30/build > ../test-suite-3.0rc4.src/configure . . . configure output > cd ../test-suite-3.0rc4.src > gmake LLVMCC_OPTION=clang ENABLE_BUILT_CLANG=1 And got the same error as I described previously. On the assumption that my flailing around had contaminated my environment, I decided to start from scratch with the test-suite. So I deleted the test-suite directory, downloaded it again, unpacked it, and retried this same set of commands. Aga...
2013 Apr 30
1
[LLVMdev] [cfe-dev] [Announcement] Call For 3.3 Testers!
...The next thing would be to run the test-suite for both releases and use the findRegressions.py (also in utils/release) to compare the output of 3.2 final and the freshly built 3.3 To run the test-suite you run something like this inside llvm/projects/llvm-test directory make -k LLVMCC_OPTION=clang ENABLE_BUILT_CLANG=1 ENABLE_PARALLEL_REPORT=1 TEST=simple report > ../../../simple-report.txt 2>&1 You report any issues you run into, file bugzilla reports or post to mailing list if you're unsure. This is just to give you some feel for what it actually takes, but the process is relatively simple. O...
2011 Sep 29
0
[LLVMdev] Building bitcode modules
On Sep 28, 2011, at 11:31 PM, Speziale Ettore wrote: > Hi, > > I have updated llvm to the 113aa8612010434069fc5b5e09f6b2667e03e173 git > commit. I have a small llvm project that builds a bitcode library, so I > used MODULE_NAME=foo to build foo.bc. Now, I cannot build the library, > because a compatible compiler cannot be found (Makefile.rules:1052). > > I have seen that
2011 Sep 29
2
[LLVMdev] Building bitcode modules
Hi, I have updated llvm to the 113aa8612010434069fc5b5e09f6b2667e03e173 git commit. I have a small llvm project that builds a bitcode library, so I used MODULE_NAME=foo to build foo.bc. Now, I cannot build the library, because a compatible compiler cannot be found (Makefile.rules:1052). I have seen that configure.ac has been modified, so: 1) there is an update in progress? 2) I have to use
2011 Nov 12
3
[LLVMdev] [cfe-dev] LLVM 3.0rc3 Testing Beginning
...: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' FAI...
2011 Sep 29
2
[LLVMdev] Building bitcode modules
...ple project >> >> I have modified the sample project to show my problem -- patch attached. >> >> The warning comes from Makefile.rules:1192. The check is performed over >> LLVMCC, set at Makefile.rules:428-443. Setting depends on >> LLVMCC_OPTIONS, CLANGPATH, and ENABLE_BUILT_CLANG. Previously -- I have >> tried with 3699261d3f49d65cee6a645c849c41cdca51a01f -- these vars was >> set throught the configure script, now they are not set. > Aha. I see. > > I'd forgotten to remove that code when I moved the rest of the compiler support out of the top level...
2011 Nov 23
1
[LLVMdev] Follow-up questions after successful upgrade to LLVM 3.0rc4
...t;> to run the test-suite using clang rather than llvm-gcc. I've made a couple >> stabs at it without success. If there is new documentation that I've >> missed, please be kind when you point out where I should have looked. :-} > Pass LLVMCC_OPTION=clang ENABLE_BUILT_CLANG=1 to make when running the testsuite. Duncan, Thanks for the quick response! Since I don't have llvm-gcc installed, I tried to do the configure by doing a "cd" to the test-suite directory and just doing a "./configure". It appeared to do something useful in spite of the...
2013 Apr 30
0
[LLVMdev] [Announcement] Call For 3.3 Testers!
On Mon, Apr 29, 2013 at 1:12 PM, Bill Wendling <wendling at apple.com> wrote: > Hear ye! Hear ye! This is a call for testers for the 3.3 release!!! > > What's Expected > --------------- > > You might be asking yourself, "Self, I would like to be an LLVM tester for > the 3.3 release, but I don't know what's involved in being one." Well, ask >
2011 Nov 22
4
[LLVMdev] Follow-up questions after successful upgrade to LLVM 3.0rc4
We were successful in upgrading our JIT project to LLVM 3.0rc4 last week, after initially struggling with the various usage and IR changes from V2.9. But we have some follow-up questions: 1) In spite of building and running our tests cleanly with DEBUG+ASSERTS and RELEASE builds, we consistently see a crash when we use a DEBUG build without ASSERTs. The crash appears whenever we use the
2013 Apr 29
5
[LLVMdev] [Announcement] Call For 3.3 Testers!
Hear ye! Hear ye! This is a call for testers for the 3.3 release!!! What's Expected --------------- You might be asking yourself, "Self, I would like to be an LLVM tester for the 3.3 release, but I don't know what's involved in being one." Well, ask yourself no more! Not only do I have the answers for you, but talking to yourself will cause people to avoid you. Here's