Part Number: TDA4VM
Other Parts Discussed in Thread: SYSBIOS
Dear experts,
PSDKRA 6.2 version A72 Linux.
I am looking into the compile process of PSDKRA A72 compile makefile. and I have one question: Why we need to compile SYSBIOS libs for A72_Linux build?
Please refre to following Makefile: vision_apps/Makefile. Can I just remove SYSBIOS line for A72_Linux?
ifeq ($(BUILD_TARGET_MODE),yes)
ifeq ($(PROFILE), $(filter $(PROFILE), debug all))
ifeq ($(BUILD_ISA_R5F),yes)
TARGET_COMBOS += J7:SYSBIOS:R5F:3:debug:TIARMCGT
endif
ifeq ($(BUILD_ISA_A72),yes)
TARGET_COMBOS += J7:SYSBIOS:A72:1:debug:GCC_SYSBIOS_ARM
endif
ifeq ($(BUILD_ISA_C6x),yes)
TARGET_COMBOS += J7:SYSBIOS:C66:2:debug:CGT6X
endif
ifeq ($(BUILD_ISA_C7x),yes)
TARGET_COMBOS += J7:SYSBIOS:C71:1:debug:CGT7X
endif
ifeq ($(BUILD_ISA_A72),yes)
ifeq ($(BUILD_LINUX_A72),yes)
TARGET_COMBOS += J7:LINUX:A72:1:debug:GCC_LINUX_ARM
endif
ifeq ($(BUILD_QNX_A72),yes)
TARGET_COMBOS += J7:QNX:A72:1:debug:GCC_QNX_ARM
endif
endif
endif