view release on metacpan or search on metacpan
libjit/include/jit/jit-arch-x86-64.h
libjit/include/jit/jit-arch-x86.h
libjit/include/jit/jit-block.h
libjit/include/jit/jit-common.h
libjit/include/jit/jit-context.h
libjit/include/jit/jit-debugger.h
libjit/include/jit/jit-defs.h.in
libjit/include/jit/jit-dump.h
libjit/include/jit/jit-dynamic.h
libjit/include/jit/jit-elf.h
libjit/include/jit/jit-except.h
libjit/jit/jit-compile.c
libjit/jit/jit-config.h
libjit/jit/jit-context.c
libjit/jit/jit-cpuid-x86.c
libjit/jit/jit-cpuid-x86.h
libjit/jit/jit-debugger.c
libjit/jit/jit-dump.c
libjit/jit/jit-elf-defs.h
libjit/jit/jit-elf-read.c
libjit/jit/jit-elf-write.c
libjit/jit/jit-except.c
view all matches for this distribution
view release on metacpan or search on metacpan
libjio/INSTALL view on Meta::CPAN
Special builds
--------------
- To build with debugging information: "make DEBUG=1".
- To build with profiling support: "make PROFILE=1".
- To build with fault injection support, if you have libfiu: "make FI=1".
Python bindings
view all matches for this distribution
view release on metacpan or search on metacpan
# Which type of build to create.
#
# Values:
# - "release": release build (default)
#
# This has no debugging symbols.
#
# - "debug": debug build
#
# - ALIEN_LIBTENSORFLOW_DEVICE_TYPE
#
# Which device type to use for binary release.
#
$ENV{ALIEN_LIBTENSORFLOW_FROM_BINARY_ALLOW_RELEASE_CANDIDATES} ||= 0;
# 0|1 (default: 0)
$ENV{ALIEN_LIBTENSORFLOW_FROM_SOURCE} ||= 0;
# release|debug (default: release)
$ENV{ALIEN_LIBTENSORFLOW_FROM_SOURCE_BUILD_TYPE} ||= 'release';
die "Unknown value for ALIEN_LIBTENSORFLOW_FROM_SOURCE_BUILD_TYPE = $ALIEN_LIBTENSORFLOW_FROM_SOURCE_BUILD_TYPE"
unless $ALIEN_LIBTENSORFLOW_FROM_SOURCE_BUILD_TYPE =~ /^(release|debug)$/;
# auto|cpu|gpu (default: auto)
$ENV{ALIEN_LIBTENSORFLOW_DEVICE_TYPE} ||= 'auto';
die "Unknown value for ALIEN_LIBTENSORFLOW_DEVICE_TYPE = $ALIEN_LIBTENSORFLOW_DEVICE_TYPE"
unless $ALIEN_LIBTENSORFLOW_DEVICE_TYPE =~ /^(auto|cpu|gpu)$/;
$build->install_prop->{libtensorflow_dynlib} = $os_dynamic_lib{$^O};
},
[
qw(bazel build),
'--verbose_failures',
( $ALIEN_LIBTENSORFLOW_FROM_SOURCE_BUILD_TYPE eq 'debug' ? q(--config=dbg) : () ),
'//tensorflow:%{.install.libtensorflow_dynlib}'
],
'%{make_path} %{.install.stage}/lib',
"%{cp} bazel-bin/tensorflow/%{.install.libtensorflow_dynlib} %{.install.stage}/lib",
];
view all matches for this distribution
view release on metacpan or search on metacpan
inc/Makefile_src view on Meta::CPAN
PLATS= aix ansi bsd freebsd generic linux macosx mingw posix solaris
LUA_A= liblua.a
LUA_SO= liblua.so
CORE_O= lapi.o lcode.o lctype.o ldebug.o ldo.o ldump.o lfunc.o lgc.o llex.o \
lmem.o lobject.o lopcodes.o lparser.o lstate.o lstring.o ltable.o \
ltm.o lundump.o lvm.o lzio.o
LIB_O= lauxlib.o lbaselib.o lbitlib.o lcorolib.o ldblib.o liolib.o \
lmathlib.o loslib.o lstrlib.o ltablib.o loadlib.o linit.o
BASE_O= $(CORE_O) $(LIB_O) $(MYOBJS)
inc/Makefile_src view on Meta::CPAN
.PHONY: all $(PLATS) default o a clean depend echo none
# DO NOT DELETE
lapi.o: lapi.c lua.h luaconf.h lapi.h llimits.h lstate.h lobject.h ltm.h \
lzio.h lmem.h ldebug.h ldo.h lfunc.h lgc.h lstring.h ltable.h lundump.h \
lvm.h
lauxlib.o: lauxlib.c lua.h luaconf.h lauxlib.h
lbaselib.o: lbaselib.c lua.h luaconf.h lauxlib.h lualib.h
lbitlib.o: lbitlib.c lua.h luaconf.h lauxlib.h lualib.h
lcode.o: lcode.c lua.h luaconf.h lcode.h llex.h lobject.h llimits.h \
lzio.h lmem.h lopcodes.h lparser.h ldebug.h lstate.h ltm.h ldo.h lgc.h \
lstring.h ltable.h lvm.h
lcorolib.o: lcorolib.c lua.h luaconf.h lauxlib.h lualib.h
lctype.o: lctype.c lctype.h lua.h luaconf.h llimits.h
ldblib.o: ldblib.c lua.h luaconf.h lauxlib.h lualib.h
ldebug.o: ldebug.c lua.h luaconf.h lapi.h llimits.h lstate.h lobject.h \
ltm.h lzio.h lmem.h lcode.h llex.h lopcodes.h lparser.h ldebug.h ldo.h \
lfunc.h lstring.h lgc.h ltable.h lvm.h
ldo.o: ldo.c lua.h luaconf.h lapi.h llimits.h lstate.h lobject.h ltm.h \
lzio.h lmem.h ldebug.h ldo.h lfunc.h lgc.h lopcodes.h lparser.h \
lstring.h ltable.h lundump.h lvm.h
ldump.o: ldump.c lua.h luaconf.h lobject.h llimits.h lstate.h ltm.h \
lzio.h lmem.h lundump.h
lfunc.o: lfunc.c lua.h luaconf.h lfunc.h lobject.h llimits.h lgc.h \
lstate.h ltm.h lzio.h lmem.h
lgc.o: lgc.c lua.h luaconf.h ldebug.h lstate.h lobject.h llimits.h ltm.h \
lzio.h lmem.h ldo.h lfunc.h lgc.h lstring.h ltable.h
linit.o: linit.c lua.h luaconf.h lualib.h lauxlib.h
liolib.o: liolib.c lua.h luaconf.h lauxlib.h lualib.h
llex.o: llex.c lua.h luaconf.h lctype.h llimits.h ldo.h lobject.h \
lstate.h ltm.h lzio.h lmem.h llex.h lparser.h lstring.h lgc.h ltable.h
lmathlib.o: lmathlib.c lua.h luaconf.h lauxlib.h lualib.h
lmem.o: lmem.c lua.h luaconf.h ldebug.h lstate.h lobject.h llimits.h \
ltm.h lzio.h lmem.h ldo.h lgc.h
loadlib.o: loadlib.c lua.h luaconf.h lauxlib.h lualib.h
lobject.o: lobject.c lua.h luaconf.h lctype.h llimits.h ldebug.h lstate.h \
lobject.h ltm.h lzio.h lmem.h ldo.h lstring.h lgc.h lvm.h
lopcodes.o: lopcodes.c lopcodes.h llimits.h lua.h luaconf.h
loslib.o: loslib.c lua.h luaconf.h lauxlib.h lualib.h
lparser.o: lparser.c lua.h luaconf.h lcode.h llex.h lobject.h llimits.h \
lzio.h lmem.h lopcodes.h lparser.h ldebug.h lstate.h ltm.h ldo.h lfunc.h \
lstring.h lgc.h ltable.h
lstate.o: lstate.c lua.h luaconf.h lapi.h llimits.h lstate.h lobject.h \
ltm.h lzio.h lmem.h ldebug.h ldo.h lfunc.h lgc.h llex.h lstring.h \
ltable.h
lstring.o: lstring.c lua.h luaconf.h lmem.h llimits.h lobject.h lstate.h \
ltm.h lzio.h lstring.h lgc.h
lstrlib.o: lstrlib.c lua.h luaconf.h lauxlib.h lualib.h
ltable.o: ltable.c lua.h luaconf.h ldebug.h lstate.h lobject.h llimits.h \
ltm.h lzio.h lmem.h ldo.h lgc.h lstring.h ltable.h lvm.h
ltablib.o: ltablib.c lua.h luaconf.h lauxlib.h lualib.h
ltm.o: ltm.c lua.h luaconf.h lobject.h llimits.h lstate.h ltm.h lzio.h \
lmem.h lstring.h lgc.h ltable.h
lua.o: lua.c lua.h luaconf.h lauxlib.h lualib.h
luac.o: luac.c lua.h luaconf.h lauxlib.h lobject.h llimits.h lstate.h \
ltm.h lzio.h lmem.h lundump.h ldebug.h lopcodes.h
lundump.o: lundump.c lua.h luaconf.h ldebug.h lstate.h lobject.h \
llimits.h ltm.h lzio.h lmem.h ldo.h lfunc.h lstring.h lgc.h lundump.h
lvm.o: lvm.c lua.h luaconf.h ldebug.h lstate.h lobject.h llimits.h ltm.h \
lzio.h lmem.h ldo.h lfunc.h lgc.h lopcodes.h lstring.h ltable.h lvm.h
lzio.o: lzio.c lua.h luaconf.h llimits.h lmem.h lstate.h lobject.h ltm.h \
lzio.h
view all matches for this distribution
view release on metacpan or search on metacpan
inc/Devel/CheckLib.pm view on Meta::CPAN
@sys_cmd = (@cc, (map { "-I$_" } @incpaths), "-o$exefile", $cfile);
} else { # Unix-ish
# gcc, Sun, AIX (gcc, cc)
@sys_cmd = (@cc, $cfile, (map { "-I$_" } @incpaths), "-o", "$exefile");
}
warn "# @sys_cmd\n" if $args{debug};
my $rv = $args{debug} ? system(@sys_cmd) : _quiet_system(@sys_cmd);
push @missing, $header if $rv != 0 || ! -x $exefile;
_cleanup_exe($exefile);
unlink $cfile;
}
inc/Devel/CheckLib.pm view on Meta::CPAN
} else { # Unix-ish
# gcc, Sun, AIX (gcc, cc)
my @libpath = map { "-L$_" } @libpaths;
@sys_cmd = (@cc, $cfile, "-o", "$exefile", "-l$lib", @libpath);
}
warn "# @sys_cmd\n" if $args{debug};
my $rv = $args{debug} ? system(@sys_cmd) : _quiet_system(@sys_cmd);
push @missing, $lib if $rv != 0 || ! -x $exefile;
_cleanup_exe($exefile);
}
unlink $cfile;
view all matches for this distribution
view release on metacpan or search on metacpan
use Cwd;
my $base_dir = getcwd();
# make libtool noisy for debug purposes
#$ENV{LTFLAGS} = "--debug --verbose" if $on_windows;
my $min_target_version = '4.9.0';
my $max_target_version = '4.99.99';
my $with_local = '';
my $with_cpp11 = '';
start_url 'http://download.osgeo.org/proj/';
#start_url "file://$base_dir"; # debug
plugin Download => (
filter => qr/^proj-(4\.[0-9\.]+)\.tar\.gz$/,
version => qr/^proj-(4\.[0-9\.]+)\.tar\.gz$/,
);
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Alien/Prototype/Window.pm view on Meta::CPAN
my $class = shift;
my $path = $class->path();
my %blib;
# JS files
my @js = qw( window window_ext window_effects tooltip debug extended_debug );
foreach my $file (@js) {
$file .= '.js';
my $src = File::Spec->catfile( $path, 'javascripts', $file );
$blib{$src} = $file;
}
view all matches for this distribution
view release on metacpan or search on metacpan
inc/inc_Archive-Extract/Archive/Extract.pm view on Meta::CPAN
### reverse it if we prefer bin extractors
@methods = reverse @methods if $PREFER_BIN;
my($na, $fail);
for my $method (@methods) {
$self->debug( "# Extracting with ->$method\n" );
my $rv = $self->$method;
### a positive extraction
if( $rv and $rv ne METHOD_NA ) {
$self->debug( "# Extraction succeeded\n" );
$self->_extractor($method);
last;
### method is not available
} elsif ( $rv and $rv eq METHOD_NA ) {
$self->debug( "# Extraction method not available\n" );
$na++;
} else {
$self->debug( "# Extraction method failed\n" );
$fail++;
}
}
### warn something went wrong if we didn't get an extractor
inc/inc_Archive-Extract/Archive/Extract.pm view on Meta::CPAN
} || [];
return join $/, @$aref;
}
=head2 debug( MESSAGE )
This method outputs MESSAGE to the default filehandle if C<$DEBUG> is
true. It's a small method, but it's here if you'd like to subclass it
so you can so something else with any debugging output.
=cut
### this is really a stub for subclassing
sub debug {
return unless $DEBUG;
print $_[1];
}
view all matches for this distribution
view release on metacpan or search on metacpan
corpus/autoheck-libpalindrome/configure view on Meta::CPAN
# When building in place, set srcdir=.
if test "$ac_abs_confdir" = "$ac_pwd"; then
srcdir=.
fi
# Remove unnecessary trailing slashes from srcdir.
# Double slashes in file names in object file debugging info
# mess up M-x gdb in Emacs.
case $srcdir in
*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;;
esac
for ac_var in $ac_precious_vars; do
corpus/autoheck-libpalindrome/configure view on Meta::CPAN
eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
} # ac_fn_c_check_func
cat >config.log <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by libpalindrome $as_me 1.3.4, which was
generated by GNU Autoconf 2.69. Invocation command line was
$ $0 $@
corpus/autoheck-libpalindrome/configure view on Meta::CPAN
# config.log. We remove comments because anyway the quotes in there
# would cause problems or look ugly.
# WARNING: Use '\'' to represent an apostrophe within the trap.
# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug.
trap 'exit_status=$?
# Save into config.log some information that might help in debugging.
{
echo
$as_echo "## ---------------- ##
## Cache variables. ##
corpus/autoheck-libpalindrome/configure view on Meta::CPAN
striplib=
old_striplib=
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether stripping libraries is possible" >&5
$as_echo_n "checking whether stripping libraries is possible... " >&6; }
if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then
test -z "$old_striplib" && old_striplib="$STRIP --strip-debug"
test -z "$striplib" && striplib="$STRIP --strip-unneeded"
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
$as_echo "yes" >&6; }
else
# FIXME - insert some real tests, host_os isn't really good enough
corpus/autoheck-libpalindrome/configure view on Meta::CPAN
as_write_fail=0
cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1
#! $SHELL
# Generated by $as_me.
# Run this file to recreate the current configuration.
# Compiler output produced by configure, useful for debugging
# configure, is in config.log if it exists.
debug=false
ac_cs_recheck=false
ac_cs_silent=false
SHELL=\${CONFIG_SHELL-$SHELL}
export SHELL
corpus/autoheck-libpalindrome/configure view on Meta::CPAN
-h, --help print this help, then exit
-V, --version print version number and configuration settings, then exit
--config print configuration, then exit
-q, --quiet, --silent
do not print progress messages
-d, --debug don't remove temporary files
--recheck update $as_me by reconfiguring in the same conditions
--file=FILE[:TEMPLATE]
instantiate the configuration file FILE
--header=FILE[:TEMPLATE]
instantiate the configuration header FILE
corpus/autoheck-libpalindrome/configure view on Meta::CPAN
ac_cs_recheck=: ;;
--version | --versio | --versi | --vers | --ver | --ve | --v | -V )
$as_echo "$ac_cs_version"; exit ;;
--config | --confi | --conf | --con | --co | --c )
$as_echo "$ac_cs_config"; exit ;;
--debug | --debu | --deb | --de | --d | -d )
debug=: ;;
--file | --fil | --fi | --f )
$ac_shift
case $ac_optarg in
*\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
'') as_fn_error $? "missing file argument" ;;
corpus/autoheck-libpalindrome/configure view on Meta::CPAN
fi
# Have a temporary directory for convenience. Make it in the build tree
# simply because there is no reason against having it here, and in addition,
# creating and moving files from /tmp can sometimes cause problems.
# Hook for its removal unless debugging.
# Note that there is a small window in which the directory will not be cleaned:
# after its creation but before its name has been assigned to `$tmp'.
$debug ||
{
tmp= ac_tmp=
trap 'exit_status=$?
: "${ac_tmp:=$tmp}"
{ test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status
corpus/autoheck-libpalindrome/configure view on Meta::CPAN
need_locks=$lt_need_locks
# Manifest tool.
MANIFEST_TOOL=$lt_MANIFEST_TOOL
# Tool to manipulate archived DWARF debug symbol files on Mac OS X.
DSYMUTIL=$lt_DSYMUTIL
# Tool to change global to local symbols on Mac OS X.
NMEDIT=$lt_NMEDIT
view all matches for this distribution
view release on metacpan or search on metacpan
patches/SDL-1.2.14-configure view on Meta::CPAN
enable_mintaudio
enable_nasm
enable_altivec
enable_ipod
enable_video_nanox
enable_nanox_debug
enable_nanox_share_memory
enable_nanox_direct_fb
enable_video_x11
with_x
enable_x11_shared
patches/SDL-1.2.14-configure view on Meta::CPAN
# When building in place, set srcdir=.
if test "$ac_abs_confdir" = "$ac_pwd"; then
srcdir=.
fi
# Remove unnecessary trailing slashes from srcdir.
# Double slashes in file names in object file debugging info
# mess up M-x gdb in Emacs.
case $srcdir in
*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;;
esac
for ac_var in $ac_precious_vars; do
patches/SDL-1.2.14-configure view on Meta::CPAN
--enable-mintaudio support Atari audio driver [[default=yes]]
--enable-nasm use nasm assembly blitters on x86 [[default=yes]]
--enable-altivec use altivec assembly blitters on PPC [[default=yes]]
--enable-ipod configure SDL to work with iPodLinux [[default=no]]
--enable-video-nanox use nanox video driver [[default=no]]
--enable-nanox-debug print debug messages [[default=no]]
--enable-nanox-share-memory
use share memory [[default=no]]
--enable-nanox-direct-fb
use direct framebuffer access [[default=no]]
--enable-video-x11 use X11 video driver [[default=yes]]
patches/SDL-1.2.14-configure view on Meta::CPAN
as_fn_set_status $ac_retval
} # ac_fn_c_compute_int
cat >config.log <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by $as_me, which was
generated by GNU Autoconf 2.68. Invocation command line was
$ $0 $@
patches/SDL-1.2.14-configure view on Meta::CPAN
# config.log. We remove comments because anyway the quotes in there
# would cause problems or look ugly.
# WARNING: Use '\'' to represent an apostrophe within the trap.
# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug.
trap 'exit_status=$?
# Save into config.log some information that might help in debugging.
{
echo
$as_echo "## ---------------- ##
## Cache variables. ##
patches/SDL-1.2.14-configure view on Meta::CPAN
striplib=
old_striplib=
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether stripping libraries is possible" >&5
$as_echo_n "checking whether stripping libraries is possible... " >&6; }
if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then
test -z "$old_striplib" && old_striplib="$STRIP --strip-debug"
test -z "$striplib" && striplib="$STRIP --strip-unneeded"
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
$as_echo "yes" >&6; }
else
# FIXME - insert some real tests, host_os isn't really good enough
patches/SDL-1.2.14-configure view on Meta::CPAN
enable_video_nanox=no
fi
if test x$enable_video = xyes -a x$enable_video_nanox = xyes; then
# Check whether --enable-nanox-debug was given.
if test "${enable_nanox_debug+set}" = set; then :
enableval=$enable_nanox_debug;
else
enable_nanox_debug=no
fi
if test x$enable_nanox_debug = xyes; then
EXTRA_CFLAGS="$EXTRA_CFLAGS -DENABLE_NANOX_DEBUG"
fi
# Check whether --enable-nanox-share-memory was given.
if test "${enable_nanox_share_memory+set}" = set; then :
patches/SDL-1.2.14-configure view on Meta::CPAN
as_write_fail=0
cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1
#! $SHELL
# Generated by $as_me.
# Run this file to recreate the current configuration.
# Compiler output produced by configure, useful for debugging
# configure, is in config.log if it exists.
debug=false
ac_cs_recheck=false
ac_cs_silent=false
SHELL=\${CONFIG_SHELL-$SHELL}
export SHELL
patches/SDL-1.2.14-configure view on Meta::CPAN
-h, --help print this help, then exit
-V, --version print version number and configuration settings, then exit
--config print configuration, then exit
-q, --quiet, --silent
do not print progress messages
-d, --debug don't remove temporary files
--recheck update $as_me by reconfiguring in the same conditions
--file=FILE[:TEMPLATE]
instantiate the configuration file FILE
--header=FILE[:TEMPLATE]
instantiate the configuration header FILE
patches/SDL-1.2.14-configure view on Meta::CPAN
ac_cs_recheck=: ;;
--version | --versio | --versi | --vers | --ver | --ve | --v | -V )
$as_echo "$ac_cs_version"; exit ;;
--config | --confi | --conf | --con | --co | --c )
$as_echo "$ac_cs_config"; exit ;;
--debug | --debu | --deb | --de | --d | -d )
debug=: ;;
--file | --fil | --fi | --f )
$ac_shift
case $ac_optarg in
*\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
'') as_fn_error $? "missing file argument" ;;
patches/SDL-1.2.14-configure view on Meta::CPAN
fi
# Have a temporary directory for convenience. Make it in the build tree
# simply because there is no reason against having it here, and in addition,
# creating and moving files from /tmp can sometimes cause problems.
# Hook for its removal unless debugging.
# Note that there is a small window in which the directory will not be cleaned:
# after its creation but before its name has been assigned to `$tmp'.
$debug ||
{
tmp= ac_tmp=
trap 'exit_status=$?
: "${ac_tmp:=$tmp}"
{ test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status
patches/SDL-1.2.14-configure view on Meta::CPAN
need_locks=$lt_need_locks
# Manifest tool.
MANIFEST_TOOL=$lt_MANIFEST_TOOL
# Tool to manipulate archived DWARF debug symbol files on Mac OS X.
DSYMUTIL=$lt_DSYMUTIL
# Tool to change global to local symbols on Mac OS X.
NMEDIT=$lt_NMEDIT
view all matches for this distribution
view release on metacpan or search on metacpan
src/subversion/subversion/bindings/swig/perl/native/Delta.pm view on Meta::CPAN
SVN::TxDelta::send_string("FILEA CONTENT", @$ret);
# implement an editor in perl
SVN::Repos::dir_delta($root1, $path, undef,
$root2, $path,
SVN::Delta::Editor->new(_debug=>1),
1, 1, 0, 1
=head1 DESCRIPTION
SVN::Delta wraps delta related function in subversion. The most
src/subversion/subversion/bindings/swig/perl/native/Delta.pm view on Meta::CPAN
You can also pass a hash array to new:
=over
=item _debug
Turn on debug.
=item _editor
An arrayref of the editor/baton pair or another SVN::Delta::Editor
object to link with.
src/subversion/subversion/bindings/swig/perl/native/Delta.pm view on Meta::CPAN
no warnings 'uninitialized';
return unless $_[0]->{_editor};
my $class = ref($_[0]);
my $func = $AUTOLOAD;
$func =~ s/.*:://;
warn "$func: ".join(',',@_)."\n" if $_[0]->{_debug};
return unless $func =~ m/[^A-Z]/;
my %ebaton = ( set_target_revision => 1,
open_root => 1,
close_edit => 1,
view all matches for this distribution
view release on metacpan or search on metacpan
inc/My/Module/Build.pm view on Meta::CPAN
./Build test verbose=0 t/sometest.t
In the case of running a single test, I<ACTION_test> also
automatically detects that we are running under Emacs' perldb mode and
runs the required test script under the Perl debugger. Running a
particular test under Emacs perldb is therefore as simple as typing:
M-x perldb <RET> /path/to/CPAN/module/Build test MyModule.pm
If a relative path is passed (as shown), it is interpreted relative to
the current directory set by Emacs (which, except under very bizarre
conditions, will be the directory of the file currently being
edited). The verbose switch above applies here by default,
conveniently causing the test script to run in verbose mode in the
debugger.
Like the original L<Module::Build/test>, C<./Build test> accepts
supplemental key=value command line switches, as exemplified above
with C<verbose>. Additional switches are provided by
I<My::Module::Build>:
inc/My/Module/Build.pm view on Meta::CPAN
=item I<< use_blib=0 >>
Load modules from the B<source> directory (e.g. C<lib>) instead of the
build directories (e.g. C<blib/lib> and C<blib/arch>). I use this to
debug L<Inline::C> code in a tight tweak-run-tweak-run loop, a
situation in which the MD5-on-C-code feature of L<Inline> saves a lot
of rebuilds.
=item I<full_debugging=1>
Sets the FULL_DEBUGGING environment variable to 1 while running
C<./Build test>, in addition to any environment customization already
performed by L</customize_env>. Packages of mine that use L<Inline>
enable extra debugging when this environment variable is set.
=back
=head3 Dependent Option Graph
inc/My/Module/Build.pm view on Meta::CPAN
=begin internals
=head2 Global variables
=head3 $running_under_emacs_debugger
Set by L</_massage_ARGV> if (you guessed it) we are currently running
under the Emacs debugger.
=cut
our $running_under_emacs_debugger;
=head2 Constants
=head3 is_win32
inc/My/Module/Build.pm view on Meta::CPAN
=item I<ACTION_test>
Overloaded to add t/lib and t/inc to the test scripts' @INC (we
sometimes put helper test classes in there), and also to implement the
features described in L</Extended C<test> action>. See also
L</_massage_ARGV> for more bits of the Emacs debugger support code.
=cut
sub ACTION_test {
my $self = shift;
inc/My/Module/Build.pm view on Meta::CPAN
my @files_to_test = map {
our $initial_cwd; # Set at BEGIN time, see L<_startperl>
File::Spec->rel2abs($_, $initial_cwd)
} (@{$self->{args}->{ARGV} || []});
if ($running_under_emacs_debugger && @files_to_test == 1) {
# We want to run this script under a slave_editor debugger, so
# as to implement the documented trick. The simplest way
# (although inelegant) is to bypass Module::Build and
# Test::Harness entirely, and run the child Perl
# ourselves. Most of the code below was therefore cobbled
# together from the real T::H version 2.40 and M::B 0.26
inc/My/Module/Build.pm view on Meta::CPAN
sub customize_env {
my ($self, %env) = @_;
delete $env{FULL_DEBUGGING};
$env{PERL_INLINE_BUILD_NOISY} = 1;
$env{FULL_DEBUGGING} = 1 if ($self->{args}->{full_debugging});
return %env;
}
=item I<process_pm_files>
inc/My/Module/Build.pm view on Meta::CPAN
=item I<_startperl>
Overloaded from parent to attempt a chdir() into the right place in
./Build during initialization. This is an essential enabler to the
Emacs debugger support (see L</ACTION_test>) because we simply cannot
tell where Emacs will be running us from.
=cut
sub _startperl {
my $self = shift;
my $basedir = $self->base_dir;
$basedir = Win32::GetShortPathName($basedir) if is_win32;
return $self->SUPER::_startperl(@_) . <<"MORE";
# Hack by My::Module::Build to give the Emacs debugger one
# more chance to work:
use Cwd;
BEGIN {
\$My::Module::Build::initial_cwd = \$My::Module::Build::initial_cwd =
Cwd::cwd;
inc/My/Module/Build.pm view on Meta::CPAN
=item I<_massage_ARGV($ref_to_ARGV)>
Called as part of this module's startup code, in order to debogosify
the @ARGV array (to be passed as a reference) when we are invoked from
Emacs' M-x perldb. L</ACTION_test> will afterwards be able to take
advantage of the Emacs debugger we run under, by bogosifying the
command line back before invoking the script to test.
=cut
_massage_ARGV(\@ARGV);
inc/My/Module/Build.pm view on Meta::CPAN
my ($argvref) = @_;
my @argv = @$argvref;
return unless ($ENV{EMACS} && (grep {$_ eq "-emacs"} @argv));
$running_under_emacs_debugger = 1;
@argv = grep { $_ ne "-emacs" } @argv;
shift @argv if $argv[0] eq "-d"; # Was gratuitously added by former Emacsen
# XEmacs foolishly assumes that the second word in the perldb
view all matches for this distribution
view release on metacpan or search on metacpan
You only need this package when something else requires it.
Install examples:
# Compile and install
cmake -DCMAKE_INSTALL_PREFIX=/opt/kde4/ . && make && make install
# Compile with debugging enabled and point to the used ruby version
cmake -DCMAKE_BUILD_TYPE=debugfull -DRUBY_INCLUDE_PATH=/usr/lib/ruby/1.8/i486-linux/ -DRUBY_LIBRARY=/usr/lib/libruby1.8.so .
# Compile smokeqt but not smokekde
cmake -DENABLE_SMOKE=on -DENABLE_SMOKEKDE=off .
# Disable compiling of Qyoto
cmake -DENABLE_QYOTO=off .
# Disable compiling of QtRuby and Korundum
view all matches for this distribution
view release on metacpan or search on metacpan
share/swagger-ui-bundle.js view on Meta::CPAN
!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(function(){try{return require("esprima")}catch(e){}}()):"function"==typeof define&&define.amd?define(["esprima"],t):"object"==typeof exports?exports.SwaggerUIBundle=t(f...
/*
object-assign
(c) Sindre Sorhus
@license MIT
*/var r=Object.getOwnPropertySymbols,o=Object.prototype.hasOwnProperty,i=Object.prototype.propertyIsEnumerable;function a(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}e.exports=function()...
/*!
Copyright (c) 2017 Jed Watson.
Licensed under the MIT License (MIT), see
http://jedwatson.github.io/classnames
*/
share/swagger-ui-bundle.js view on Meta::CPAN
/*!
* https://github.com/Starcounter-Jack/JSON-Patch
* (c) 2017 Joachim Wester
* MIT license
*/
var n=this&&this.__extends||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n]);function r(){this.constructor=e}e.prototype=null===t?Object.create(t):(r.prototype=t.prototype,new r)},r=Object.prototype.hasOwnProperty;function o(e,t){return ...
/** @license React v16.8.6
* react-is.production.min.js
*
* Copyright (c) Facebook, Inc. and its affiliates.
*
share/swagger-ui-bundle.js view on Meta::CPAN
*
* Copyright(c) 2016 Gregory Jacobs <greg@greg-jacobs.com>
* MIT License
*
* https://github.com/gregjacobs/Autolinker.js
*/o=[],void 0===(i="function"==typeof(r=function(){var e,t,n,r,o,i,a,s=function(e){e=e||{},this.version=s.version,this.urls=this.normalizeUrlsCfg(e.urls),this.email="boolean"!=typeof e.email||e.email,this.twitter="boolean"!=typeof e.twitter||e.twitt...
//# sourceMappingURL=swagger-ui-bundle.js.map
view all matches for this distribution
view release on metacpan or search on metacpan
src/COPYING view on Meta::CPAN
6. As an exception to the Sections above, you may also combine or
link a "work that uses the Library" with the Library to produce a
work containing portions of the Library, and distribute that work
under terms of your choice, provided that the terms permit
modification of the work for the customer's own use and reverse
engineering for debugging such modifications.
You must give prominent notice with each copy of the work that the
Library is used in it and that the Library and its use are covered by
this License. You must supply a copy of this License. If the work
during execution displays copyright notices, you must include the
view all matches for this distribution
view release on metacpan or search on metacpan
src/COPYING view on Meta::CPAN
6. As an exception to the Sections above, you may also combine or
link a "work that uses the Library" with the Library to produce a
work containing portions of the Library, and distribute that work
under terms of your choice, provided that the terms permit
modification of the work for the customer's own use and reverse
engineering for debugging such modifications.
You must give prominent notice with each copy of the work that the
Library is used in it and that the Library and its use are covered by
this License. You must supply a copy of this License. If the work
during execution displays copyright notices, you must include the
view all matches for this distribution
view release on metacpan or search on metacpan
inc/inc_Module-Build/Module/Build.pm view on Meta::CPAN
files ending with C<.t> in a C<t/> directory.
If you want tests to be 'verbose', i.e. show details of test execution
rather than just summary information, pass the argument C<verbose=1>.
If you want to run tests under the perl debugger, pass the argument
C<debugger=1>.
If you want to have Module::Build find test files with different file
name extensions, pass the C<test_file_exts> argument with an array
of extensions, such as C<[qw( .t .s .z )]>.
inc/inc_Module-Build/Module/Build.pm view on Meta::CPAN
=item testdb
[version 0.05]
This is a synonym for the 'test' action with the C<debugger=1>
argument.
=item testpod
[version 0.25]
inc/inc_Module-Build/Module/Build.pm view on Meta::CPAN
we're now running under is the same version that was initially invoked
when building the distribution (i.e. when the C<Build.PL> script was
first run). As of 0.3601, a mismatch results in a warning instead of
a fatal error, so this option effectively just suppresses the warning.
=item debug
Prints Module::Build debugging information to STDOUT, such as a trace of
executed build actions.
=back
=head2 Default Options File (F<.modulebuildrc>)
view all matches for this distribution
view release on metacpan or search on metacpan
README
README.pod
dist.ini
lib/Alien/Web/ExtJS/V3.pm
share/INCLUDE_ORDER.txt
share/adapter/ext/ext-base-debug.js
share/adapter/ext/ext-base.js
share/adapter/jquery/ext-jquery-adapter-debug.js
share/adapter/jquery/ext-jquery-adapter.js
share/adapter/prototype/ext-prototype-adapter-debug.js
share/adapter/prototype/ext-prototype-adapter.js
share/adapter/yui/ext-yui-adapter-debug.js
share/adapter/yui/ext-yui-adapter.js
share/docs/app-1c3b39672c292d36e4a5ff05c1bb7035.js
share/docs/data-218318ee90d3522428760e464306d0ed.js
share/docs/eg-iframe.html
share/docs/extjs/ext-all.js
share/examples/button/images/add16.gif
share/examples/button/images/add24.gif
share/examples/calendar/app/calendar-list.js
share/examples/calendar/app/event-list.js
share/examples/calendar/app/test-app.js
share/examples/calendar/calendar-all-debug.js
share/examples/calendar/calendar-all.js
share/examples/calendar/index.html
share/examples/calendar/resources/css/calendar.css
share/examples/calendar/resources/css/examples.css
share/examples/calendar/resources/images/default/arrow.gif
share/examples/dd/dnd_grid_to_grid.js
share/examples/dd/dragdropzones.html
share/examples/dd/dragdropzones.js
share/examples/dd/field-to-grid-dd.html
share/examples/dd/field-to-grid-dd.js
share/examples/debug/debug-console.html
share/examples/debug/debug.png
share/examples/debug/inspector.gif
share/examples/debug/sheldon.xml
share/examples/desktop/credits.txt
share/examples/desktop/css/desktop.css
share/examples/desktop/desktop.html
share/examples/desktop/images/accordian.gif
share/examples/desktop/images/bogus.png
share/examples/shared/screens/data-view.gif
share/examples/shared/screens/dd-fieldtogrid.gif
share/examples/shared/screens/dd-gridtoformpanel.gif
share/examples/shared/screens/dd-gridtogrid.gif
share/examples/shared/screens/dd-zones.gif
share/examples/shared/screens/debug-console.gif
share/examples/shared/screens/desktop.gif
share/examples/shared/screens/direct.gif
share/examples/shared/screens/docs.gif
share/examples/shared/screens/editor.gif
share/examples/shared/screens/feeds.gif
share/examples/ux/treegrid/TreeGridColumns.js
share/examples/ux/treegrid/TreeGridLoader.js
share/examples/ux/treegrid/TreeGridNodeUI.js
share/examples/ux/treegrid/TreeGridSorter.js
share/examples/ux/treegrid/treegrid.css
share/examples/ux/ux-all-debug.js
share/examples/ux/ux-all.js
share/examples/view/animated-dataview.css
share/examples/view/animated-dataview.html
share/examples/view/animated-dataview.js
share/examples/view/chooser-example.js
share/examples/writer/remote/lib/session_db.php
share/examples/writer/writer-thumb.gif
share/examples/writer/writer.css
share/examples/writer/writer.html
share/examples/writer/writer.js
share/ext-all-debug-w-comments.js
share/ext-all-debug.js
share/ext-all.js
share/ext.jsb2
share/gpl-3.0.txt
share/index.html
share/license.txt
share/pkgs/cmp-foundation-debug.js
share/pkgs/cmp-foundation.js
share/pkgs/data-foundation-debug.js
share/pkgs/data-foundation.js
share/pkgs/data-grouping-debug.js
share/pkgs/data-grouping.js
share/pkgs/data-json-debug.js
share/pkgs/data-json.js
share/pkgs/data-list-views-debug.js
share/pkgs/data-list-views.js
share/pkgs/data-xml-debug.js
share/pkgs/data-xml.js
share/pkgs/direct-debug.js
share/pkgs/direct.js
share/pkgs/ext-core-debug.js
share/pkgs/ext-core.js
share/pkgs/ext-dd-debug.js
share/pkgs/ext-dd.js
share/pkgs/ext-foundation-debug.js
share/pkgs/ext-foundation.js
share/pkgs/pkg-buttons-debug.js
share/pkgs/pkg-buttons.js
share/pkgs/pkg-charts-debug.js
share/pkgs/pkg-charts.js
share/pkgs/pkg-forms-debug.js
share/pkgs/pkg-forms.js
share/pkgs/pkg-grid-editor-debug.js
share/pkgs/pkg-grid-editor.js
share/pkgs/pkg-grid-foundation-debug.js
share/pkgs/pkg-grid-foundation.js
share/pkgs/pkg-grid-grouping-debug.js
share/pkgs/pkg-grid-grouping.js
share/pkgs/pkg-grid-property-debug.js
share/pkgs/pkg-grid-property.js
share/pkgs/pkg-history-debug.js
share/pkgs/pkg-history.js
share/pkgs/pkg-menu-debug.js
share/pkgs/pkg-menu.js
share/pkgs/pkg-tabs-debug.js
share/pkgs/pkg-tabs.js
share/pkgs/pkg-tips-debug.js
share/pkgs/pkg-tips.js
share/pkgs/pkg-toolbars-debug.js
share/pkgs/pkg-toolbars.js
share/pkgs/pkg-tree-debug.js
share/pkgs/pkg-tree.js
share/pkgs/resizable-debug.js
share/pkgs/resizable.js
share/pkgs/state-debug.js
share/pkgs/state.js
share/pkgs/window-debug.js
share/pkgs/window.js
share/release-notes.html
share/resources/charts.swf
share/resources/css/debug.css
share/resources/css/ext-all-notheme.css
share/resources/css/ext-all.css
share/resources/css/reset-min.css
share/resources/css/structure/borders.css
share/resources/css/structure/box.css
share/resources/css/structure/button.css
share/resources/css/structure/combo.css
share/resources/css/structure/core.css
share/resources/css/structure/date-picker.css
share/resources/css/structure/dd.css
share/resources/css/structure/debug.css
share/resources/css/structure/dialog.css
share/resources/css/structure/editor.css
share/resources/css/structure/form.css
share/resources/css/structure/grid.css
share/resources/css/structure/layout.css
share/resources/css/theme-access/button.css
share/resources/css/theme-access/combo.css
share/resources/css/theme-access/core.css
share/resources/css/theme-access/date-picker.css
share/resources/css/theme-access/dd.css
share/resources/css/theme-access/debug.css
share/resources/css/theme-access/dialog.css
share/resources/css/theme-access/editor.css
share/resources/css/theme-access/form.css
share/resources/css/theme-access/grid.css
share/resources/css/theme-access/layout.css
share/resources/css/theme-gray/button.css
share/resources/css/theme-gray/combo.css
share/resources/css/theme-gray/core.css
share/resources/css/theme-gray/date-picker.css
share/resources/css/theme-gray/dd.css
share/resources/css/theme-gray/debug.css
share/resources/css/theme-gray/dialog.css
share/resources/css/theme-gray/editor.css
share/resources/css/theme-gray/form.css
share/resources/css/theme-gray/grid.css
share/resources/css/theme-gray/layout.css
share/resources/css/visual/button.css
share/resources/css/visual/combo.css
share/resources/css/visual/core.css
share/resources/css/visual/date-picker.css
share/resources/css/visual/dd.css
share/resources/css/visual/debug.css
share/resources/css/visual/dialog.css
share/resources/css/visual/editor.css
share/resources/css/visual/form.css
share/resources/css/visual/grid.css
share/resources/css/visual/layout.css
share/src/dd/DropTarget.js
share/src/dd/DropZone.js
share/src/dd/Registry.js
share/src/dd/ScrollManager.js
share/src/dd/StatusProxy.js
share/src/debug.js
share/src/direct/Direct.js
share/src/direct/Event.js
share/src/direct/JsonProvider.js
share/src/direct/PollingProvider.js
share/src/direct/Provider.js
view all matches for this distribution
view release on metacpan or search on metacpan
xgboost/cub/cub/thread/thread_scan.cuh
xgboost/cub/cub/thread/thread_search.cuh
xgboost/cub/cub/thread/thread_store.cuh
xgboost/cub/cub/util_allocator.cuh
xgboost/cub/cub/util_arch.cuh
xgboost/cub/cub/util_debug.cuh
xgboost/cub/cub/util_device.cuh
xgboost/cub/cub/util_macro.cuh
xgboost/cub/cub/util_namespace.cuh
xgboost/cub/cub/util_ptx.cuh
xgboost/cub/cub/util_type.cuh
view all matches for this distribution
view release on metacpan or search on metacpan
include/boost/preprocessor/control/expr_if.hpp
include/boost/preprocessor/control/expr_iif.hpp
include/boost/preprocessor/control/if.hpp
include/boost/preprocessor/control/iif.hpp
include/boost/preprocessor/control/while.hpp
include/boost/preprocessor/debug.hpp
include/boost/preprocessor/debug/assert.hpp
include/boost/preprocessor/debug/error.hpp
include/boost/preprocessor/debug/line.hpp
include/boost/preprocessor/dec.hpp
include/boost/preprocessor/detail/auto_rec.hpp
include/boost/preprocessor/detail/check.hpp
include/boost/preprocessor/detail/dmc/auto_rec.hpp
include/boost/preprocessor/detail/is_binary.hpp
view all matches for this distribution
view release on metacpan or search on metacpan
libcares/.travis.yml view on Meta::CPAN
- if [ "$TRAVIS_OS_NAME" != "osx" ]; then pip install --user cpp-coveralls > /dev/null; fi
- if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew reinstall libtool > /dev/null; fi
before_script:
- |
if [ "$BUILD_TYPE" = "coverage" ]; then
export CONFIG_OPTS="--enable-debug --disable-shared --enable-code-coverage"
fi
- |
if [ "$BUILD_TYPE" = "asan" ]; then
export CONFIG_OPTS=--enable-debug
export CFLAGS=-fsanitize=address
export CXXFLAGS=-fsanitize=address
export LDFLAGS=-fsanitize=address
fi
- |
if [ "$BUILD_TYPE" = "lsan" ]; then
export CONFIG_OPTS=--enable-debug
export CFLAGS=-fsanitize=leak
export CXXFLAGS=-fsanitize=leak
export LDFLAGS=-fsanitize=leak
fi
- |
libcares/.travis.yml view on Meta::CPAN
export LDFLAGS="-fsanitize=undefined"
fi
- |
if [ "$BUILD_TYPE" = "analyse" ]; then
export SCAN_WRAP="scan-build-5.0 --status-bugs"
export CONFIG_OPTS="--enable-debug"
export CXX="clang++-5.0"
export CC="clang-5.0"
fi
- |
if [ "$BUILD_TYPE" = "valgrind" ]; then
view all matches for this distribution
view release on metacpan or search on metacpan
src/catch.hpp view on Meta::CPAN
void cleanUpContext();
}
// end catch_context.h
// start catch_debugger.h
namespace Catch {
bool isDebuggerActive();
}
src/catch.hpp view on Meta::CPAN
#include <signal.h>
#define CATCH_TRAP() raise(SIGTRAP)
#endif
#elif defined(_MSC_VER)
#define CATCH_TRAP() __debugbreak()
#elif defined(__MINGW32__)
extern "C" __declspec(dllimport) void __stdcall DebugBreak();
#define CATCH_TRAP() DebugBreak()
#endif
src/catch.hpp view on Meta::CPAN
inline void doNothing() {}
}
#define CATCH_BREAK_INTO_DEBUGGER() Catch::doNothing()
#endif
// end catch_debugger.h
// start catch_run_context.h
// start catch_fatal_condition.h
// start catch_windows_h_proxy.h
src/catch.hpp view on Meta::CPAN
void AssertionHandler::complete() {
setCompleted();
if( m_reaction.shouldDebugBreak ) {
// If you find your debugger stopping you here then go one level up on the
// call-stack for the code that caused it (typically a failed assertion)
// (To go back to the test and change execution, jump over the throw, next)
CATCH_BREAK_INTO_DEBUGGER();
}
src/catch.hpp view on Meta::CPAN
| Opt( config.showSuccessfulTests )
["-s"]["--success"]
( "include successful tests in output" )
| Opt( config.shouldDebugBreak )
["-b"]["--break"]
( "break into debugger on failure" )
| Opt( config.noThrow )
["-e"]["--nothrow"]
( "skip exception tests" )
| Opt( config.showInvisibles )
["-i"]["--invisibles"]
src/catch.hpp view on Meta::CPAN
IContext::~IContext() = default;
IMutableContext::~IMutableContext() = default;
Context::~Context() = default;
}
// end catch_context.cpp
// start catch_debug_console.cpp
// start catch_debug_console.h
#include <string>
namespace Catch {
void writeToDebugConsole( std::string const& text );
}
// end catch_debug_console.h
#ifdef CATCH_PLATFORM_WINDOWS
namespace Catch {
void writeToDebugConsole( std::string const& text ) {
::OutputDebugStringA( text.c_str() );
src/catch.hpp view on Meta::CPAN
Catch::cout() << text;
}
}
#endif // Platform
// end catch_debug_console.cpp
// start catch_debugger.cpp
#ifdef CATCH_PLATFORM_MAC
# include <assert.h>
# include <stdbool.h>
src/catch.hpp view on Meta::CPAN
namespace Catch {
// The following function is taken directly from the following technical note:
// http://developer.apple.com/library/mac/#qa/qa2004/qa1361.html
// Returns true if the current process is being debugged (either
// running under the debugger or has a debugger attached post facto).
bool isDebuggerActive(){
int mib[4];
struct kinfo_proc info;
std::size_t size;
src/catch.hpp view on Meta::CPAN
// Call sysctl.
size = sizeof(info);
if( sysctl(mib, sizeof(mib) / sizeof(*mib), &info, &size, nullptr, 0) != 0 ) {
Catch::cerr() << "\n** Call to sysctl failed - unable to determine if debugger is active **\n" << std::endl;
return false;
}
// We're being debugged if the P_TRACED flag is set.
return ( (info.kp_proc.p_flag & P_TRACED) != 0 );
}
} // namespace Catch
#elif defined(CATCH_PLATFORM_LINUX)
#include <fstream>
#include <string>
namespace Catch{
// The standard POSIX way of detecting a debugger is to attempt to
// ptrace() the process, but this needs to be done from a child and not
// this process itself to still allow attaching to this process later
// if wanted, so is rather heavy. Under Linux we have the PID of the
// "debugger" (which doesn't need to be gdb, of course, it could also
// be strace, for example) in /proc/$PID/status, so just get it from
// there instead.
bool isDebuggerActive(){
// Libstdc++ has a bug, where std::ifstream sets errno to 0
// This way our users can properly assert over errno values
src/catch.hpp view on Meta::CPAN
#else
namespace Catch {
bool isDebuggerActive() { return false; }
}
#endif // Platform
// end catch_debugger.cpp
// start catch_decomposer.cpp
namespace Catch {
ITransientExpression::~ITransientExpression() = default;
src/catch.hpp view on Meta::CPAN
if (ExceptionInfo->ExceptionRecord->ExceptionCode == def.id) {
reportFatal(def.name);
}
}
// If its not an exception we care about, pass it along.
// This stops us from eating debugger breaks etc.
return EXCEPTION_CONTINUE_SEARCH;
}
FatalConditionHandler::FatalConditionHandler() {
isSet = true;
src/catch.hpp view on Meta::CPAN
auto makeStream( StringRef const &filename ) -> IStream const* {
if( filename.empty() )
return new detail::CoutStream();
else if( filename[0] == '%' ) {
if( filename == "%debug" )
return new detail::DebugOutStream();
else
CATCH_ERROR( "Unrecognised stream: '" << filename << "'" );
}
else
view all matches for this distribution
view release on metacpan or search on metacpan
patch/flex-2.6.4.diff view on Meta::CPAN
+" -f, --full generate fast, large scanner. Same as -Cfr\n"
+" -F, --fast use alternate table representation. Same as -CFr\n"
+" -Cem default compression (same as --ecs --meta-ecs)\n"
+"\n"
+"Debugging:\n"
+" -d, --debug enable debug mode in scanner\n"
+" -b, --backup write backing-up information to %s\n"
+" -p, --perf-report write performance report to stderr\n"
+" -s, --nodefault suppress default rule to ECHO unmatched text\n"
+" -T, --trace %s should run in trace mode\n"
+" -w, --nowarn do not generate warnings\n"
+" -v, --verbose write summary of scanner statistics to stdout\n"
+" --hex use hexadecimal numbers instead of octal in debug "
+"outputs\n"
+"\n"
+"Files:\n"
+" -o, --outfile=FILE specify output filename\n"
+" -S, --skel=FILE specify skeleton file\n"
patch/flex-2.6.4.diff view on Meta::CPAN
+" Теж Ñаме, Ñо -CFr\n"
+" -Cem ÑÑепÑÐ½Ñ ÑÑиÑÐ½ÐµÐ½Ð½Ñ Ð·Ð° замовÑÑваннÑм\n"
+" (Ñеж Ñаме, Ñо --ecs --meta-ecs)\n"
+"\n"
+"ÐалагодженнÑ:\n"
+" -d, --debug ÑвÑмкнÑÑи Ñежим Ð½Ð°Ð»Ð°Ð³Ð¾Ð´Ð¶ÐµÐ½Ð½Ñ ÑканеÑа\n"
+" -b, --backup запиÑаÑи ÑезеÑÐ²Ð½Ñ ÐºÐ¾Ð¿ÑÑ Ð´Ð¾ %s\n"
+" -p, --perf-report запиÑаÑи звÑÑ Ð¿Ñо пÑодÑкÑивнÑÑÑÑ Ð´Ð¾ stderr\n"
+" -s, --nodefault пÑипиниÑи вивÑд ÑекÑÑÑ (ECHO до stdout)\n"
+" Ñо не збÑгаÑÑÑÑÑ Ð· жодним пÑавилом\n"
+" -T, --trace %s повинен запÑÑкаÑиÑÑ Ñ ÑÐµÐ¶Ð¸Ð¼Ñ ÑÑаÑÑваннÑ\n"
patch/flex-2.6.4.diff view on Meta::CPAN
+ "yyget_column",
"yyget_lineno",
"yyget_lloc",
"yyget_lval",
@@ -670,6 +671,7 @@ void flexend (int exit_status)
"yyset_debug",
"yyset_extra",
"yyset_in",
+ "yyset_column",
"yyset_lineno",
"yyset_lloc",
patch/flex-2.6.4.diff view on Meta::CPAN
+ ./$(DEPDIR)/cxx_basic.Po \
+ ./$(DEPDIR)/cxx_multiple_scanners_1.Po \
+ ./$(DEPDIR)/cxx_multiple_scanners_2.Po \
+ ./$(DEPDIR)/cxx_multiple_scanners_main.Po \
+ ./$(DEPDIR)/cxx_restart.Po ./$(DEPDIR)/cxx_yywrap.Po \
+ ./$(DEPDIR)/debug_nr.Po ./$(DEPDIR)/debug_r.Po \
+ ./$(DEPDIR)/extended.Po ./$(DEPDIR)/header_nr_main.Po \
+ ./$(DEPDIR)/header_nr_scanner.Po ./$(DEPDIR)/header_r_main.Po \
+ ./$(DEPDIR)/header_r_scanner.Po \
+ ./$(DEPDIR)/include_by_buffer.direct.Po \
+ ./$(DEPDIR)/include_by_push.direct.Po \
patch/flex-2.6.4.diff view on Meta::CPAN
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cxx_multiple_scanners_1.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cxx_multiple_scanners_2.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cxx_multiple_scanners_main.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cxx_restart.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cxx_yywrap.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/debug_nr.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/debug_r.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/extended.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/header_nr_main.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/header_nr_scanner.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/header_r_main.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/header_r_scanner.Po@am__quote@
patch/flex-2.6.4.diff view on Meta::CPAN
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cxx_multiple_scanners_1.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cxx_multiple_scanners_2.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cxx_multiple_scanners_main.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cxx_restart.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cxx_yywrap.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/debug_nr.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/debug_r.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/extended.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/header_nr_main.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/header_nr_scanner.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/header_r_main.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/header_r_scanner.Po@am__quote@ # am--include-marker
patch/flex-2.6.4.diff view on Meta::CPAN
+ -rm -f ./$(DEPDIR)/cxx_multiple_scanners_1.Po
+ -rm -f ./$(DEPDIR)/cxx_multiple_scanners_2.Po
+ -rm -f ./$(DEPDIR)/cxx_multiple_scanners_main.Po
+ -rm -f ./$(DEPDIR)/cxx_restart.Po
+ -rm -f ./$(DEPDIR)/cxx_yywrap.Po
+ -rm -f ./$(DEPDIR)/debug_nr.Po
+ -rm -f ./$(DEPDIR)/debug_r.Po
+ -rm -f ./$(DEPDIR)/extended.Po
+ -rm -f ./$(DEPDIR)/header_nr_main.Po
+ -rm -f ./$(DEPDIR)/header_nr_scanner.Po
+ -rm -f ./$(DEPDIR)/header_r_main.Po
+ -rm -f ./$(DEPDIR)/header_r_scanner.Po
patch/flex-2.6.4.diff view on Meta::CPAN
+ -rm -f ./$(DEPDIR)/cxx_multiple_scanners_1.Po
+ -rm -f ./$(DEPDIR)/cxx_multiple_scanners_2.Po
+ -rm -f ./$(DEPDIR)/cxx_multiple_scanners_main.Po
+ -rm -f ./$(DEPDIR)/cxx_restart.Po
+ -rm -f ./$(DEPDIR)/cxx_yywrap.Po
+ -rm -f ./$(DEPDIR)/debug_nr.Po
+ -rm -f ./$(DEPDIR)/debug_r.Po
+ -rm -f ./$(DEPDIR)/extended.Po
+ -rm -f ./$(DEPDIR)/header_nr_main.Po
+ -rm -f ./$(DEPDIR)/header_nr_scanner.Po
+ -rm -f ./$(DEPDIR)/header_r_main.Po
+ -rm -f ./$(DEPDIR)/header_r_scanner.Po
view all matches for this distribution
view release on metacpan or search on metacpan
4. Combined Works.
You may convey a Combined Work under terms of your choice that,
taken together, effectively do not restrict modification of the
portions of the Library contained in the Combined Work and reverse
engineering for debugging such modifications, if you also do each of
the following:
a) Give prominent notice with each copy of the Combined Work that
the Library is used in it and that the Library and its use are
covered by this License.
view all matches for this distribution
view release on metacpan or search on metacpan
4. Combined Works.
You may convey a Combined Work under terms of your choice that,
taken together, effectively do not restrict modification of the
portions of the Library contained in the Combined Work and reverse
engineering for debugging such modifications, if you also do each of
the following:
a) Give prominent notice with each copy of the Combined Work that
the Library is used in it and that the Library and its use are
covered by this License.
view all matches for this distribution
view release on metacpan or search on metacpan
4. Combined Works.
You may convey a Combined Work under terms of your choice that,
taken together, effectively do not restrict modification of the
portions of the Library contained in the Combined Work and reverse
engineering for debugging such modifications, if you also do each of
the following:
a) Give prominent notice with each copy of the Combined Work that
the Library is used in it and that the Library and its use are
covered by this License.
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Alien/libdwarf.pm view on Meta::CPAN
our $VERSION = "20200114.1";
=head1 NAME
Alien::libdwarf - [deprecated] DWARF debugging information
=cut
=head1 DESCRIPTION
view all matches for this distribution
view release on metacpan or search on metacpan
src/panda/log.h view on Meta::CPAN
#define panda_log_m(module, level, msg) panda_elog_m(module, level, { log << msg; })
#define panda_elog(level, code) panda_elog_m(*panda_log_module, level, code)
#define panda_log(level, msg) panda_log_m (*panda_log_module, level, msg)
#define panda_log_verbose_debug(msg) panda_log(panda::log::VerboseDebug, msg)
#define panda_log_debug(msg) panda_log(panda::log::Debug, msg)
#define panda_log_info(msg) panda_log(panda::log::Info, msg)
#define panda_log_notice(msg) panda_log(panda::log::Notice, msg)
#define panda_log_warn(msg) panda_log(panda::log::Warning, msg)
#define panda_log_error(msg) panda_log(panda::log::Error, msg)
#define panda_log_critical(msg) panda_log(panda::log::Critical, msg)
#define panda_log_alert(msg) panda_log(panda::log::Alert, msg)
#define panda_log_emergency(msg) panda_log(panda::log::Emergency, msg)
#define panda_elog_verbose_debug(code) panda_elog(panda::log::VerboseDebug, code)
#define panda_elog_debug(code) panda_elog(panda::log::Debug, code)
#define panda_elog_info(code) panda_elog(panda::log::Info, code)
#define panda_elog_notice(code) panda_elog(panda::log::Notice, code)
#define panda_elog_warn(code) panda_elog(panda::log::Warning, code)
#define panda_elog_error(code) panda_elog(panda::log::Error, code)
#define panda_elog_critical(code) panda_elog(panda::log::Critical, code)
#define panda_elog_alert(code) panda_elog(panda::log::Alert, code)
#define panda_elog_emergency(code) panda_elog(panda::log::Emergency, code)
#define panda_debug_v(var) panda_log(panda::log::Debug, #var << " = " << (var))
#define PANDA_ASSERT(var, msg) if(!(auto assert_value = var)) { panda_log_emergency("assert failed: " << #var << " is " << assert_value << msg) }
enum Level {
VerboseDebug = 0,
view all matches for this distribution
view release on metacpan or search on metacpan
libsecp256k1/CMakeLists.txt view on Meta::CPAN
set(print_msan_notice YES)
endif()
unset(msan_enabled)
endif()
set(SECP256K1_APPEND_CFLAGS "" CACHE STRING "Compiler flags that are appended to the command line after all other flags added by the build system. This variable is intended for debugging and special builds.")
if(SECP256K1_APPEND_CFLAGS)
# Appending to this low-level rule variable is the only way to
# guarantee that the flags appear at the end of the command line.
string(APPEND CMAKE_C_COMPILE_OBJECT " ${SECP256K1_APPEND_CFLAGS}")
endif()
set(SECP256K1_APPEND_LDFLAGS "" CACHE STRING "Linker flags that are appended to the command line after all other flags added by the build system. This variable is intended for debugging and special builds.")
if(SECP256K1_APPEND_LDFLAGS)
# Appending to this low-level rule variable is the only way to
# guarantee that the flags appear at the end of the command line.
string(APPEND CMAKE_C_CREATE_SHARED_LIBRARY " ${SECP256K1_APPEND_LDFLAGS}")
string(APPEND CMAKE_C_LINK_EXECUTABLE " ${SECP256K1_APPEND_LDFLAGS}")
view all matches for this distribution