1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

remove execinfo.h header

This commit is contained in:
Alexander Medvednikov
2019-10-25 12:07:50 +03:00
parent 4e21e9ed44
commit ea3f9b5b9a
5 changed files with 14 additions and 12 deletions

View File

@ -21,13 +21,14 @@ CommonCHeaders = '
#ifdef __APPLE__
#include <libproc.h> // proc_pidpath
#include <execinfo.h> // backtrace and backtrace_symbols_fd
//#include <execinfo.h> // backtrace and backtrace_symbols_fd
#endif
#ifdef __linux__
#ifndef __BIONIC__
#include <execinfo.h> // backtrace and backtrace_symbols_fd
#endif
//#if !defined(__BIONIC__) && !defined(__GNUC_PREREQ)
//#include <execinfo.h> // backtrace and backtrace_symbols_fd
//#endif
#pragma weak backtrace
#pragma weak backtrace_symbols_fd
#endif