libiconv-full: fix compile-time linking error GCC7
LEDE Flyspray Task 1091: Fix libiconv-full 'undefined reference' compile linker error using GCC7 Musl Tested with targets x86 (i386 and x86_64) Addition of CFLAGS "std=gnu89" fixes the linker issues, credit to harrylwc Issue found with 'minidlna' package, which depends on 'libiconv-full' Error in compile log: ../lib/.libs/libiconv.so: undefined reference to `aliases_lookup' ../lib/.libs/libiconv.so: undefined reference to `aliases2_lookup' collect2: error: ld returned 1 exit status Makefile:64: recipe for target 'iconv_no_i18n' failed Signed-off-by: Jake Staehle <jacob@staehle.us>
This commit is contained in:
		 Jake Staehle
					Jake Staehle
				
			
				
					committed by
					
						 Hauke Mehrtens
						Hauke Mehrtens
					
				
			
			
				
	
			
			
			 Hauke Mehrtens
						Hauke Mehrtens
					
				
			
						parent
						
							95fe3c51e5
						
					
				
				
					commit
					e80ab48777
				
			| @@ -51,7 +51,7 @@ define Package/iconv | |||||||
|   TITLE+= utility |   TITLE+= utility | ||||||
| endef | endef | ||||||
|  |  | ||||||
| TARGET_CFLAGS += $(FPIC) -DUSE_DOS | TARGET_CFLAGS += $(FPIC) -DUSE_DOS -std=gnu89 | ||||||
|  |  | ||||||
| CONFIGURE_ARGS += \ | CONFIGURE_ARGS += \ | ||||||
| 	--enable-shared \ | 	--enable-shared \ | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user