Skip to content

Update dependency: deps/k_release #4104

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
87 changes: 0 additions & 87 deletions booster/test/rpc-integration/generateDirectoryTest.sh

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,6 @@ NAME=$(basename ${0%.kompile})
NAMETGZ=$(basename ${0%.kompile})


# provide haskell definition
cp ${NAME}.haskell.kore ${NAME}.kore

# Regenerate llvm backend decision tree
mkdir -p ./dt
llvm-kompile-matching ${NAME}.llvm.kore qbaL ./dt 0
Expand All @@ -37,10 +34,13 @@ case "$OSTYPE" in
esac

llvm-kompile ${NAME}.llvm.kore ./dt c -- \
-fPIC -std=c++17 -o interpreter \
-fPIC -std=c++20 -o interpreter \
$PLUGIN_LIBS $PLUGIN_INCLUDE $PLUGIN_CPP \
-lcrypto -lssl $LPROCPS -lsecp256k1
mv interpreter.* ${NAME}.dylib

# remove temporary artefacts
rm -r dt

# provide haskell definition
cp ${NAME}.haskell.kore ${NAME}.kore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ cp no-evaluator-kompiled/definition.kore no-evaluator.kore
kompile --backend llvm no-evaluator.k

llvm-kompile no-evaluator-kompiled/definition.kore no-evaluator-kompiled/dt c -- \
-fPIC -std=c++17 -o interpreter
-fPIC -std=c++20 -o interpreter
mv interpreter.* no-evaluator.dylib
rm -r no-evaluator-kompiled
2 changes: 1 addition & 1 deletion deps/k_release
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.1.237
7.1.254
2 changes: 1 addition & 1 deletion scripts/run-with-tarball.sh
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ if [ -z "${LLVM_LIB}" ]; then

# kompile llvm-definition to interpreter
llvm-kompile $TEMPD/llvm-definition.kore $TEMPD/dt c -- \
-fPIC -std=c++17 -o $TEMPD/interpreter \
-fPIC -std=c++20 -o $TEMPD/interpreter \
$PLUGIN_LIBS $PLUGIN_INCLUDE $PLUGIN_CPP \
-lcrypto -lssl $LPROCPS
lib=$TEMPD/interpreter.$LIBSUFFIX
Expand Down
Loading