Home | History | Annotate | Download | only in contrib

Lines Matching refs:dwz

37 # For information about 'dwz', see the announcement:
43 # -z compress using dwz
44 # -m compress using dwz -m
75 DWZ=${DWZ:-dwz}
225 # Require dwz version with PR dwz/24468 fixed.
228 dwz_version_line=$($DWZ --version 2>&1 | head -n 1)
229 dwz_version=${dwz_version_line//dwz version /}
237 echo "$myname: dwz version $detected detected, version $required or higher required"
243 # Validate dwz's result by checking if the executable was modified.
245 $DWZ "$output_file" > /dev/null
252 echo "$myname: dwz did not modify ${output_file}."
266 dwz_file=$tmpdir/$(basename "$output_file").dwz
267 # Remove the dwz output file if it exists, so we don't mistake it for a
268 # new file in case dwz fails.
272 $DWZ -m "$dwz_file" "$output_file" ${output_file}.alt > /dev/null
275 # Validate dwz's work by checking if the expected output file exists.
277 echo "$myname: dwz file $dwz_file missing."