Skip to content

Commit cb40202

Browse files
committed
debug: disable integrated assembler with NIM_PARAMS
1 parent e8dca48 commit cb40202

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

ci/Jenkinsfile.macos

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -85,12 +85,10 @@ pipeline {
8585
}
8686

8787
stage('Build') {
88-
environment {
89-
// Workaround for clang assember https://github.com/OffchainLabs/hashtree/issues/18
90-
CFLAGS = "-fno-integrated-as"
91-
}
9288
steps { timeout(50) {
93-
sh 'make LOG_LEVEL=TRACE'
89+
/* Workaround for LLVM 21+ integrated assembler issue with AArch64 fixups.
90+
* https://github.com/OffchainLabs/hashtree/issues/18 */
91+
sh 'make LOG_LEVEL=TRACE NIM_PARAMS="--passC:-fno-integrated-as"'
9492
} }
9593
}
9694

0 commit comments

Comments
 (0)