You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
hello I wanted to ask if someone could be so kind to list all the commands necessary to install on MacOS (Sonoma 14.3)
I tried to follow the instruction on the website
and did the following
python build-and-run-tests.py
but it gets stuck here
LLVM build detected, but config/binder version has changed, perfoming a clean rebuild...
Download LLVM source...
cd /Users/gioxc88/develop/projects/QuantLibPython/binder/build && mkdir llvm-13.0.0.src && curl -LJ https://github.com/llvm/llvm-project/releases/download/llvmorg-13.0.0/llvm-13.0.0.src.tar.xz | tar --strip-components=1 -Jxom -C llvm-13.0.0.src && mv llvm-13.0.0.src /Users/gioxc88/develop/projects/QuantLibPython/binder/build/llvm-13.0.0
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
100 43.3M 100 43.3M 0 0 4672k 0 0:00:09 0:00:09 --:--:-- 4696k
Download Clang source...
cd /Users/gioxc88/develop/projects/QuantLibPython/binder/build && mkdir clang-13.0.0.src && curl -LJ https://github.com/llvm/llvm-project/releases/download/llvmorg-13.0.0/clang-13.0.0.src.tar.xz | tar --strip-components=1 -Jxom -C clang-13.0.0.src && mv clang-13.0.0.src /Users/gioxc88/develop/projects/QuantLibPython/binder/build/llvm-13.0.0/tools/clang
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
100 17.0M 100 17.0M 0 0 3371k 0 0:00:05 0:00:05 --:--:-- 4178k
Building tool: binder...
cd /Users/gioxc88/develop/projects/QuantLibPython/binder/build/llvm-13.0.0/llvm-13.0.0.macOS-14.3-arm64-arm-64bit.release && cmake -G Ninja -DCMAKE_BUILD_TYPE=Release -DLLVM_ENABLE_EH=1 -DLLVM_ENABLE_RTTI=ON .. && ninja binder tools/clang/lib/Headers/clang-resource-headers clang -j1
is it supposed to take a very long time at this point without printing anything?
I also tried
export PATH="/opt/homebrew/Cellar/llvm/19.1.3/bin:$PATH"
export LDFLAGS="-L/opt/homebrew/Cellar/llvm/19.1.3/lib"
git clone https://github.com/RosettaCommons/binder.git
cd binder
mkdir build
cd build
cmake -DLLVM_CONFIG=/opt/homebrew/Cellar/llvm/19.1.3/bin/llvm-config \
-DCLANG_LIBRARIES=/opt/homebrew/Cellar/llvm/19.1.3/lib \
-DCLANG_INCLUDE_DIRS=/opt/homebrew/Cellar/llvm/19.1.3/include ..
make
Have you tried running python build-and-run-tests.py -j<number of cores to use> command line? By default it will only use a single core to build which will take quite a bit of time.
If you want to build Binder by-hands then it will be best to follow compilation instructions outlined at https://cppbinder.readthedocs.io/en/latest/install.html (note the extra LLVM configuration options that need to be passed during configuration phase).
hello I wanted to ask if someone could be so kind to list all the commands necessary to install on MacOS (Sonoma 14.3)
I tried to follow the instruction on the website
and did the following
python build-and-run-tests.py
but it gets stuck here
is it supposed to take a very long time at this point without printing anything?
I also tried
but it keeps failing here
The text was updated successfully, but these errors were encountered: