Re: i386 packages? - Android Studio - "libc6:i386 libncurses5:i386 libstdc++6:i386 lib32z1 libbz2-1.0:i386"

2020-07-06 Thread Andrei POPESCU
On Lu, 06 iul 20, 07:58:14, The Wanderer wrote: > > Have you enabled the i386 architecture? > > Try 'dpkg --add-architecture i386' (as root or via sudo, of > course), ... followed by 'apt update' ;) > and see if that changes anything. Kind regards, Andrei -- http://wiki.debian.org/FAQsFromDe

Re: i386 packages? - Android Studio - "libc6:i386 libncurses5:i386 libstdc++6:i386 lib32z1 libbz2-1.0:i386"

2020-07-06 Thread Zenaan Harkness
> Have you read and followed these instructions? > https://wiki.debian.org/Multiarch/HOWTO Thanks guys, that's what I needed..

Re: i386 packages? - Android Studio - "libc6:i386 libncurses5:i386 libstdc++6:i386 lib32z1 libbz2-1.0:i386"

2020-07-06 Thread Roberto C . Sánchez
On Mon, Jul 06, 2020 at 09:52:58PM +1000, Zenaan Harkness wrote: > This page https://developer.android.com/studio/install#linux says for Ubuntu > that the Android Studio dependencies are: > > libc6:i386 libncurses5:i386 libstdc++6:i386 lib32z1 libbz2-1.0:i386 > > which on sid

Re: i386 packages? - Android Studio - "libc6:i386 libncurses5:i386 libstdc++6:i386 lib32z1 libbz2-1.0:i386"

2020-07-06 Thread The Wanderer
On 2020-07-06 at 07:52, Zenaan Harkness wrote: > This page https://developer.android.com/studio/install#linux says for Ubuntu > that the Android Studio dependencies are: > > libc6:i386 libncurses5:i386 libstdc++6:i386 lib32z1 libbz2-1.0:i386 > > which on sid gives: >

i386 packages? - Android Studio - "libc6:i386 libncurses5:i386 libstdc++6:i386 lib32z1 libbz2-1.0:i386"

2020-07-06 Thread Zenaan Harkness
This page https://developer.android.com/studio/install#linux says for Ubuntu that the Android Studio dependencies are: libc6:i386 libncurses5:i386 libstdc++6:i386 lib32z1 libbz2-1.0:i386 which on sid gives: # apt install libc6:i386 libncurses5:i386 libstdc++6:i386 lib32z1 libbz2-1.0:i386

Re: How to use -dbg packages (and specifically libncurses5-dbg) ?

2010-09-15 Thread Frédéric Boiteux
Le 15/09/2010 14:56, Frédéric Boiteux a écrit : > Le 15/09/2010 14:52, Sven Joachim a écrit : > >> You have to use it before you start your program, e.g. >> >> $ env LD_LIBRARY_PATH=/usr/lib/debug gdb ecran >> >> Specifying it at link time would also be possible, e.g. by linking with >> "-rpath=

Re: How to use -dbg packages (and specifically libncurses5-dbg) ?

2010-09-15 Thread Frédéric Boiteux
Le 15/09/2010 14:52, Sven Joachim a écrit : > You have to use it before you start your program, e.g. > > $ env LD_LIBRARY_PATH=/usr/lib/debug gdb ecran > > Specifying it at link time would also be possible, e.g. by linking with > "-rpath=/usr/lib/debug", but don't do this for binaries that you give

Re: How to use -dbg packages (and specifically libncurses5-dbg) ?

2010-09-15 Thread Sven Joachim
On 2010-09-15 14:17 +0200, Frédéric Boiteux wrote: > I've tried : > > env LD_LIBRARY_PATH=/usr/lib/debug gdb ecran core.ecran I'm afraid this cannot work because the crashed process that left the core file around had used the non-debug version of the library for which no symbols are available any

Re: How to use -dbg packages (and specifically libncurses5-dbg) ?

2010-09-15 Thread Frédéric Boiteux
Le 15/09/2010 13:55, Sven Joachim a écrit : > On 2010-09-15 12:23 +0200, Frédéric Boiteux wrote: > > >> I'm trying to debug an own C program which dumps a core, inside >> libncurses5 library. >> I'd like to use gdb to debug my program, and so I've

Re: How to use -dbg packages (and specifically libncurses5-dbg) ?

2010-09-15 Thread Timo Juhani Lindfors
Sven Joachim writes: >> Or is there something I forgot ? > > Not really, the problem is that libncurses5-dbg ships a special debug > version of the library and no detached debugging symbols, unlike other > -dbg packages. This is fixed in Squeeze, though. Ah, that explains wh

Re: How to use -dbg packages (and specifically libncurses5-dbg) ?

2010-09-15 Thread Frédéric Boiteux
r /lib64/ld-linux-x86-64.so.2 (no debugging symbols found) 0x7fe6fa4819e0 in __read_nocancel () from /lib/libc.so.6 (gdb) And I checked that I really have the -dbg packages : > env COLUMNS=120 dpkg -l |grep curses ii lib32ncurses55.7+20081213-1 shared libraries for ter

Re: How to use -dbg packages (and specifically libncurses5-dbg) ?

2010-09-15 Thread Sven Joachim
On 2010-09-15 12:52 +0200, Timo Juhani Lindfors wrote: > Frédéric Boiteux writes: >> Does I have to redo the compilation before to test my program with >> libncurses5-dbg debug library ? > > No. libncurses5-dbg is not a library, it does not even contain > code. T

Re: How to use -dbg packages (and specifically libncurses5-dbg) ?

2010-09-15 Thread Sven Joachim
On 2010-09-15 12:23 +0200, Frédéric Boiteux wrote: > I'm trying to debug an own C program which dumps a core, inside libncurses5 > library. > I'd like to use gdb to debug my program, and so I've installed -dbg packages : > libc6-dbg, libncurses5-dbg, libstdc++-6

Re: How to use -dbg packages (and specifically libncurses5-dbg) ?

2010-09-15 Thread Timo Juhani Lindfors
Frédéric Boiteux writes: > It's what I would like to have, but in my gdb session, the symbols / > data aren't available. When you start your gdb, do you have some info > about gdb loading libncurses5 debugging symbols ? (gdb) shell pidof nano 23506 (gdb) attach 23506 Attachi

Re: How to use -dbg packages (and specifically libncurses5-dbg) ?

2010-09-15 Thread Frédéric Boiteux
Hello Timo, Le 15/09/2010 12:52, Timo Juhani Lindfors a écrit : > Frédéric Boiteux writes: > >> Does I have to redo the compilation before to test my program with >> libncurses5-dbg debug library ? >> > No. libncurses5-dbg is not a library, it does not e

Re: How to use -dbg packages (and specifically libncurses5-dbg) ?

2010-09-15 Thread Timo Juhani Lindfors
Frédéric Boiteux writes: > Does I have to redo the compilation before to test my program with > libncurses5-dbg debug library ? No. libncurses5-dbg is not a library, it does not even contain code. It only contains the debugging symbols that were removed from libncurses5. At least the fol

How to use -dbg packages (and specifically libncurses5-dbg) ?

2010-09-15 Thread Frédéric Boiteux
Hello, I'm trying to debug an own C program which dumps a core, inside libncurses5 library. I'd like to use gdb to debug my program, and so I've installed -dbg packages : libc6-dbg, libncurses5-dbg, libstdc++-6.4.3-dbg (on a Debian Lenny system), but if the libc6

Re: Unable to install libncurses5-dev

2009-12-06 Thread Sven Joachim
On 2009-12-06 11:16 +0100, Tzafrir Cohen wrote: > On Sun, Dec 06, 2009 at 01:18:23PM +0530, ravindra vejandla wrote: >> 2>now I am trying to download libncurses5-dev > > It's now libncurses6-dev . Nonsense, there is no libncurses6 in Debian. Sven -- To UNSUBSCRIBE, em

Re: Unable to install libncurses5-dev

2009-12-06 Thread Tzafrir Cohen
On Sun, Dec 06, 2009 at 01:18:23PM +0530, ravindra vejandla wrote: > Hi Veterans, > > I am trying to upgrade my debian kernel > 1> First I downloaded gcc aptitude install build-essential > 2>now I am trying to download libncurses5-dev It's now libncurses6-dev

Unable to install libncurses5-dev

2009-12-06 Thread ravindra vejandla
Hi Veterans, I am trying to upgrade my debian kernel 1> First I downloaded gcc 2>now I am trying to download libncurses5-dev death:/usr/src/linux-2.6.31.6# apt-get install libncurses5-dev Reading package lists... Done Building dependency tree Reading state information... Done E: Couldn&

Re: Unable to install libncurses5-dev

2005-07-10 Thread Abdul Taha
nly recently installed debian in my laptop using the 2.4.27 kernel. Sorry my mistake with the reply-to. Yes tried to get install on its own and still got that unmet dependencies issue. #apt-get install libncurses5-dev "The following packages have unmet dependencies: libncurses5-dev: De

Re: Unable to install libncurses5-dev

2005-07-09 Thread Robert Vangel
anually. Only recently installed debian in my laptop using the 2.4.27 kernel. #dpkg -l libncurses5 What version? #apt-get install libncurses5-dev (as opposed to ncurses-dev) Results? Can you download libncurses5 & libncurses5-dev deb's and install them manually? smime.p7s Description: S/MIME Cryptographic Signature

Re: Unable to install libncurses5-dev

2005-07-09 Thread Robert Vangel
Hugo Vanwoerkom wrote: Abdul Taha wrote: Hi Everyone, [snip] The following packages have unmet dependencies: libncurses5-dev: Depends: libncurses5 (= 5.4-4) but 5.4-8 is to be installed E: Broken packages I'm on kernel version 2.4.27-2-686. I would appreciate any suggestions.

Re: Unable to install libncurses5-dev

2005-07-09 Thread Hugo Vanwoerkom
Abdul Taha wrote: Hi Everyone, I'm trying to install 'libncurses5-dev' as a prerequisite for using make menuconfig, which I'm doing to enable usb mouse support. However the install fails due to unmet dependencies I'm not certain how to resolve: # apt-get install k

Unable to install libncurses5-dev

2005-07-09 Thread Abdul Taha
Hi Everyone, I'm trying to install 'libncurses5-dev' as a prerequisite for using make menuconfig, which I'm doing to enable usb mouse support. However the install fails due to unmet dependencies I'm not certain how to resolve: # apt-get install kernel-package ncu

Re: libncurses5

2003-09-16 Thread Oki DZ
I believe that it is the libncurses-dev that caused problems, because the update hung when apt-get was trying to configure things. bdg:/var/lib/dpkg# dpkg -l | grep libncurses ii libncurses44.2-10 Shared libraries for terminal handling ii libncurses55.3.20030719-2 Shared

libncurses5

2003-09-16 Thread Oki DZ
Hi, I recently installed w3m, then apt-get retrieved libncurses5* and some other files; after configuring, my system complained something wrong about "ELF header". In short, bash would no longer work, so did the system. (Fortunately, I have a copy of the filesystems in a partition, so

Problems on libncurses5-dev sid

2002-04-06 Thread HostMaster of NullZone
Upgrading a 'sid' distribution from last week i get always same problem: Unpacking replacement libncurses5-dev ... dpkg: error processing /var/cache/apt/archives/libncurses5-dev_5.2.20020112a-7_i386.deb (--unpack): unable to stat `./usr/share/man/man3/menu_request_name.3menu.gz'

Re: Debian Packaging System and libncurses5-dev

2001-01-11 Thread Colin Watson
Benjamin Pharr <[EMAIL PROTECTED]> wrote: >I needed to install libncurses5-dev, but it wasn't on the CD and my NIC >still isn't working in Linux. (It's a NetGear FA311 if anyone has >experience with it.) I switched into Win98, downloaded it, and went back >in

Debian Packaging System and libncurses5-dev

2001-01-10 Thread Benjamin Pharr
I needed to install libncurses5-dev, but it wasn't on the CD and my NIC still isn't working in Linux. (It's a NetGear FA311 if anyone has experience with it.) I switched into Win98, downloaded it, and went back into Linux. I copied the .deb file into /root/ and ran dpkg -A