mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-10-31 14:04:26 -04:00 
			
		
		
		
	Refresh 2to3 patch. Upstream partially did this against some older python version. This is still needed. Refreshed other patches to be python3 safe. Remove uClibc patches as only musl is present now. Refresh others. Signed-off-by: Rosen Penev <rosenp@gmail.com>
		
			
				
	
	
		
			12 lines
		
	
	
		
			526 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			526 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
| --- a/src/mklibs
 | |
| +++ b/src/mklibs
 | |
| @@ -611,7 +611,7 @@ while 1:
 | |
|              # compile in only used symbols
 | |
|              cmd = []
 | |
|              cmd.extend(gcc_options)
 | |
| -            cmd.append("-nostdlib -nostartfiles -shared -Wl,-soname=" + soname)
 | |
| +            cmd.append("-nostdlib -nostartfiles -shared -Wl,--gc-sections -Wl,-soname=" + soname)
 | |
|              cmd.extend(["-u%s" % a.linker_name() for a in symbols])
 | |
|              cmd.extend(["-o", dest_path + "/" + so_file_name + "-so"])
 | |
|              cmd.extend(extra_pre_obj)
 |