Renato Golin via llvm-dev
2016-Jun-23 10:08 UTC
[llvm-dev] [Release-testers] 3.8.1-final has been tagged
On 23 June 2016 at 10:56, Bernhard Rosenkränzer <llvm-dev at lists.llvm.org> wrote:> This caused our tarball generation scripts to mess up and name the tarballs > 3.8.0 -- I've fixed the script to look at CMakeLists.txt instead and now (so > far) all is good, but while configure is still there it should probably > reflect the version info correctly.Hi Bero, If anything, the configure file should be removed. :) It was deprecated a long time ago and it's only there for legacy reasons. If you want to use LLVM as your base toolchain, I strongly suggest you move to CMake. cheers, --renato PS: For now, a post-fix should be applied to the 3.8.1-final anyway.
Bernhard Rosenkränzer via llvm-dev
2016-Jun-23 10:49 UTC
[llvm-dev] [Release-testers] 3.8.1-final has been tagged
On 23 June 2016 at 12:08, Renato Golin <renato.golin at linaro.org> wrote:> Hi Bero, > > If anything, the configure file should be removed. :) > > It was deprecated a long time ago and it's only there for legacy > reasons. If you want to use LLVM as your base toolchain, I strongly > suggest you move to CMake. > >We've actually moved to cmake ages ago -- but our build system requires source tarballs and the script determining their name was still using "grep PACKAGE_VERSION configure" to determine their right filename for the tarballs. ttyl bero -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20160623/fc03cd8e/attachment.html>
Renato Golin via llvm-dev
2016-Jun-23 11:09 UTC
[llvm-dev] [Release-testers] 3.8.1-final has been tagged
On 23 June 2016 at 11:49, Bernhard Rosenkränzer <bernhard.rosenkranzer at linaro.org> wrote:> We've actually moved to cmake ages ago -- but our build system requires > source tarballs and the script determining their name was still using "grep > PACKAGE_VERSION configure" to determine their right filename for the > tarballs.Ah! ok... :) Thanks for the catch, btw. I think we need to update that anyway, regardless of it being deprecated, at least until we finally remove the file. cheers, --renato