You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-[Step 3: download and build fastp](#step-3-download-and-build-fastp)
25
25
-[input and output](#input-and-output)
26
26
-[output to STDOUT](#output-to-stdout)
@@ -114,20 +114,20 @@ chmod a+x ./fastp
114
114
## or compile from source
115
115
`fastp` depends on `libdeflate` and `libisal`, while `libisal` is not compatible with gcc 4.8. If you use gcc 4.8, your fastp will fail to run. Please upgrade your gcc before you build the libraries and fastp.
116
116
117
-
### Step 1: download and build libisal
118
-
See https://github.com/intel/isa-l
119
-
`autoconf`, `automake`, `libtools`, `nasm (>=v2.11.01)` and `yasm (>=1.2.0)` are required to build this isal
117
+
### Step 1: install isa-l
118
+
It's recommended that to install it using your package manager, for example `apt install isa-l` on ubuntu, or `brew install isa-l` on Mac. Otherwise you can compile isa-l from source. Please be noted that `isa-l` is not compatible with gcc 4.8 or older versions. See https://github.com/intel/isa-l
119
+
`autoconf`, `automake`, `libtools`, `nasm (>=v2.11.01)` and `yasm (>=1.2.0)` are required to build this isa-l
120
120
```shell
121
121
git clone https://github.com/intel/isa-l.git
122
122
cd isa-l
123
123
./autogen.sh
124
124
./configure --prefix=/usr --libdir=/usr/lib64
125
-
make
125
+
make -j
126
126
sudo make install
127
127
```
128
128
129
-
### step 2: download and build libdeflate
130
-
See https://github.com/ebiggers/libdeflate
129
+
### step 2: install libdeflate
130
+
It's recommended that to install it using your package manager, for example `apt install libdeflate` on ubuntu, or `brew install libdeflate` on Mac. Otherwise you can compile isa-l from source. See https://github.com/ebiggers/libdeflate
0 commit comments