Skip to content
This repository has been archived by the owner on May 19, 2023. It is now read-only.

Commit

Permalink
Merge pull request #2 from EduardoRFS/make-parallel
Browse files Browse the repository at this point in the history
Builds using 4 threads
  • Loading branch information
ManasJayanth authored Feb 16, 2020
2 parents 2a47392 + 2ac1af6 commit 2dda312
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ cmake:
mkdir -p $(BUILDDIR)
git clone https://github.com/kitware/cmake $(BUILDDIR)/cmake
cd $(BUILDDIR)/cmake; git checkout c4ab098
cd $(BUILDDIR)/cmake; ./bootstrap --prefix=$(PREFIX)
cd $(BUILDDIR)/cmake; make
cd $(BUILDDIR)/cmake; ./bootstrap --prefix=$(PREFIX) --parallel=4
cd $(BUILDDIR)/cmake; make -j4
cd $(BUILDDIR)/cmake; make install
4 changes: 2 additions & 2 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ echo Using prefix: $PREFIX
mkdir -p $BUILDDIR
git clone https://github.com/kitware/cmake $BUILDDIR/cmake
cd $BUILDDIR/cmake; git checkout 7700df9b1ef66761cad08cfc08344d5b27660e9f
cd $BUILDDIR/cmake; ./bootstrap --prefix=$PREFIX
cd $BUILDDIR/cmake; make
cd $BUILDDIR/cmake; ./bootstrap --prefix=$PREFIX --parallel=4
cd $BUILDDIR/cmake; make -j4
cd $BUILDDIR/cmake; make install

0 comments on commit 2dda312

Please sign in to comment.