Skip to content

Commit c5008e7

Browse files
committed
Add ldd info to CI system config, and gcc & ldd on win
1 parent 2bd0653 commit c5008e7

3 files changed

+6
-40
lines changed

etc/ci/describe-system-config-common-groups.sh

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ group ulimit -aH
55
group ulimit -aS
66
group ghc --version
77
group ghc -v
8+
group ldd --version
89
group gcc --version
910
group gcc -v
1011
group opam switch

etc/ci/describe-system-config-win.bat

-40
This file was deleted.

etc/ci/describe-system-config-win.ps1

+5
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,11 @@ Print-Group -name "coqc --config" -command { opam exec -- coqc --config }
2525
Print-Group -name "coqc --version" -command { opam exec -- coqc --version }
2626
Print-Group -name "coqtop version" -command { "" | opam exec -- coqtop }
2727

28+
# gcc
29+
Print-Group -name "gcc -v" -command { opam exec -- gcc -v }
30+
Print-Group -name "gcc --version" -command { opam exec -- gcc --version }
31+
Print-Group -name "ldd --version" -command { opam exec -- ldd --version }
32+
2833
# Using make with environmental variables
2934
Print-Group -name "make printenv" -command { opam exec -- make printenv }
3035
Print-Group -name "PATH=$PATH" -command { & "$CYGWIN_ROOT\bin\bash.exe" -l -c 'echo "${PATH}"' }

0 commit comments

Comments
 (0)