Changeset 988 for vendor/current/buildtools/scripts
- Timestamp:
- Nov 24, 2016, 1:14:11 PM (9 years ago)
- Location:
- vendor/current/buildtools/scripts
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
vendor/current/buildtools/scripts/Makefile.waf
r740 r988 63 63 64 64 bin/%:: FORCE 65 $(WAF) --targets= `basename $@`65 $(WAF) --targets=$@ 66 66 FORCE: 67 67 -
vendor/current/buildtools/scripts/abi_gen.sh
r740 r988 11 11 set width 0 12 12 EOF 13 nm "$SHAREDLIB" | cut -d' ' -f2- | egrep '^[BDGTRVWS]' | grep -v @ | cut -c3- | sort | while read s; do13 nm "$SHAREDLIB" | cut -d' ' -f2- | egrep '^[BDGTRVWS]' | grep -v @ | egrep -v ' (__bss_start|_edata|_init|_fini|_end)' | cut -c3- | sort | while read s; do 14 14 echo "echo $s: " 15 15 echo p $s
Note:
See TracChangeset
for help on using the changeset viewer.