Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Arm Trusted Firmware
Commits
659bf156
Commit
659bf156
authored
May 05, 2020
by
Sandrine Bailleux
Committed by
TrustedFirmware Code Review
May 05, 2020
Browse files
Merge "Fix build type is empty in version string" into integration
parents
65808674
f1de4c8f
Changes
1
Show whitespace changes
Inline
Side-by-side
Makefile
View file @
659bf156
...
@@ -94,12 +94,6 @@ endif
...
@@ -94,12 +94,6 @@ endif
export
Q
ECHO
export
Q
ECHO
# Default build string (git branch and commit)
ifeq
(${BUILD_STRING},)
BUILD_STRING
:=
$(
shell
git describe
--always
--dirty
--tags
2> /dev/null
)
endif
VERSION_STRING
:=
v
${VERSION_MAJOR}
.
${VERSION_MINOR}
(
${BUILD_TYPE}
)
:
${BUILD_STRING}
# The cert_create tool cannot generate certificates individually, so we use the
# The cert_create tool cannot generate certificates individually, so we use the
# target 'certificates' to create them all
# target 'certificates' to create them all
ifneq
(${GENERATE_COT},0)
ifneq
(${GENERATE_COT},0)
...
@@ -281,6 +275,12 @@ else
...
@@ -281,6 +275,12 @@ else
LOG_LEVEL
:=
20
LOG_LEVEL
:=
20
endif
endif
# Default build string (git branch and commit)
ifeq
(${BUILD_STRING},)
BUILD_STRING
:=
$(
shell
git describe
--always
--dirty
--tags
2> /dev/null
)
endif
VERSION_STRING
:=
v
${VERSION_MAJOR}
.
${VERSION_MINOR}
(
${BUILD_TYPE}
)
:
${BUILD_STRING}
ifeq
(${AARCH32_INSTRUCTION_SET},A32)
ifeq
(${AARCH32_INSTRUCTION_SET},A32)
TF_CFLAGS_aarch32
+=
-marm
TF_CFLAGS_aarch32
+=
-marm
else
ifeq
(${AARCH32_INSTRUCTION_SET},T32)
else
ifeq
(${AARCH32_INSTRUCTION_SET},T32)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment