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
fe77b53e
Unverified
Commit
fe77b53e
authored
Jan 15, 2019
by
Antonio Niño Díaz
Committed by
GitHub
Jan 15, 2019
Browse files
Merge pull request #1748 from antonio-nino-diaz-arm/an/build-flags
build: Support BL-specific build flags
parents
f2f04434
3661f16c
Changes
1
Show whitespace changes
Inline
Side-by-side
make_helpers/build_macros.mk
View file @
fe77b53e
...
@@ -216,10 +216,11 @@ define MAKE_C
...
@@ -216,10 +216,11 @@ define MAKE_C
$(eval OBJ
:
= $(1)/$(patsubst %.c
,
%.o
,
$(notdir $(2))))
$(eval OBJ
:
= $(1)/$(patsubst %.c
,
%.o
,
$(notdir $(2))))
$(eval DEP
:
= $(patsubst %.o
,
%.d
,
$(OBJ)))
$(eval DEP
:
= $(patsubst %.o
,
%.d
,
$(OBJ)))
$(eval IMAGE
:
= IMAGE_BL$(call uppercase
,
$(3)))
$(eval IMAGE
:
= IMAGE_BL$(call uppercase
,
$(3)))
$(eval BL_CFLAGS
:
= $(BL$(call uppercase
,
$(3))_CFLAGS))
$(OBJ)
:
$(2) $(filter-out %.d
,
$(MAKEFILE_LIST)) | bl$(3)_dirs
$(OBJ)
:
$(2) $(filter-out %.d
,
$(MAKEFILE_LIST)) | bl$(3)_dirs
$
$(ECHO)
" CC
$$
<"
$
$(ECHO)
" CC
$$
<"
$
$(Q)
$
$(CC)
$
$(TF_CFLAGS)
$
$(CFLAGS)
-D
$(IMAGE)
$(MAKE_DEP)
-c
$$
<
-o
$$
@
$
$(Q)
$
$(CC)
$
$(TF_CFLAGS)
$
$(CFLAGS)
$(BL_CFLAGS)
-D
$(IMAGE)
$(MAKE_DEP)
-c
$$
<
-o
$$
@
-include
$(DEP)
-include
$(DEP)
...
...
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