Skip to content

Commit 1a3301f

Browse files
committed
Merge remote-tracking branch 'origin/main' into improve-user-prompt-implementation
2 parents 242028e + 87fbea2 commit 1a3301f

733 files changed

Lines changed: 27226 additions & 17067 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
44
PROJECT_ROOT="$(dirname "$(dirname "$SCRIPT_DIR")")"
@@ -12,7 +12,13 @@ cmake -DCMAKE_EXPORT_COMPILE_COMMANDS=ON \
1212
-DBUILD_DEBUG_WASM=ON \
1313
-DCMAKE_CXX_COMPILER_LAUNCHER=ccache \
1414
-DCMAKE_C_COMPILER_LAUNCHER=ccache \
15-
-DCMAKE_INSTALL_PREFIX="psidk" "$PROJECT_ROOT"
15+
-DCMAKE_INSTALL_PREFIX="psidk" \
16+
-DICU_LIBRARY_DIR="${ICU_LIBRARY_DIR:-${ICU_ROOT}/lib}" \
17+
-DCMAKE_PREFIX_PATH="${CMAKE_PREFIX_PATH}" \
18+
-DOPENSSL_ROOT_DIR="${OPENSSL_ROOT_DIR:-$(dirname "$(dirname "$(pkg-config --variable=includedir openssl 2>/dev/null)")")}" \
19+
-DCMAKE_IGNORE_PATH="${CMAKE_IGNORE_PATH:-/usr/lib:/usr/lib64}" \
20+
-DCMAKE_SYSTEM_IGNORE_PATH="${CMAKE_SYSTEM_IGNORE_PATH:-/usr/lib:/usr/lib64}" \
21+
"$PROJECT_ROOT"
1622
cores_divisor="${1:-3}"
1723
num_procs="$(nproc)"
1824
jobs=$(( num_procs / cores_divisor ))

.github/scripts/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22
WORKSPACE_ROOT=$1
33
BUILDER_IMAGE=$2
44
UBUNTU_BUILD_VER=$3

.github/scripts/make_publisher.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
# Usage: make_publisher.sh <ACCOUNT> <CHAIN_URL>
44
#

.github/scripts/publish.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
set -e
44

.github/scripts/submodule-regression-check.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22
set -eo pipefail
33
declare -A PR_MAP
44
declare -A BASE_MAP

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
.DS_Store
55
.nyc_output
66
.vscode
7+
.zed/*
8+
!.zed/*.sample
79
.trunk
810
.cursor
911
.cursorignore
@@ -39,4 +41,5 @@ bindings.rs
3941
target/
4042
**/install-state.gz
4143
.clangd
42-
AGENTS.md
44+
AGENTS.md
45+
.direnv

.vscode/scripts/env-setup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
44
WORKSPACE_ROOT="$(dirname "$(dirname "$SCRIPT_DIR")")"

0 commit comments

Comments
 (0)