blob: d158c51287b6f82e9294b8d48f208c70747123f3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# The attempt to upgrade to version 6.4.1 was done incorrectly.
# When 6.5.1 is released, set the SNAPSHOT to the release date,
# but also set BUILD_RELEASE to "yes". Otherwise snapshots will
# continue to be used and eventually be removed from mirrors.
GCC_BRANCH= 6
GCC_POINT= 4.1
GCC_VERSION= ${GCC_BRANCH}.${GCC_POINT}
SNAPSHOT= 20180516
BUILD_RELEASE= no
MAIN_PR= 3
UTIL_PR= 0
ARMV7_PR= 0
ARM64_PR= 0
X86_PR= 0
.if ${BUILD_RELEASE:Mno}
# Snapshot naming pattern
IDENTIFICATION= gcc-${GCC_BRANCH}-${SNAPSHOT}
MS_SUBDIR= snapshots/${GCC_BRANCH}-${SNAPSHOT}
PHASE= snapshot
.else
# Release naming pattern
IDENTIFICATION= gcc-${GCC_VERSION}
MS_SUBDIR= releases/gcc-${GCC_VERSION}
PHASE= release
.endif
|