search for: ddebug

Displaying 20 results from an estimated 126 matches for "ddebug".

Did you mean: debug
2013 Sep 14
3
PATCH: x86-64 support and SSE intrinscis code
Erik de Castro Lopo wrote: > When should FLAC__HAS_X86INTRIN be defined? What header file should I be > checking for? Ah, should be checking for <x86intrin.h>. The rest seems to be coming together. Testing this now. Erik -- ---------------------------------------------------------------------- Erik de Castro Lopo http://www.mega-nerd.com/
2010 Mar 04
2
recompiling syslinux 4.00pre31
Hello, I try to recompile syslinux-4.00 pre31 on RHEL5 with gcc-4.1.2 and nasm 2.07. Because I'm looking for information about that gpxelinux->chain.c32 hd0 boot problem I added -DDEBUG=2 to com32/lib/Makefile I get: objdump -h pxelinux.elf > pxelinux.sec perl lstadjust.pl pxelinux.lsr pxelinux.sec pxelinux.lst objcopy -O binary pxelinux.elf pxelinux.raw ../lzo/prepcore pxelinux.raw pxelinux.bin ../lzo/prepcore: pxelinux.raw: output too big (29120, max 0) make[1]: *** [pxelinu...
2015 Apr 14
2
debugging pxelinux
...Apr 14, 2015 at 03:20:08PM -0400, Gene Cumm wrote: > > I thought I would try to find out how pxelinux copes with this, by trying > > to insert printfs in pxe_init, but nothing gets printed. > > This is normal. Can you give me hint as to why setting > > DEBUGOPT = -DDEBUG=1 -DDEBUG_STDIO -DCORE_DEBUG=1 changes that state of normality? (AFAICT dprintf.h defines dprintf to printf, so why wouldn't using printf directly work? printf.o gets built regardless of DEBUG settings AFAICT.) > > From looking at com32/include/dprintf.h, it looks as though all this doe...
2004 Sep 10
1
patches for flac build
...> settings > will come later on the command line and override the defaults. OK, I checked in a fix... does this snippet look alright? SAVE_CFLAGS="$CFLAGS" CFLAGS='-I./include -I $(top_srcdir)/include -Wall -W' if test x$debug = xtrue; then CFLAGS="$CFLAGS -g -O0 -DDEBUG" else CFLAGS="$CFLAGS -O3 -DNDEBUG" if test x$GCC = xyes; then CFLAGS="$CFLAGS -fomit-frame-pointer -funroll-loops \ -finline-functions -Winline -DFLAC__INLINE=__inline__" fi fi CFLAGS="$CFLAGS $SAVE_CFLAGS" __________________________...
2005 Oct 12
1
compile error
...ffer in signedness acpi_gen.c:56: warning: incompatible implicit declaration of built-in function â exitâ ./acpigen acpi.bin make[4]: Leaving directory `/setup/xen/xen-unstable/tools/firmware/acpi'' make[4]: Entering directory `/setup/xen/xen-unstable/tools/firmware/vmxassist'' gcc -DDEBUG -DTEXTADDR=0x000D0000 -I. -I../../../tools/libxc -Wall -fno-builtin -O2 -msoft-float -m32 -march=i686 -D__ASSEMBLY__ -DDEBUG -DTEXTADDR=0x000D0000 - c head.S gcc -DDEBUG -DTEXTADDR=0x000D0000 -I. -I../../../tools/libxc -Wall -fno-builtin -O2 -msoft-float -m32 -march=i686 -o gen gen.c /usr/lib64/gcc...
2005 Oct 12
1
compile error
...ffer in signedness acpi_gen.c:56: warning: incompatible implicit declaration of built-in function â exitâ ./acpigen acpi.bin make[4]: Leaving directory `/setup/xen/xen-unstable/tools/firmware/acpi'' make[4]: Entering directory `/setup/xen/xen-unstable/tools/firmware/vmxassist'' gcc -DDEBUG -DTEXTADDR=0x000D0000 -I. -I../../../tools/libxc -Wall -fno-builtin -O2 -msoft-float -m32 -march=i686 -D__ASSEMBLY__ -DDEBUG -DTEXTADDR=0x000D0000 - c head.S gcc -DDEBUG -DTEXTADDR=0x000D0000 -I. -I../../../tools/libxc -Wall -fno-builtin -O2 -msoft-float -m32 -march=i686 -o gen gen.c /usr/lib64/gcc...
2018 Jun 30
4
Determine reason for failure at -O1
Hi Everyone, We caught a report for a failed self test when using Clang 5.0 and 6.0 with -DDEBUG and -O1 (i.e., a "debug build"). The code is question is located at https://github.com/weidai11/cryptopp/blob/master/cham-simd.cpp . It is the SSSE3 code path for CHAM64. Other optimizations levels are OK for Clang. GCC, ICC and MSVC are OK. The code is valgrind, Sanitizer, Coverity and...
2015 Apr 14
2
debugging pxelinux
...boot trouble has three instances of "!PXE" in the chunk of memory that "Method D" should look at. I thought I would try to find out how pxelinux copes with this, by trying to insert printfs in pxe_init, but nothing gets printed. I can spew lots of output if I set DEBUGOPT = -DDEBUG=1 -DDEBUG_STDIO -DCORE_DEBUG=1 but given that this box doesn't have a serial port, anything I add will whizz off the screen. >From looking at com32/include/dprintf.h, it looks as though all this does is to define dprintf to printf, so why is it that if don't define DEBUG_STDIO and CORE...
2014 Nov 27
3
[PATCH] configure.ac: don't try to unset -g from CFLAGS
...o at zacarias.com.ar> --- configure.ac | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index 3d647ed..94d7c9e 100644 --- a/configure.ac +++ b/configure.ac @@ -348,11 +348,10 @@ fi if test "x$debug" = xtrue; then CPPFLAGS="-DDEBUG $CPPFLAGS" - CFLAGS=$(echo "$CFLAGS" | sed 's/-g//') - CFLAGS="-g $CFLAGS" + CFLAGS=$(echo "-g $CFLAGS") else CPPFLAGS="-DNDEBUG $CPPFLAGS" - CFLAGS=$(echo "$CFLAGS" | sed 's/-O2//;s/-g//') + CFLAGS=$(echo "$CFLAGS"...
2020 Jun 01
2
Debugging packages with compiled C code on Windows
I have several related questions. 1. Is it possible to use a GUI: Rstudio/Eclipse/Visual-studio to debug compiled code on Windows? Things that work on Eclipse for Windows do not work on Eclipse for Windows. 2. R CMD INSTALL seems to override default attempts to provide CFLAGS="-DDEBUG -g3 -O0" 3. Is it necessary to compile R with debug turned on? One of the FAQs mentioned to compile R with make DEBUG=T. 4. Using Rtools 4.0 and Jeroen's scripts for building R works great (many thanks). But does not seem to have an impact on optimization, other than including -gwarf-2...
2022 Dec 25
1
CentOS Stream 8 sssd.service failing part of sssd-common-2.8.1-1.el8.x86_64 baseos package
...file is not installed. If someone can also provide more details on this issue I would appreciate it. Thank you all in advance, Kind regards, Jelle de Jong # cat /var/log/dnf.log | grep sssd-common 2022-11-25T06:29:42+0100 DEBUG Upgraded: sssd-common-2.7.3-5.el8.x86_64 2022-11-25T06:29:42+0100 DDEBUG /var/cache/dnf/baseos-055ffcb2ec25a27f/packages/sssd-common-2.7.3-5.el8.x86_64.rpm removed 2022-11-26T06:08:38+0100 DEBUG Upgraded: sssd-common-2.7.3-5.0.1.el8.x86_64 2022-11-26T06:08:38+0100 DDEBUG /var/cache/dnf/baseos-055ffcb2ec25a27f/packages/sssd-common-2.7.3-5.0.1.el8.x86_64.rpm removed 2...
2012 Jul 29
1
Mesa build issue... is it just me?
..../../../../src/egl/main -I../../../../src/egl/drivers/dri -I/usr/local/include -I/usr/local/include/libdrm -g -O2 -Wall -std=c99 -Werror=implicit-function-declaration -Werror=missing-prototypes -fno-strict-aliasing -fno-builtin-memcmp -g -g -O2 -fPIC -D_GNU_SOURCE -DPTHREADS -DDEBUG -DTEXTURE_FLOAT_ENABLED -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING -DGLX_USE_TLS -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -fvisibility=hidden -DGALLIUM_RBUG -DGALLIUM_TRACE target.c -o target.o /bin/sh ../../../../bin...
2005 May 04
4
Yum Amavisd Update fails Digest::MD5 error
...t variable... LANG=en_US export LANG error... LANG=C export LANG error... LANG=en_US LANGVAR=en_US export LANG export LANGVAR perl ./Makefile.PL Perl's config says that U32 access must be aligned. Writing Makefile for Digest::MD5 make gcc -c -D_REENTRANT -D_GNU_SOURCE -DTHREADS_HAVE_PIDS -DDEBUGGING -fno-strict-aliasing -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/gdbm -O2 -g -pipe -march=i386 -mcpu=i686 -DVERSION=\"2.33\" -DXS_VERSION=\"2.33\" -fPIC "-I/usr/lib/perl5/5.8.0/i386-linux-thread-multi/CORE" -DU32_ALIGNMENT_REQU...
2011 Apr 21
1
Installing Search::xapian
...XS_Search__Xapian__WritableDatabase_allterms_end(PerlInterpreter*, CV*)': Xapian.c:1138: warning: 'RETVAL' may be used uninitialized in this function libtool: compile: g++ -c -I/localtemp/amit/rohit/FinalProj/xapian-core-1.2.5/include -D_REENTRANT -D_GNU_SOURCE -DPERL_USE_SAFE_PUTENV -DDEBUGGING -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/gdbm -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -DVERSION=\"1.2.5.0\" -DXS_VERSION=\"1.2.5.0\&quo...
2014 Nov 30
2
[PATCH] configure.ac: don't try to unset -g from CFLAGS
Jan Stary wrote: > > if test "x$debug" = xtrue; then > > CPPFLAGS="-DDEBUG $CPPFLAGS" > > - CFLAGS=$(echo "$CFLAGS" | sed 's/-g//') > > - CFLAGS="-g $CFLAGS" > > + CFLAGS=$(echo "-g $CFLAGS") > > Just zap the sed line, and leave > > CFLAGS="-g $CFLAGS" > > there; no need to echo a...
2006 Aug 07
1
3.0.2 hvmloader
Hello! I want to run windows in xen. My linux distrution in ubuntu 6.06 amd 64. I downloaded and installed xen 3.0.2 from binaries. I found that hvmloader is not included in binary distribution :-( So I try to compile it from sources. I get following error: cpp -P -DDEBUG -DTEXTADDR=0x000D0000 vmxassist.ld > vmxassist.tmp ld -o vmxassist -m elf_i386 -nostdlib --fatal-warnings -N -T vmxassist.tmp head.o trap.o vm86.o setup.o util.o nm -n vmxassist > vmxassist.sym objcopy -p -O binary -R .note -R .comment -R .bss -S --gap-fill=0 vmxassist vmxassist.tmp dd if=v...
2008 Feb 10
1
[nut-commits] svn commit r1296 - in trunk: . clients drivers server
...me of which seem to change the API somewhat: "-DNETSNMP_ENABLE_IPV6 -O2 -march=i586 -mtune=i686 -fmessage-length=0 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector -g -fno-strict-aliasing -fstack-protector-all -Ulinux -Dlinux=linux -I/usr/include/rpm -D_REENTRANT -D_GNU_SOURCE -DTHREADS_HAVE_PIDS -DDEBUGGING -fno-strict-aliasing -pipe -Wdeclaration-after-statement -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/lib/perl5/5.8.8/i586-linux-thread-multi/CORE -I. -I/usr/include" At any rate, things seem to be working. Thanks again. -- - Charles Lepple
2013 Jan 21
1
elflink issues
...1) pxechn.c32, prdhcp.c32 and other modules crash Syslinux and force a reboot by executing an unresolved symbols. unload_pxe(), dns_resolv() and pxe_call() are the three. "Error: An undefined symbol was referenced" 2) In past versions, I built a debug build by having "CFLAGS += -DDEBUG=1" in mk/local.mk but this fails. core/../com32/include/com32.h:144: undefined reference to `__bad_SEG'
2013 Jul 12
1
[PATCH 001/001] core/serial: Add support for serial output functions.
On Fri, Jul 12, 2013 at 2:21 AM, H. Peter Anvin <hpa at zytor.com> wrote: > On 07/11/2013 10:16 PM, Raphael S.Carvalho wrote: >> This patch adds support for serial output functions. >> It may be useful for debugging purposes since you can separate ordinary outputs from debugging dumps. >> Just add "serial.h", and use either serial_print or serial_puts as you
2004 Dec 17
3
ISOLINUX users - debugging on by default?
I'm considering the suggestion which was raised before about turning the debugging messages on by default in isolinux, or specifically, not building the non-debugging-messages version in the standard distribution. What do people think (especially distro maintainers?) -hpa