From 37c86b11775ab33887938f89f607cd4defd677e7 Mon Sep 17 00:00:00 2001 From: Dominik Rathmer Date: Wed, 18 Sep 2024 13:00:10 +0200 Subject: [PATCH 1/2] chore(README): Update dev instructions for Arch Linux users --- DEVELOPER_SETUP.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/DEVELOPER_SETUP.md b/DEVELOPER_SETUP.md index 494b647ab..e1ac63649 100644 --- a/DEVELOPER_SETUP.md +++ b/DEVELOPER_SETUP.md @@ -48,6 +48,13 @@ Then create the virtual environment poetry install --sync ``` +If you are on Archlinux you need to run the command as follows: + +```sh +# https://bbs.archlinux.org/viewtopic.php?id=296542 +CFLAGS="-Wno-error=incompatible-pointer-types" poetry install --sync # https://bbs.archlinux.org/viewtopic.php?id=296542 +``` + #### - Spin up mariadb in docker ```sh From 4e4f4f97faac4c8c48c9f2c579041b329e22adfa Mon Sep 17 00:00:00 2001 From: Dominik Rathmer Date: Wed, 18 Sep 2024 18:31:51 +0200 Subject: [PATCH 2/2] chore(DEVELOPER_SETUP): Remove duplicate info link, change wording --- DEVELOPER_SETUP.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DEVELOPER_SETUP.md b/DEVELOPER_SETUP.md index e1ac63649..60ae84726 100644 --- a/DEVELOPER_SETUP.md +++ b/DEVELOPER_SETUP.md @@ -48,11 +48,11 @@ Then create the virtual environment poetry install --sync ``` -If you are on Archlinux you need to run the command as follows: +If you are on Arch Linux or another Arch-based distro, you need to run the command as follows: ```sh # https://bbs.archlinux.org/viewtopic.php?id=296542 -CFLAGS="-Wno-error=incompatible-pointer-types" poetry install --sync # https://bbs.archlinux.org/viewtopic.php?id=296542 +CFLAGS="-Wno-error=incompatible-pointer-types" poetry install --sync ``` #### - Spin up mariadb in docker