13 lines
		
	
	
		
			168 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
		
		
			
		
	
	
			13 lines
		
	
	
		
			168 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| 
								 | 
							
								ifeq ($(TOOLCHAIN),gcc)
							 | 
						||
| 
								 | 
							
								  CFLAGS += \
							 | 
						||
| 
								 | 
							
								    -mcpu=cortex-a72 \
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								else ifeq ($(TOOLCHAIN),iar)
							 | 
						||
| 
								 | 
							
									CFLAGS += \
							 | 
						||
| 
								 | 
							
										--cpu cortex-a72 \
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
									ASFLAGS += \
							 | 
						||
| 
								 | 
							
										--cpu cortex-a72 \
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								endif
							 |