Preflight of DUB 0.9.21 (RC 3)

Etienne Cimon etcimon at gmail.com
Wed Feb 12 20:28:02 PST 2014


On Wednesday, 12 February 2014 at 15:40:27 UTC, Jordi Sayol wrote:
> El 12/02/14 09:53, Sönke Ludwig ha escrit:
>> The binaries can be found on http://code.dlang.org/download 
>> ("Latest preview").
>
> On Debian 7.4 64-bit:
>
> $ dub
> dub: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.14' not 
> found (required by dub)
>
>
> No problem on Debian 7.4 32-bit.

You'll find the version of >= GLIBC_2.14 in debian's experimental 
repo in aptitude.

$ sudo vim /etc/apt/sources.list

in this file you can append:

     deb http://ftp.debian.org/debian/ experimental main
     deb-src http://ftp.debian.org/debian/ experimental main

Then you can run
$ sudo apt-get -t experimental update && sudo apt-get -t 
experimental upgrade

You should receive glibc 2.18-* experimental which is >=2.14 i.e. 
compatible with dub 0.9.21

You should also install the most recent version of libevent with

$ sudo apt-cache search libevent-2*

which should return libevent-2.0-5, in which case you can run

$ sudo apt-get libevent-2.0-5 libevent-pthreads-2.0-5 libevent-dev

That should do :)


More information about the Digitalmars-d mailing list