Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update ubuntu build example #119

Merged
merged 1 commit into from
Nov 9, 2023
Merged
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
19 changes: 9 additions & 10 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -114,17 +114,16 @@ detailed instructions:
2d. Example: Ubuntu
-------------------

For example on Ubuntu 16.04:
For example on Ubuntu 22.04:

$ sudo apt-get -y install git autoconf libtool \
make gcc libtool libfuse-dev liblzma-dev
$ libtoolize --force
$ aclocal
$ autoheader
$ automake --force-missing --add-missing
$ autoconf
$ ./configure --with-xz=/usr/lib/
$ make
$ sudo apt install pkg-config liblzma-dev libfuse3-dev \
automake autoconf libtool fio \
zlib1g-dev liblzo2-dev liblzma-dev liblz4-dev libzstd-dev
$ ./autogen.sh
$ ./configure
$ make -j4
$ make check
$ sudo make install

2e. Example: macOS
------------------
Expand Down
Loading