Compile-time errors using Dub/DMD - missing dependencies

weaselcat via Digitalmars-d digitalmars-d at puremagic.com
Wed Apr 1 18:38:56 PDT 2015


On Thursday, 2 April 2015 at 01:32:43 UTC, Cassandra Nix wrote:
> New questions are sorry, but I have a few minor problems. Where
> can I find / install these dependencies?
>
> /usr/bin/ld: cannot find -levent
> /usr/bin/ld: cannot find -levent_pthreads
> /usr/bin/ld: cannot find -lssl
> /usr/bin/ld: cannot find -lcrypto

They're unhandled C dependencies, but very common ones so I'm 
surprised you don't have them(at least, the last two.)

If you're on linux,
event and event_pthreads would be in the libevent package for 
your distro - on debian/ubuntu it's libevent-dev
ssl and crypto would be in libssl-dev

If you're not on a debian-based distro just search your package 
manager for similar packages.


More information about the Digitalmars-d mailing list