this one works better with parallel builds...
#!/usr/bin/make -f
# -*- makefile -*-
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
export CPPFLAGS=$(shell dpkg-buildflags --get CPPFLAGS)
export CFLAGS=$(shell dpkg-buildflags --get CFLAGS)
export CXXFLAGS=$(shell dpkg-buildflags --
Try this debian/rules file.
#!/usr/bin/make -f
# -*- makefile -*-
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
export CPPFLAGS=$(shell dpkg-buildflags --get CPPFLAGS)
export CFLAGS=$(shell dpkg-buildflags --get CFLAGS)
export CXXFLAGS=$(shell dpkg-buildflags --get CXXFLAGS)
exp
Could there be a #define _IO_stdin_used somewhere further up?
I am not sure if gdb sees those, so it may output a different symbol
from what the program sees.
--
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.d
But...
How is the operator precedence?
is it
if (&(_IO_stdin_used == NULL))
or
if ((&_IO_stdin_used) == NULL)
IMHO It should be the latter...
can you do a
p (&_IO_stdin_used == NULL)
and
p ((&_IO_stdin_used) == NULL)
in your gdb session?
Bye,
JK
--
To UNSUBSCRIBE, email to debian-bug
4 matches
Mail list logo