Skip to content

Commit

Permalink
Sync firmware changes
Browse files Browse the repository at this point in the history
  • Loading branch information
viktorxda committed Apr 5, 2024
1 parent eb7e2bd commit 6d76a20
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions osd/Makefile
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
SRCS := lib/schrift.c compat.c bitmap.c net.c region.c text.c main.c
BUILD = $(CC) $(SRCS) -I $(SDK)/include -L $(DRV) $(LIB) -Os -s
SRCS := lib/schrift.c compat.c bitmap.c net.c region.c text.c main.c
BUILD = $(CC) $(SRCS) -I $(SDK)/include -L $(DRV) $(LIB) -Os -s -o $(or $(TARGET),$@)

osd-goke:
$(eval SDK = ../sdk/gk7205v300)
$(eval LIB = -lhi_mpi -lgk_api -ldnvqe -lupvqe -lvoice_engine -lsecurec)
$(BUILD) -o $@
$(BUILD)

osd-hisi:
$(eval SDK = ../sdk/hi3516ev300)
$(eval LIB = -lmpi -ldnvqe -lupvqe -lVoiceEngine -lsecurec)
$(BUILD) -o $@
$(BUILD)

osd-star:
$(eval SDK = ../sdk/infinity6)
$(eval LIB = -D__SIGMASTAR__ -lcam_os_wrapper -lm -lmi_rgn -lmi_sys)
$(BUILD) -o $@
$(BUILD)

0 comments on commit 6d76a20

Please sign in to comment.