Commit 678e63f
fix: disable assembly in BoringSSL on Linux to avoid platform detection issues
Changed approach from deleting files to disabling assembly entirely
using -DOPENSSL_NO_ASM=1. This is the same solution that worked for
macOS ARM64 builds.
The previous approach of deleting Apple assembly files failed because
CMake's sources.cmake still referenced them, causing configuration errors.
Using -DOPENSSL_NO_ASM=1:
- Bypasses platform detection issues entirely
- Uses pure C implementations instead of assembly
- Slightly slower but guaranteed to work
- Same approach successfully used on macOS ARM64
This trades a small performance penalty for build reliability.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>1 parent 21b7bab commit 678e63f
1 file changed
+5
-4
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
74 | 74 | | |
75 | 75 | | |
76 | 76 | | |
77 | | - | |
78 | | - | |
79 | | - | |
80 | | - | |
| 77 | + | |
| 78 | + | |
| 79 | + | |
| 80 | + | |
81 | 81 | | |
82 | 82 | | |
83 | 83 | | |
84 | 84 | | |
85 | 85 | | |
| 86 | + | |
86 | 87 | | |
87 | 88 | | |
88 | 89 | | |
| |||
0 commit comments