mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-10 15:14:44 +00:00
common.cpp: Don't always include cxxabi.h
cxxabi.h is not available with LLVM's libcxx
This commit is contained in:
parent
e5e66ac6d7
commit
9936362599
1 changed files with 4 additions and 1 deletions
|
@ -1,8 +1,11 @@
|
|||
// Various functions, mostly string utilities, that are used by most parts of fish.
|
||||
#include "config.h"
|
||||
|
||||
#include <ctype.h>
|
||||
#ifdef HAVE_BACKTRACE_SYMBOLS
|
||||
#include <cxxabi.h>
|
||||
#endif
|
||||
|
||||
#include <ctype.h>
|
||||
#include <dlfcn.h>
|
||||
#include <errno.h>
|
||||
#include <fcntl.h>
|
||||
|
|
Loading…
Reference in a new issue