| make -C ps7_cortexa9_0/libsrc/coresightps_dcc_v1_8/src -s include"SHELL=/bin/sh""COMPILER=arm-none-eabi-gcc""ASSEMBLER=arm-none-eabi-as""ARCHIVER=arm-none-eabi-ar""COMPILER_FLAGS= -O2 -c""EXTRA_COMPILER_FLAGS=-mcpu=cortex-a9 -mfpu=vfpv3 -mfloat-abi=hard -nostartfiles -g ...
ZYNQ MPSOC Xilinx SDK 编译器选项 (extra_compiler_flags extra compiler flags 选项含义) USE_AMP,具体为打开CPU1的bsp工程的system.mss文件,在extra_compiler_flags设置中添加 -DUSE_AMP=1。那么 -mcpu=cortex-a9...,下载相关的文档,就可以找到答案。 例如: (1)-mcpu (2)vfpv3 (3)DUSE_AMP ...
@@ -11,6 +11,8 @@ PAR_SUBDIRS := $(patsubst %/Makefile, %, $(BSP_PARALLEL_MAKEFILES)) COMPILER := mb-gcc ARCHIVER := mb-ar ASSEMBLER := mb-as +COMPILER_FLAGS := -O2 -c -mcpu=v10.0 -mlittle-endian -mxl-barrel-shift -mxl-pattern-compare +EXTRA_COMPILER_FLAGS := -g -ff...