cxxfilt 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/Gemfile.lock +2 -2
- data/README.md +32 -3
- data/cxxfilt.gemspec +1 -1
- data/ext/cxxfilt/cp-demangle.c +6772 -0
- data/ext/cxxfilt/cp-demangle.h +194 -0
- data/ext/cxxfilt/cp-demint.c +237 -0
- data/ext/cxxfilt/cplus-dem.c +5032 -0
- data/ext/cxxfilt/cxxfilt.c +2 -1
- data/ext/cxxfilt/d-demangle.c +1646 -0
- data/ext/cxxfilt/demangle.h +723 -0
- data/ext/cxxfilt/environ.h +35 -0
- data/ext/cxxfilt/extconf.rb +0 -1
- data/ext/cxxfilt/libiberty.h +755 -0
- data/ext/cxxfilt/rust-demangle.c +348 -0
- data/ext/cxxfilt/safe-ctype.c +254 -0
- data/ext/cxxfilt/safe-ctype.h +150 -0
- data/ext/cxxfilt/xexit.c +52 -0
- data/ext/cxxfilt/xmalloc.c +184 -0
- data/ext/cxxfilt/xmemdup.c +41 -0
- data/ext/cxxfilt/xstrdup.c +36 -0
- data/lib/cxxfilt/cxxfilt.rb +6 -6
- data/lib/cxxfilt/version.rb +1 -1
- metadata +19 -4
@@ -0,0 +1,35 @@
|
|
1
|
+
/* Declare the environ system variable.
|
2
|
+
Copyright (C) 2015-2018 Free Software Foundation, Inc.
|
3
|
+
|
4
|
+
This file is part of the libiberty library.
|
5
|
+
Libiberty is free software; you can redistribute it and/or
|
6
|
+
modify it under the terms of the GNU Library General Public
|
7
|
+
License as published by the Free Software Foundation; either
|
8
|
+
version 2 of the License, or (at your option) any later version.
|
9
|
+
|
10
|
+
Libiberty is distributed in the hope that it will be useful,
|
11
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
12
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
13
|
+
Library General Public License for more details.
|
14
|
+
|
15
|
+
You should have received a copy of the GNU Library General Public
|
16
|
+
License along with libiberty; see the file COPYING.LIB. If not,
|
17
|
+
write to the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
|
18
|
+
Boston, MA 02110-1301, USA. */
|
19
|
+
|
20
|
+
/* On OSX, the environ variable can be used directly in the code of an
|
21
|
+
executable, but cannot be used in the code of a shared library (such as
|
22
|
+
GCC's liblto_plugin, which links in libiberty code). Instead, the
|
23
|
+
function _NSGetEnviron can be called to get the address of environ. */
|
24
|
+
|
25
|
+
#ifndef HAVE_ENVIRON_DECL
|
26
|
+
# ifdef __APPLE__
|
27
|
+
# include <crt_externs.h>
|
28
|
+
# define environ (*_NSGetEnviron ())
|
29
|
+
# else
|
30
|
+
# ifndef environ
|
31
|
+
extern char **environ;
|
32
|
+
# endif
|
33
|
+
# endif
|
34
|
+
# define HAVE_ENVIRON_DECL
|
35
|
+
#endif
|