Files
GameNetworkingSockets/.github/install-post.sh
T
Steven Noonan 793df49b72 first pass on moving to GitHub Actions
Signed-off-by: Steven Noonan <steven@valvesoftware.com>
2021-01-08 21:01:13 -08:00

22 lines
393 B
Bash
Executable File

#!/bin/bash
#
# This is a post-install script common to all Docker images.
#
cmake --version
g++ --version
clang++ --version
uname -a
echo "====================="
echo "GCC predefined macros"
echo "====================="
g++ -E -dM -xc /dev/null | sort
echo "======================="
echo "Clang predefined macros"
echo "======================="
clang++ -E -dM -xc /dev/null | sort
exit 0