docs(docker/builder): usage reports clang version too

Co-authored-by: Lorenzo Fontana <lo@linux.com>
Signed-off-by: Leonardo Di Donato <leodidonato@gmail.com>
This commit is contained in:
Leonardo Di Donato 2019-12-13 11:31:31 +01:00 committed by Leo Di Donato
parent ac4f089903
commit 28fa4a72e8

View File

@ -3,6 +3,7 @@
gccversion=$(gcc --version | head -n1)
cppversion=$(g++ -dM -E -x c++ /dev/null | grep -F __cplusplus | cut -d' ' -f3)
cmakeversion=$(cmake --version | head -n1)
clangversion=$(clang --version | head -n1)
cat <<EOF
Hello, this is the Falco builder container.
@ -48,4 +49,5 @@ Environment.
* ${gccversion}
* cplusplus ${cppversion}
* ${cmakeversion}
EOF
* ${clangversion}
EOF