summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorIvan Maidanski <ivmai@mail.ru>2016-11-17 09:38:55 +0300
committerIvan Maidanski <ivmai@mail.ru>2016-11-17 09:38:55 +0300
commit8f5d2941a58d23523ffbe9b8770a7cf6d3e3ce4e (patch)
treea7233c756f14543ccd0db05a78f02d9208225464 /README.md
parent6e88a74f5a5ef41042ad036cc54945e2dfbfd81b (diff)
downloadbdwgc-8f5d2941a58d23523ffbe9b8770a7cf6d3e3ce4e.tar.gz
Update README to use autogen.sh on build from the source repository
* README.md (Installation and Portability): Replace autoreconf (and automake) invocation with autogen.sh one; pass -j option to make.
Diffstat (limited to 'README.md')
-rw-r--r--README.md7
1 files changed, 3 insertions, 4 deletions
diff --git a/README.md b/README.md
index 64198e98..6a3b2d70 100644
--- a/README.md
+++ b/README.md
@@ -182,15 +182,14 @@ libatomic_ops source repository as well) could look like:
git clone git://github.com/ivmai/bdwgc.git
cd bdwgc
git clone git://github.com/ivmai/libatomic_ops.git
- autoreconf -vif
- automake --add-missing
+ ./autogen.sh
./configure
- make
+ make -j
make check
If you are getting "syntax error near unexpected token ATOMIC_OPS" during
configure execution, this means pkg.m4 cannot be found, most probably
-you should run `pkg-config` once before autoreconf.
+you should run `pkg-config` once before running `./autogen.sh` (autoreconf).
Below we focus on the collector build using classic makefile.
For the Makefile.direct-based process, typing `make test` instead of `make`