mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-10-30 13:34:27 -04:00 
			
		
		
		
	This is the final bugfix release in the gcc-5 series. Compile and run tested on macOS 10.13 (Xcode 9), mvebu/ar71xx. Removed redundant patch for macOS (backported upstream by yours truly) Signed-off-by: Ryan Mounce <ryan@mounce.com.au>
		
			
				
	
	
		
			32 lines
		
	
	
		
			1003 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			1003 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
| From: jgreenhalgh <jgreenhalgh@138bc75d-0d04-0410-961f-82ee72b054a4>
 | |
| Date: Wed, 27 May 2015 16:46:39 +0000 (+0000)
 | |
| Subject: [PATCH 3/13] aarch64 musl support
 | |
| X-Git-Url: https://gcc.gnu.org/git/?p=gcc.git;a=commitdiff_plain;h=b3ff21cf0531be91bc3fb8200296a7633090ec78
 | |
| 
 | |
| [PATCH 3/13] aarch64 musl support
 | |
| 
 | |
| gcc/Changelog:
 | |
| 
 | |
| 2015-05-27  Gregor Richards  <gregor.richards@uwaterloo.ca>
 | |
| 	    Szabolcs Nagy  <szabolcs.nagy@arm.com>
 | |
| 
 | |
| 	* config/aarch64/aarch64-linux.h (MUSL_DYNAMIC_LINKER): Define.
 | |
| 
 | |
| 
 | |
| 
 | |
| git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@223766 138bc75d-0d04-0410-961f-82ee72b054a4
 | |
| ---
 | |
| 
 | |
| --- a/gcc/config/aarch64/aarch64-linux.h
 | |
| +++ b/gcc/config/aarch64/aarch64-linux.h
 | |
| @@ -23,6 +23,9 @@
 | |
|  
 | |
|  #define GLIBC_DYNAMIC_LINKER "/lib/ld-linux-aarch64%{mbig-endian:_be}%{mabi=ilp32:_ilp32}.so.1"
 | |
|  
 | |
| +#undef MUSL_DYNAMIC_LINKER
 | |
| +#define MUSL_DYNAMIC_LINKER "/lib/ld-musl-aarch64%{mbig-endian:_be}%{mabi=ilp32:_ilp32}.so.1"
 | |
| +
 | |
|  #undef  ASAN_CC1_SPEC
 | |
|  #define ASAN_CC1_SPEC "%{%:sanitize(address):-funwind-tables}"
 | |
|  
 |