From fdce69d0a2c89e582e151e6a46267dcef2f4e197 Mon Sep 17 00:00:00 2001 From: Patrick Diehl Date: Tue, 13 Aug 2024 20:30:45 -0600 Subject: [PATCH] Add blog post for installing --- _posts/2024-08-13-build-hpx.markdown | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 _posts/2024-08-13-build-hpx.markdown diff --git a/_posts/2024-08-13-build-hpx.markdown b/_posts/2024-08-13-build-hpx.markdown new file mode 100644 index 0000000..4e0dcf0 --- /dev/null +++ b/_posts/2024-08-13-build-hpx.markdown @@ -0,0 +1,22 @@ +--- +layout: post +title: "Installing HPX" +date: 2024-08-13 14:34:25 +categories: building +tags: cmake +--- +In this blog post, we will provide more details on how to install HPX on your ssytem. + +## Fedora Linux + +On Fedora we mantain the [HPX package](https://packages.fedoraproject.org/pkgs/hpx/) and the package can be installed as follows: + + +{% highlight bash %} +# Shared memory version +sudo dnf install hpx-devel +# Distributed memory version +sudo dnf install hpx-mpich-devel +{% endhighlight %} + +