diff options
author | Jinhyung Jo <jinhyung.jo@samsung.com> | 2016-09-19 20:04:13 +0900 |
---|---|---|
committer | SeokYeon Hwang <syeon.hwang@samsung.com> | 2016-10-06 11:28:22 +0900 |
commit | 07cfe62467612339476b3a83ef61ffcb9f3ee3e9 (patch) | |
tree | 37db2e323149e1f439403256f6cce4f6fdae043c /tizen/src/util/Makefile.objs | |
parent | f569c289168ec579bcb62231d2572a80be5d6d52 (diff) | |
download | qemu-07cfe62467612339476b3a83ef61ffcb9f3ee3e9.tar.gz qemu-07cfe62467612339476b3a83ef61ffcb9f3ee3e9.tar.bz2 qemu-07cfe62467612339476b3a83ef61ffcb9f3ee3e9.zip |
util: improve backtrace feature
improve & clean up the code:
- correct coding convention
- add backtrace feature to Mac OS X
: remove #ifdef CONFIG_DARWIN ... #endif
The 'backtarce' family functions first appeared in Mac OS X 10.5
- modify the Windows code using the APIs in DbgHelp
- change debug channel: from debug_ch to new_debug_ch
- remove some lines like redundant/unclear/unwanted/etc.
- modify output form
Change-Id: I8b57d996fa9daabf990932fcfb82e45a5e453636
Signed-off-by: Jinhyung Jo <jinhyung.jo@samsung.com>
Diffstat (limited to 'tizen/src/util/Makefile.objs')
-rw-r--r-- | tizen/src/util/Makefile.objs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tizen/src/util/Makefile.objs b/tizen/src/util/Makefile.objs index a4a2969fcc..a322caf7d7 100644 --- a/tizen/src/util/Makefile.objs +++ b/tizen/src/util/Makefile.objs @@ -30,6 +30,9 @@ obj-y += qt5_error_report.o # error handler obj-y += error_handler.o +ifdef CONFIG_WIN32 +LIBS += -ldbghelp +endif # debug channel obj-y += new_debug_ch.o |