libatomic_ops provides implementations for atomic memory update operations on a number of architectures. This allows direct use of these in reasonably portable code. Unlike earlier similar packages, this one explicitly considers memory barrier semantics, and allows the construction of code that involves minimum overhead across a variety of architectures.
This package is known to build and work properly using an LFS-7.9 platform.
Download (HTTP): http://www.ivmaisoft.com/_bin/atomic_ops//libatomic_ops-7.4.2.tar.gz
Download MD5 sum: 1d6538604b314d2fccdf86915e5c0857
Download size: 456 KB
Estimated disk space required: 5.3 MB (additional 1.9 MB for tests)
Estimated build time: less than 0.1 SBU (additional less than 0.1 SBU for tests)
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/libatomic_ops
Install libatomic_ops by running the following commands:
sed -i 's#pkgdata#doc#' doc/Makefile.am && autoreconf -fi && ./configure --prefix=/usr \ --enable-shared \ --disable-static \ --docdir=/usr/share/doc/libatomic_ops-7.4.2 && make
To check the results, issue LD_LIBRARY_PATH=../src/.libs make check.
Now, as the root
user:
make install && mv -v /usr/share/libatomic_ops/* \ /usr/share/doc/libatomic_ops-7.4.2 && rm -vrf /usr/share/libatomic_ops
sed -i ...: This sed makes the docs to be installed in an appropriate directory.
autoreconf -fi: This
regenerates the configure script and the
Makefile.in
.
--enable-shared
: This
switch enables building of the libatomic_ops
shared libraries.
--disable-static
: This
switch prevents installation of static versions of the libraries.
Last updated on 2016-02-24 00:06:22 -0800