Commit 14c1ff1
committed
Fix compiler errors with JIT when Zbc is disabled
When using 'make ENABLE_Zbc=0 ENABLE_JIT=1', the following errors are
observed:
src/jit.c:1760:17: error: ‘do_clmulr’ defined but not used [-Werror=unused-function]
src/jit.c:1760:17: error: ‘do_clmulh’ defined but not used [-Werror=unused-function]
src/jit.c:1760:17: error: ‘do_clmul’ defined but not used [-Werror=unused-function]
Include 'Zbc' in EXT_LIST to ensure instructions like 'clmulr',
'clmulh', and 'clmul' are properly handled, resolving unused function
errors during JIT builds.1 parent 3d7de03 commit 14c1ff1
1 file changed
+6
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
127 | 127 | | |
128 | 128 | | |
129 | 129 | | |
| 130 | + | |
| 131 | + | |
| 132 | + | |
| 133 | + | |
| 134 | + | |
130 | 135 | | |
131 | | - | |
| 136 | + | |
132 | 137 | | |
133 | 138 | | |
134 | 139 | | |
| |||
0 commit comments