Skip to content

Commit

Permalink
Makefile: add flags for enabling GPU and BLK
Browse files Browse the repository at this point in the history
Signed-off-by: Sergio Lopez <[email protected]>
  • Loading branch information
slp committed Apr 18, 2024
1 parent a3963ae commit 4a2bd65
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,12 @@ ifeq ($(SEV),1)
INIT_SRC += $(SNP_INIT_SRC)
BUILD_INIT = 0
endif
ifeq ($(GPU),1)
FEATURE_FLAGS += --features gpu
endif
ifeq ($(BLK),1)
FEATURE_FLAGS += --features blk
endif
ifeq ($(NET),1)
FEATURE_FLAGS += --features net
endif
Expand Down

0 comments on commit 4a2bd65

Please sign in to comment.