From 784af2278f77b8633ba9426c8f4d1262de16ed34 Mon Sep 17 00:00:00 2001 From: dofuuz <8174871+dofuuz@users.noreply.github.com> Date: Sat, 1 Jun 2024 00:51:36 +0900 Subject: [PATCH] Update BUILDING.md --- BUILDING.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/BUILDING.md b/BUILDING.md index 0bd3e36..e348cd2 100644 --- a/BUILDING.md +++ b/BUILDING.md @@ -7,13 +7,14 @@ python -m pip install --upgrade pip # Clone code including submodule git clone --recurse-submodules https://github.com/dofuuz/python-soxr.git + +cd python-soxr ``` ## Build package(wheel) ``` -cd python-soxr -pip wheel -ve . +pip wheel -v . ``` ### (Alternative method) Build using system libsoxr @@ -21,7 +22,7 @@ libsoxr should be installed before building. (e.g. `sudo apt install libsoxr-dev`) ``` export CMAKE_ARGS="-DUSE_SYSTEM_LIBSOXR=ON" -pip wheel -ve . +pip wheel -v . ``` It will link libsoxr dynamically and won't bundle libsoxr in the wheel package. @@ -39,6 +40,5 @@ pip install ./soxr-[...].whl pip install pytest # Test (using installed Python-SoXR) -cd python-soxr/tests python -m pytest ```