Skip to content

Commit

Permalink
Merge pull request grpc#1046 from nicolasnoble/master
Browse files Browse the repository at this point in the history
Using cc and c++ instead of gcc and g++.
  • Loading branch information
vjpai committed Mar 17, 2015
2 parents e971877 + 7c1c7e8 commit 4708fbb
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 24 deletions.
24 changes: 12 additions & 12 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -51,29 +51,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 =
Expand Down
24 changes: 12 additions & 12 deletions templates/Makefile.template
Original file line number Diff line number Diff line change
Expand Up @@ -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 =
Expand Down

0 comments on commit 4708fbb

Please sign in to comment.