mirror of
https://github.com/ValveSoftware/GameNetworkingSockets.git
synced 2026-05-29 16:20:34 +00:00
793df49b72
Signed-off-by: Steven Noonan <steven@valvesoftware.com>
22 lines
393 B
Bash
Executable File
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
|