Toggle navigation
Toggle navigation
此项目
正在载入...
Sign in
胡斌
/
srs
转到一个项目
Toggle navigation
项目
群组
代码片段
帮助
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
winlin
2014-03-06 16:48:39 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
ee7fafe4657f600d2d9d75a73960f1aa7140b47a
ee7fafe4
1 parent
9896842b
add gperftools demo: heap check and profile, cpu profile
显示空白字符变更
内嵌
并排对比
正在显示
3 个修改的文件
包含
12 行增加
和
0 行删除
trunk/research/gperftools/cpu-profiler/Makefile
trunk/research/gperftools/heap-checker/Makefile
trunk/research/gperftools/heap-profiler/Makefile
trunk/research/gperftools/cpu-profiler/Makefile
100644 → 100755
查看文件 @
ee7fafe
.PHONY
:
default clean
default
:
cpu_profiler
cpu_profiler
:
cpu_profiler.cc Makefile
g++ -o cpu_profiler cpu_profiler.cc -g -O0 -ansi
\
-fno-builtin-malloc -fno-builtin-calloc -fno-builtin-realloc -fno-builtin-free
\
...
...
trunk/research/gperftools/heap-checker/Makefile
查看文件 @
ee7fafe
.PHONY
:
default clean
default
:
heap_checker
heap_checker
:
heap_checker.cc Makefile
g++ -o heap_checker heap_checker.cc -g -O0 -ansi
\
-fno-builtin-malloc -fno-builtin-calloc -fno-builtin-realloc -fno-builtin-free
\
...
...
trunk/research/gperftools/heap-profiler/Makefile
查看文件 @
ee7fafe
.PHONY
:
default clean
default
:
heap_checker
heap_profiler
:
heap_profiler.cc Makefile
g++ -o heap_profiler heap_profiler.cc -g -O0 -ansi
\
-fno-builtin-malloc -fno-builtin-calloc -fno-builtin-realloc -fno-builtin-free
\
...
...
请
注册
或
登录
后发表评论