- Timestamp:
- Jun 8, 2022, 4:23:41 PM (4 years ago)
- Branches:
- ADT, ast-experimental, master, pthread-emulation, qualifiedEnum
- Children:
- 7f0ac12, db7a3ad
- Parents:
- 55422cf (diff), 720f2fe2 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - Location:
- tools
- Files:
-
- 2 edited
-
cfa.nanorc (modified) (1 diff)
-
jenkins/setup.sh.in (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tools/cfa.nanorc
r55422cf r6e2b04e 10 10 color green "\<(forall|trait|(o|d|f|t)type|mutex|_Bool|volatile|virtual)\>" 11 11 color green "\<(float|double|bool|char|int|short|long|enum|void|auto)\>" 12 color green "\<(static|const|extern|(un)?signed|inline )\>" "\<(sizeof)\>"12 color green "\<(static|const|extern|(un)?signed|inline|sizeof|vtable)\>" 13 13 color green "\<((s?size)|one|zero|((u_?)?int(8|16|32|64|ptr)))_t\>" 14 14 15 15 # Declarations 16 16 color brightgreen "\<(struct|union|typedef|trait|coroutine|generator)\>" 17 color brightgreen "\<(monitor|thread|with )\>"17 color brightgreen "\<(monitor|thread|with|exception)\>" 18 18 19 19 # Control Flow Structures -
tools/jenkins/setup.sh.in
r55422cf r6e2b04e 29 29 function getrunpath() 30 30 { 31 local elfout=$(readelf -d $1 | grep "RUNPATH")31 local elfout=$(readelf -d $1 | grep -E "RPATH|RUNPATH") 32 32 regex='\[/([[:alpha:][:digit:]@/_.-]+)\]' 33 33 if [[ $elfout =~ $regex ]]; then … … 43 43 { 44 44 local deps=$(ldd $1) 45 retlcldeps=() 45 46 retsysdeps=() 46 retlcldeps=()47 47 while IFS= read -r line; do 48 regex1=' /([[:alpha:][:digit:]@/_.-]+)'49 regex2=' (libcfa[[:alpha:][:digit:].]+) => not found'48 regex1='(libcfa[[:alpha:][:digit:].]+)' 49 regex2='/([[:alpha:][:digit:]@/_.-]+)' 50 50 regex3='linux-vdso.so.1|linux-gate.so.1' 51 51 if [[ $line =~ $regex1 ]]; then 52 retlcldeps+=(${BASH_REMATCH[1]}) 53 elif [[ $line =~ $regex2 ]]; then 52 54 retsysdeps+=(${BASH_REMATCH[1]}) 53 elif [[ $line =~ $regex2 ]]; then54 retlcldeps+=(${BASH_REMATCH[1]})55 55 elif [[ $line =~ $regex3 ]]; then 56 56 # echo "ignoring '$line}': intrinsic"
Note:
See TracChangeset
for help on using the changeset viewer.