search for: compiler_version

Displaying 3 results from an estimated 3 matches for "compiler_version".

2018 Jan 04
1
Distinguishing trunk version number from release
...ed to just 'XY', as shown in https://github.com/freebsd/ > freebsd-ports/blob/master/lang/v8/Makefile#L36 : > > .if ${COMPILER_TYPE} == clang > CXXFLAGS+= -Wno-nested-anon-types -Wno-unused-function > -Wno-unused-private-field > MAKE_ENV+= LINK=clang++ > .if ${COMPILER_VERSION} >= 34 > CXXFLAGS+= -Wno-unused-const-variable > .if ${COMPILER_VERSION} >= 35 > CXXFLAGS+= -Wno-tautological-undefined-compare > .if ${COMPILER_VERSION} >= 36 > CXXFLAGS+= -Wno-unused-local-typedef > .endif > .endif > .endif > That seems a very...
2018 Jan 04
0
Distinguishing trunk version number from release
...where the X.Y.Z version is condensed to just 'XY', as shown in https://github.com/freebsd/freebsd-ports/blob/master/lang/v8/Makefile#L36 : .if ${COMPILER_TYPE} == clang CXXFLAGS+= -Wno-nested-anon-types -Wno-unused-function -Wno-unused-private-field MAKE_ENV+= LINK=clang++ .if ${COMPILER_VERSION} >= 34 CXXFLAGS+= -Wno-unused-const-variable .if ${COMPILER_VERSION} >= 35 CXXFLAGS+= -Wno-tautological-undefined-compare .if ${COMPILER_VERSION} >= 36 CXXFLAGS+= -Wno-unused-local-typedef .endif .endif .endif > I see a couple alternatives for improving this: > >...
2018 Jan 03
8
Distinguishing trunk version number from release
I'd like to propose that trunk always have a version number which is in between versions used by the previous release branch, and before the versions used in the next release branch. Right now, trunk is sharing the 7.0.0 number, which will also be used by the next release 4 months from now. Since some people use and release snapshots of clang from trunk (e.g. the Android NDK), it'd be