rules.mak: remove $(sort) from extract-libs
Duplicate removal was added to extract-libs in order to avoid including the same library multiple times into the linking command line; this could potentially happen when using "foo.mo-libs" (which adds the library to all components, causing it to appear N times if the module is composed of N objects). However, sorting and removing duplicates causes problems with static linking, and also with space-separated linker options as found in some Mac OS X packaging systems. Furthermore, the "optimization" is really a non-problem since we do not expect .mo modules to be composed of many files. Reported-by: Sean Bruno <sbruno@ignoranthack.me> Tested-by: Sean Bruno <sbruno@ignoranthack.me> Reviewed-by: Fam Zheng <famz@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Message-id: 1402929805-16836-1-git-send-email-pbonzini@redhat.com Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
		
							parent
							
								
									84219c5a21
								
							
						
					
					
						commit
						f27701510c
					
				| 
						 | 
					@ -22,7 +22,7 @@ QEMU_DGFLAGS += -MMD -MP -MT $@ -MF $(*D)/$(*F).d
 | 
				
			||||||
# Same as -I$(SRC_PATH) -I., but for the nested source/object directories
 | 
					# Same as -I$(SRC_PATH) -I., but for the nested source/object directories
 | 
				
			||||||
QEMU_INCLUDES += -I$(<D) -I$(@D)
 | 
					QEMU_INCLUDES += -I$(<D) -I$(@D)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
extract-libs = $(strip $(sort $(foreach o,$1,$($o-libs))))
 | 
					extract-libs = $(strip $(foreach o,$1,$($o-libs)))
 | 
				
			||||||
expand-objs = $(strip $(sort $(filter %.o,$1)) \
 | 
					expand-objs = $(strip $(sort $(filter %.o,$1)) \
 | 
				
			||||||
                  $(foreach o,$(filter %.mo,$1),$($o-objs)) \
 | 
					                  $(foreach o,$(filter %.mo,$1),$($o-objs)) \
 | 
				
			||||||
                  $(filter-out %.o %.mo,$1))
 | 
					                  $(filter-out %.o %.mo,$1))
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue