./configure around line 22514: if test "x$LLVM_VERSION" != "x3.1"; then as_fn_error $? "LLVM 3.1 is required for the r600 llvm compiler." "$LINENO" 5 fi llvm-9999 currently claims: # llvm-config --version 3.2svn which leads to: checking for RADEON... yes configure: error: LLVM 3.1 is required for the r600 llvm compiler. !!! Please attach the following file when seeking support: !!! /chroot/build/portage/media-libs/mesa-9999/work/Mesa-9999/config.log * ERROR: media-libs/mesa-9999 failed (configure phase): * econf failed
A quick workaround is to build llvm-9999 from the release_31 branch instead of trunk.
The plan is to move the backend out of Mesa and into LLVM for the 3.2 release.
Is there some way to build llvm-9999 from the release_31 branch instead of the trunk using the live ebuild, in order to work around this issue?
(In reply to comment #3) Yes, by setting ESVN_REPO_URI=http://llvm.org/svn/llvm-project/llvm/branches/release_31/
(In reply to comment #4) > (In reply to comment #3) > > Yes, by setting > ESVN_REPO_URI=http://llvm.org/svn/llvm-project/llvm/branches/release_31/ Sorry. I should have previously stated that I tried that first, and while the correct source was checked out, the emerge failed trying to apply the first patch, llvm-2.6-commandguide-nops.patch. I imagine this works if llvm is manually installed from svn using the release_31 branch. Otherwise it looks like in order to use the x11 overlay mesa-9999, we need to wait until it's updated for llvm 3.2, as Matt indicated. Thanks..
(In reply to comment #4) > (In reply to comment #3) > > Yes, by setting > ESVN_REPO_URI=http://llvm.org/svn/llvm-project/llvm/branches/release_31/ Please ignore my previous comment, (#5), about not being able to do this. When I tried it previously, I stupidly copied the modified llvm-9999 ebuild to my local overlay without the files directory. Once I did that, and commented out the llvm-3.2-nodoctargz.patch from the llvm-9999.ebuild, llvm svn 3.1 installed, without issue. I was then able to emerge the current x11 overlay mesa-9999 ebuild without issue. BTW, I don't know if it makes a difference but my llvm-9999 ebuild SVN repo modification included quotes, and did not include the trailing /, (matching the original). ESVN_REPO_URI="http://llvm.org/svn/llvm-project/llvm/branches/release_31" Thanks..
This has been changed upstream to: LLVM_REQUIRED_VERSION_MAJOR="3" LLVM_REQUIRED_VERSION_MINOR="2" if test "$LLVM_VERSION_INT" -lt "${LLVM_REQUIRED_VERSION_MAJOR}0${LLVM_REQUIRED_VERSION_MINOR}"; then ... so I'm going to mark this as RESOLVED/UPSTREAM. Reopen if you think it's not. (Should be fixed in 9.1_rc1 and 9999).