www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.learn - Installing 32 bit libcurl.so.4 on Ubuntu

reply Walter Bright <newshound2 digitalmars.com> writes:
Anyone know how?

     sudo apt-get install curl

doesn't do it.
Apr 08 2014
next sibling parent Jacob Carlborg <doob me.com> writes:
On 09/04/14 05:31, Walter Bright wrote:
 Anyone know how?

      sudo apt-get install curl

 doesn't do it.
Are you referring to how to install it on a 64bit machine? In that case you need "gcc-multilib" and "ia32-libs". I'm not 100% sure it's included, but I think so. If you're on a 32bit machine you probably need to install a development package. Perhaps libcurl4-gnutls-dev or libcurl4-openssl-dev. -- /Jacob Carlborg
Apr 08 2014
prev sibling next sibling parent Jordi Sayol <g.sayol yahoo.es> writes:
El 09/04/14 05:31, Walter Bright ha escrit:
 Anyone know how?
 
     sudo apt-get install curl
 
 doesn't do it.
 
curl runtime library: sudo apt-get install libcurl3 curl development library: sudo apt-get install libcurl4-openssl-dev Regards, -- Jordi Sayol
Apr 09 2014
prev sibling next sibling parent Jordi Sayol <g.sayol yahoo.es> writes:
El 09/04/14 05:31, Walter Bright ha escrit:
 Anyone know how?
 
     sudo apt-get install curl
 
 doesn't do it.
 
curl runtime library: sudo apt-get install libcurl3 curl development library: sudo apt-get install libcurl4-openssl-dev 32-bit libcurl4-openssl-dev on 64-bit system: sudo apt-get install libcurl3:i386 "libcurl4-openssl-dev" 32-bit is not installable on 64-bit system due to dependencies. Regards, -- Jordi Sayol
Apr 09 2014
prev sibling parent reply Jordi Sayol <g.sayol yahoo.es> writes:
El 09/04/14 09:46, Jordi Sayol ha escrit:
[...]
 32-bit libcurl4-openssl-dev on 64-bit system:
 
 	sudo apt-get install libcurl3:i386
[...] typo, it should be: 32-bit libcurl3 library on 64-bit system: sudo apt-get install libcurl3:i386 -- Jordi Sayol
Apr 09 2014
parent hanifnoor <hanifnoor0022 gmail.com> writes:
I'm not 100% sure it's included, but I think so.


__________
NOOR
Feb 14 2016