Skip to content

Commit f732091

Browse files
cgen: only run freestanding_module_import on amd64 (#24763)
1 parent 226359c commit f732091

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

‎vlib/v/gen/c/coutput_test.v‎

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -270,6 +270,11 @@ fn should_skip(relpath string) bool {
270270
}
271271
}
272272
if relpath.contains('freestanding_module_import_') {
273+
$if !amd64 {
274+
// https://github.com/vlang/v/issues/23397
275+
eprintln('> skipping ${relpath} on != amd64')
276+
return true
277+
}
273278
if user_os != 'linux' {
274279
eprintln('> skipping ${relpath} on != linux')
275280
return true

0 commit comments

Comments
 (0)