File diff r6229:a69564e4eb2e → r6230:13b38a5840dd
config.lib
Show inline comments
 
@@ -493,12 +493,16 @@ check_params() {
 
		elif [ "$os" = "OSX" ]; then
 
			strip_arg=""
 
		elif [ "$os" = "OS2" ]; then
 
			strip_arg=""
 
			# OS2 uses strip via gcc, because it needs to be feed to emxbind
 
			LDFLAGS="$LDFLAGS -s"
 
		elif [ "$os" = "SUNOS" ]; then
 
			# The GNU strip does know -s, the non-GNU doesn't
 
			#  So try to detect it (in a bit of an ugly way)
 
			strip_arg="`$strip -s strip.test 2>/dev/null && echo \"-s\"`"
 
		else
 
			strip_arg="-s"
 
		fi
 

	
 
		log 1 "checking stripping... $strip $strip_arg"
 
	else