We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8dca48 commit cb40202Copy full SHA for cb40202
ci/Jenkinsfile.macos
@@ -85,12 +85,10 @@ pipeline {
85
}
86
87
stage('Build') {
88
- environment {
89
- // Workaround for clang assember https://github.com/OffchainLabs/hashtree/issues/18
90
- CFLAGS = "-fno-integrated-as"
91
- }
92
steps { timeout(50) {
93
- sh 'make LOG_LEVEL=TRACE'
+ /* Workaround for LLVM 21+ integrated assembler issue with AArch64 fixups.
+ * https://github.com/OffchainLabs/hashtree/issues/18 */
+ sh 'make LOG_LEVEL=TRACE NIM_PARAMS="--passC:-fno-integrated-as"'
94
} }
95
96
0 commit comments