Skip to content
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
1 change: 1 addition & 0 deletions SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
* [Prerequisites for macOS](building/prereq-macos.md)
* [Prerequisites for Ubuntu](building/prereq-ubuntu.md)
* [Prerequisites for Fedora](building/prereq-fedora.md)
* [Prerequisites for ArchLinux](building/prereq-arch.md)
* [Fall-back manual installation method](building/manual-install.md)
* [🛠 Build the packages](building/build.md)
* [📦 Use the precompiled binaries](building/precomp.md)
Expand Down
1 change: 1 addition & 0 deletions building/custom.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ packages to install and configurations to perform.
* Specify the corresponding Ubuntu architecture when running the `aliBuild` command
using the `-a` option (e.g. `-a ubuntu2004_x86-64` for Ubuntu 20.04).
Use the `-a` option also with the `alienv` command.
* [Arch Linux (Preliminary)](prereq-arch.md)

If your operating system is _not_ in any list, it does not mean our software won't work on it;
it will be just more difficult for you to get support for it.
Expand Down
17 changes: 17 additions & 0 deletions building/prereq-arch.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
aliBuild prerequisites for ArchLinux
=================================

ALICE software on ArchLinux is supported on a best effort basis. There is no guarantee that software builds or runs correctly. Support requests might have low priority.

## Install or Upgrade the Required Packages

With root permissions, i.e. `sudo` or as `root` install the prerequisites using:

```bash
pacman -S git python3 python-pip which gcc \
make gcc-fortran \
base-level libxpm libxft glu gsl \
libuv tbb xerces-c re2 libwebsockets grpc
```

You are now ready to [start building ALICE software](README.md#get-or-upgrade-alibuild)