mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 13:51:46 +00:00
- Write Rust one-for-one protocol compatible replacement for universal-ctags in JSON streaming mode (scip-ctags) - Use tree-sitter to generate scip symbols, then emit those through scip-ctags - These symbols will be reused for Cody context - Ensure code is built with musl libc ## Test plan Unit and snapshot tests in the Rust symbol generation code - verified working in the symbols sidebar and symbol search for enabled languages. --------- Co-authored-by: TJ DeVries <devries.timothyj@gmail.com> Co-authored-by: William Bezuidenhout <william.bezuidenhout@sourcegraph.com> Co-authored-by: Eric Fritz <eric@eric-fritz.com> Co-authored-by: Eric Fritz <eric@sourcegraph.com> Co-authored-by: Jean-Hadrien Chabran <jh@chabran.fr>
9 lines
132 B
Bash
Executable File
9 lines
132 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ "${TARGETARCH}" = "arm64" ]; then
|
|
cat <<- FOE >> .cargo/config.toml
|
|
[env]
|
|
CFLAGS="-mno-outline-atomics"
|
|
FOE
|
|
fi;
|