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
Jank REPL starts up like it does when run as ./build/jank repl.
Observed:
This error is printed in the terminal:
dyld[50323]: Library not loaded: @rpath/libgccpp.1.dylib
Referenced from: <61BA10A9-E65C-33EB-836C-0366A3E89BA2> /usr/local/bin/jank
Reason: tried: '$ORIGIN/../lib/libgccpp.1.dylib' (no such file), '$ORIGIN/../lib/libgccpp.1.dylib' (no such file)
fish: Job 1, 'jank repl' terminated by signal SIGABRT (Abort)
The text was updated successfully, but these errors were encountered:
Environment:
macOS 15.2 arm64
fish shell 3.7.1
Xcode 16.2
Steps to reproduce:
brew install curl git git-lfs zip entr openssl double-conversion pkg-config ninja python cmake gnupg zlib doctest boost libzip lbzip2 llvm@19
set -gx SDKROOT (xcrun --sdk macosx --show-sdk-path)
(the fish equivalent ofexport SDKROOT=$(xcrun --sdk macosx --show-sdk-path)
)fish_add_path /opt/homebrew/opt/llvm/bin
(fish equivalent ofexport PATH="/opt/homebrew/opt/llvm/bin:${PATH}"
)set -gx LDFLAGS "-L/opt/homebrew/opt/llvm/lib ${LDFLAGS}" (fish equivalent of
export LDFLAGS="-L/opt/homebrew/opt/llvm/lib ${LDFLAGS}"`)set -gx CPPFLAGS "-I/opt/homebrew/opt/llvm/include ${CPPFLAGS}"
(fish equivalent ofexport CPPFLAGS="-I/opt/homebrew/opt/llvm/include ${CPPFLAGS}"
)git clone --recurse-submodules https://github.com/jank-lang/jank.git
./bin/configure -GNinja -DCMAKE_BUILD_TYPE=Release
./bin/compile
./bin/install
jank repl
Expected:
Jank REPL starts up like it does when run as
./build/jank repl
.Observed:
This error is printed in the terminal:
The text was updated successfully, but these errors were encountered: