Commit 9d62eb3 1 parent 29a7826 commit 9d62eb3 Copy full SHA for 9d62eb3
File tree 1 file changed +10
-2
lines changed
1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -193,13 +193,21 @@ endif
193
193
build :
194
194
PROXY_ENABLE_FEATURES=" ${ENABLE_FEATURES} " ./proxy_scripts/build.sh
195
195
196
+ # Do not call make build which could duplicate ENABLE_FEATURES
197
+ ifeq ($(PROXY_FRAME_POINTER ) ,1)
198
+ debug : ENABLE_FEATURES += pprof-fp
199
+ endif
196
200
debug : export PROXY_PROFILE=debug
197
201
debug :
198
- make build
202
+ PROXY_ENABLE_FEATURES=" ${ENABLE_FEATURES} " ./proxy_scripts/build.sh
203
+
199
204
205
+ ifeq ($(PROXY_FRAME_POINTER ) ,1)
206
+ release : ENABLE_FEATURES += pprof-fp
207
+ endif
200
208
release : export PROXY_PROFILE=release
201
209
release :
202
- make build
210
+ PROXY_ENABLE_FEATURES= " ${ENABLE_FEATURES} " ./proxy_scripts/ build.sh
203
211
204
212
# # Testing
205
213
# # -------
You can’t perform that action at this time.
0 commit comments