Skip to content

Commit

Permalink
Merge branch 'main' into guilload/parse-date-leading-trailing-whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
trinity-1686a authored Nov 26, 2024
2 parents b119201 + 4ffbd53 commit 32af9e8
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
1 change: 0 additions & 1 deletion .github/actions/cross-build-binary/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ runs:
QW_COMMIT_DATE: ${{ env.QW_COMMIT_DATE }}
QW_COMMIT_HASH: ${{ env.QW_COMMIT_HASH }}
QW_COMMIT_TAGS: ${{ env.QW_COMMIT_TAGS }}

working-directory: ./quickwit
- name: Bundle archive
run: |
Expand Down
11 changes: 9 additions & 2 deletions quickwit/Cross.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,18 @@ image = "quickwit/cross:x86_64-unknown-linux-gnu"

[target.x86_64-unknown-linux-musl]
image = "quickwit/cross:x86_64-unknown-linux-musl"
RUSTFLAGS="LIB_LDFLAGS=-L/usr/lib/x86_64-linux-gnu CFLAGS=-I/usr/local/musl/include CC=musl-gcc"

[target.aarch64-unknown-linux-gnu]
image = "quickwit/cross:aarch64-unknown-linux-gnu"

[target.aarch64-unknown-linux-gnu.env]
# Fix build for transitive dependency rdkafka -> rdkafka-sys -> sasl2-sys -> krb5-src
# Introduced by https://github.com/MaterializeInc/rust-krb5-src/pull/27
passthrough = [
"krb5_cv_attr_constructor_destructor=yes",
"ac_cv_func_regcomp=yes",
"ac_cv_printf_positional=yes",
]

[target.aarch64-unknown-linux-musl]
image = "quickwit/cross:aarch64-unknown-linux-musl"
linker = "aarch64-linux-musl-gcc"

0 comments on commit 32af9e8

Please sign in to comment.