Skip to content

Commit

Permalink
revert nproc in README since this command doesn't exit on Mac.
Browse files Browse the repository at this point in the history
  • Loading branch information
sfchen committed May 13, 2023
1 parent db38e73 commit 90bc9fa
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ git clone https://github.com/intel/isa-l.git
cd isa-l
./autogen.sh
./configure --prefix=/usr --libdir=/usr/lib64
make -j $(nproc)
make
sudo make install
```

Expand All @@ -129,7 +129,7 @@ See https://github.com/ebiggers/libdeflate
git clone https://github.com/ebiggers/libdeflate.git
cd libdeflate
cmake -B build
cmake --build build -j $(nproc)
cmake --build build
cmake --install build
```

Expand All @@ -140,11 +140,12 @@ git clone https://github.com/OpenGene/fastp.git

# build
cd fastp
make -j $(nproc)
make

# Install
sudo make install
```
You can add `-j8` option to `make/cmake` to use 8 threads for the compilation.

# input and output
`fastp` supports both single-end (SE) and paired-end (PE) input/output.
Expand Down

0 comments on commit 90bc9fa

Please sign in to comment.