Skip to content

Commit

Permalink
gcc -> gpp
Browse files Browse the repository at this point in the history
  • Loading branch information
henrik242 authored Jan 16, 2024
1 parent c15745d commit 286864c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
OS := $(shell uname)
COMPILER := $(shell test "${OS}" = "Linux" -a -x "/bin/g++" && echo "_gcc")
COMPILER := $(shell test "${OS}" = "Linux" -a -x "/bin/g++" && echo "_gpp")

BUILD_Darwin = clang++ envps.cpp process.cpp -o envps -std=c++17 -Wall -arch arm64 -arch x86_64
BUILD_Linux_gcc = g++ envps.cpp process.cpp -o envps -std=c++17 -Wall -static-libgcc -static-libstdc++ -static
BUILD_Linux_gpp = g++ envps.cpp process.cpp -o envps -std=c++17 -Wall -static-libgcc -static-libstdc++ -static
BUILD_Linux = clang++ envps.cpp process.cpp -o envps -std=c++17 -Wall
BUILD_FreeBSD = clang++ envps.cpp process.cpp -o envps -std=c++17 -Wall -lelf -lkvm -lpthread -static
BUILD_DragonFly = g++ envps.cpp process.cpp -o envps -std=c++17 -Wall -static-libgcc -static-libstdc++ -lkvm -lpthread -static
Expand All @@ -21,4 +21,4 @@ endif
${BUILD}

clean:
rm -f envps envps.exe
rm -f envps envps.exe

0 comments on commit 286864c

Please sign in to comment.