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

Builds using 4 threads #2

Merged
merged 1 commit into from
Feb 16, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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