You are not logged in.
Hi!
I'm new to ArchLinux and I'm coming from Debian.
On Debian, I was used to get the development files simply with the command apt-get install <mypackage>-dev
Is there an equivalent of this on ArchLinux?
Thanks!
Last edited by Creak (2013-10-24 13:26:25)
Offline
Yes, the Arch Build System (ABS)
Nothing is too wonderful to be true, if it be consistent with the laws of nature -- Michael Faraday
Sometimes it is the people no one can imagine anything of who do the things no one can imagine. -- Alan Turing
---
How to Ask Questions the Smart Way
Offline
What exactly are you trying to do?
Arch has few foo-devel packages in the repos.
Offline
Thanks ewaller, I'll dig into that.
@karol, I'm trying to make an project of mine that I was compiling on Debian. It depends on stuff like gtkmm, pthreads, libxml2, etc...
Offline
What Debian splits out into the -dev packages is already included in the regular packages in Arch.
edit, for the record, the -dev package include things like headers, pkgconfig files, etc.
Last edited by Scimmia (2013-10-24 05:47:41)
Offline
Have you tried using the regular arch packages?
I don't know where pthreads are. I have
/usr/lib/libevent_pthreads-2.0.so.5
/usr/lib/libevent_pthreads-2.0.so.5.1.9
/usr/lib/libevent_pthreads.a
/usr/lib/libevent_pthreads.so
/usr/lib/pkgconfig/libevent_pthreads.pc
which belong to the libevent package.
Last edited by karol (2013-10-24 06:05:31)
Offline
pthread is part of glibc.
Offline
I thought header files weren't included because I couldn't find them in Anjuta, but in fact I was missing the base-devel group (I think more specifically of pkg-config)
Last edited by Creak (2013-10-24 06:17:54)
Offline
Much great reading can be done in the bookshelves of /usr/include/
Also, pkgfile is handy - example:
$ pkgfile pthread.h
core/glibc
extra/nacl-toolchain-newlib
community/arm-wince-cegcc-newlib
community/dietlibc
community/gauche
community/mingw32-pthreads
$ pkgfile /usr/include/pthread.h
core/glibc
"UNIX is simple and coherent" - Dennis Ritchie; "GNU's Not Unix" - Richard Stallman
Offline