Update MentOs code to the latest development version.

This commit is contained in:
Enrico Fraccaroli
2021-10-04 11:44:02 +02:00
parent 6fd063984a
commit b01eccca2e
484 changed files with 42358 additions and 20285 deletions
+6
View File
@@ -0,0 +1,6 @@
#!/bin/bash
for obj_file in "$@"
do
ADDR=$(readelf -WS $obj_file | grep .text | awk '{ print "0x"$5 }')
echo "add-symbol-file $obj_file ${ADDR}"
done
+3
View File
@@ -0,0 +1,3 @@
#!/bin/bash
find -type l -exec git update-index --assume-unchanged {} \;
find -type l -exec bash -c 'ln -f "$(readlink -m "$0")" "$0"' {} \;