Sedat Dilek via llvm-dev
2016-Jun-27 06:00 UTC
[llvm-dev] [LLVM/Clang v3.8.1] Missing Git branches/tags and source-tarballs?
> Can you answer my question on how to set the version-string correct > when generating tarballs out of the release_38 Git branch? > ( I generated source-tarballs out of my local Git repositories, see below. )[ llvm.src/CMakeLists.txt ] ... if(NOT DEFINED LLVM_VERSION_MAJOR) set(LLVM_VERSION_MAJOR 3) endif() if(NOT DEFINED LLVM_VERSION_MINOR) set(LLVM_VERSION_MINOR 8) endif() if(NOT DEFINED LLVM_VERSION_PATCH) set(LLVM_VERSION_PATCH 1) endif() if(NOT DEFINED LLVM_VERSION_SUFFIX) set(LLVM_VERSION_SUFFIX "") endif() ... [ llvm.src/autoconf/configure.ac ] ... AC_INIT([LLVM],[3.8.0],[http://llvm.org/bugs/]) LLVM_VERSION_MAJOR=3 LLVM_VERSION_MINOR=8 LLVM_VERSION_PATCH=0 LLVM_VERSION_SUFFIX... Building with CMake sets the version-string correct whereas using autotools as build-system does not. - Sedat -
Renato Golin via llvm-dev
2016-Jun-27 10:14 UTC
[llvm-dev] [LLVM/Clang v3.8.1] Missing Git branches/tags and source-tarballs?
On 27 June 2016 at 07:00, Sedat Dilek <sedat.dilek at gmail.com> wrote:> Building with CMake sets the version-string correct whereas using > autotools as build-system does not.Hi Sedat, This was reported earlier and it's unfortunate, but we don't support autotools build any more. The official releases are made using CMake and most of the buildbots are using it. Feel free to apply a patch on top of the release to change that if you must build with autotools. cheers, --renato
Sedat Dilek via llvm-dev
2016-Jun-27 17:16 UTC
[llvm-dev] [LLVM/Clang v3.8.1] Missing Git branches/tags and source-tarballs?
On Mon, Jun 27, 2016 at 12:14 PM, Renato Golin <renato.golin at linaro.org> wrote:> On 27 June 2016 at 07:00, Sedat Dilek <sedat.dilek at gmail.com> wrote: >> Building with CMake sets the version-string correct whereas using >> autotools as build-system does not. > > Hi Sedat, > > This was reported earlier and it's unfortunate, but we don't support > autotools build any more. The official releases are made using CMake > and most of the buildbots are using it. > > Feel free to apply a patch on top of the release to change that if you > must build with autotools. >I switched over to CMake build-system with v3.8.0. AFAICS, autotools support is deprecated with upcoming v3.9. - Sedat -
Maybe Matching Threads
- [LLVM/Clang v3.8.1] Missing Git branches/tags and source-tarballs?
- [LLVM/Clang v3.8.1] Missing Git branches/tags and source-tarballs?
- [LLVM/Clang v3.8.1] Missing Git branches/tags and source-tarballs?
- [LLVM/Clang v3.8.1] Missing Git branches/tags and source-tarballs?
- [LLVM/Clang v3.8.1] Missing Git branches/tags and source-tarballs?