aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/Makefile.template
diff options
context:
space:
mode:
authorGravatar Nicolas "Pixel" Noble <pixel@nobis-crew.org>2015-03-16 02:35:49 +0100
committerGravatar Nicolas "Pixel" Noble <pixel@nobis-crew.org>2015-03-16 02:36:54 +0100
commit7c1c7e8e225557cc30aabee20388db7abadc6bbd (patch)
tree377964e465aa5f344616f981da1093651fadf599 /templates/Makefile.template
parent42a2e6f1b7e19c99ccb6a97822386206f67bcf48 (diff)
Using cc and c++ instead of gcc and g++.
Not all systems are equal, and have gcc. However, cc and c++ are more common aliases for the system's compiler. FreeBSD is an example.
Diffstat (limited to 'templates/Makefile.template')
-rw-r--r--templates/Makefile.template24
1 files changed, 12 insertions, 12 deletions
diff --git a/templates/Makefile.template b/templates/Makefile.template
index a69c7a7f2f..148fa7cd63 100644
--- a/templates/Makefile.template
+++ b/templates/Makefile.template
@@ -68,29 +68,29 @@ GENDIR = $(BUILDDIR)/gens
# Configurations
VALID_CONFIG_opt = 1
-CC_opt = gcc
-CXX_opt = g++
-LD_opt = gcc
-LDXX_opt = g++
+CC_opt = cc
+CXX_opt = c++
+LD_opt = cc
+LDXX_opt = c++
CPPFLAGS_opt = -O2
LDFLAGS_opt =
DEFINES_opt = NDEBUG
VALID_CONFIG_dbg = 1
-CC_dbg = gcc
-CXX_dbg = g++
-LD_dbg = gcc
-LDXX_dbg = g++
+CC_dbg = cc
+CXX_dbg = c++
+LD_dbg = cc
+LDXX_dbg = c++
CPPFLAGS_dbg = -O0
LDFLAGS_dbg =
DEFINES_dbg = _DEBUG DEBUG
VALID_CONFIG_valgrind = 1
REQUIRE_CUSTOM_LIBRARIES_valgrind = 1
-CC_valgrind = gcc
-CXX_valgrind = g++
-LD_valgrind = gcc
-LDXX_valgrind = g++
+CC_valgrind = cc
+CXX_valgrind = c++
+LD_valgrind = cc
+LDXX_valgrind = c++
CPPFLAGS_valgrind = -O0
OPENSSL_CFLAGS_valgrind = -DPURIFY
LDFLAGS_valgrind =