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.
Download (HTTP): http://www.hpl.hp.com/research/linux/atomic_ops/download/libatomic_ops-1.2.tar.gz
Download MD5 sum: 1b65e48271c81e3fa2d7a9a69bab7504
Download size: 184 KB
Estimated disk space required: 1.4 MB
Estimated build time: less than 0.1 SBU
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/libatomic_ops
Install libatomic_ops by running the following commands:
sed -i \ 's|datadir)/@PACKAGE@|datadir)/doc/@PACKAGE@/@PACKAGE_VERSION@|' \ doc/Makefile.in && ./configure --prefix=/usr && make
To check the results, issue make check.
Now, as the root
user:
make install
sed -i ... doc/Makefile.in: This command forces the documentation to be installed in a versioned directory.
Last updated on 2010-11-09 02:16:04 +0000