OutpostUniverse / OP2Archive

Console Application for examining, creating, and extracting files from Outpost 2 .vol and .clm archives.
https://wiki.outpost2.net/doku.php?id=outpost_2:helper_programs:op2archive
MIT License
1 stars 0 forks source link

Remove Clang as default compiler #49

Closed DanRStevens closed 3 years ago

DanRStevens commented 3 years ago

Specifying the default like that was probably bad practice. That's especially true of the explicit and now dated version that was specified.

Code should now build with the environment default compiler, which is typically GCC. It can be modified by the CXX environment variable. This can be done directly in the make command.

Example:

make CXX=g++

Example:

make CXX=clang++