diff options
author | Craig Tiller <craig.tiller@gmail.com> | 2015-04-14 16:46:29 -0700 |
---|---|---|
committer | Craig Tiller <craig.tiller@gmail.com> | 2015-04-14 16:46:29 -0700 |
commit | 5fa5042850c890810b428a480537b426e83e88fd (patch) | |
tree | 5ca4abf2d2651a58a49f0ad2772f73e38109a315 /templates | |
parent | dedb5dc8ed8debc3e8e8b73a56fed0e6a7277504 (diff) | |
parent | c6a3da7d4caae17b17223b016fb1712db0e33cab (diff) |
Merge pull request #1267 from vjpai/timers
Infrastructure for timer insertion, logging, and testing
Diffstat (limited to 'templates')
-rw-r--r-- | templates/Makefile.template | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/templates/Makefile.template b/templates/Makefile.template index 331141fb24..73f7945074 100644 --- a/templates/Makefile.template +++ b/templates/Makefile.template @@ -96,6 +96,15 @@ CPPFLAGS_opt = -O2 LDFLAGS_opt = DEFINES_opt = NDEBUG +VALID_CONFIG_latprof = 1 +CC_latprof = $(DEFAULT_CC) +CXX_latprof = $(DEFAULT_CXX) +LD_latprof = $(DEFAULT_CC) +LDXX_latprof = $(DEFAULT_CXX) +CPPFLAGS_latprof = -O2 -DGRPC_LATENCY_PROFILER +LDFLAGS_latprof = +DEFINES_latprof = NDEBUG + VALID_CONFIG_dbg = 1 CC_dbg = $(DEFAULT_CC) CXX_dbg = $(DEFAULT_CXX) |