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 226359c commit f732091Copy full SHA for f732091
1 file changed
vlib/v/gen/c/coutput_test.v
@@ -270,6 +270,11 @@ fn should_skip(relpath string) bool {
270
}
271
272
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
+ }
278
if user_os != 'linux' {
279
eprintln('> skipping ${relpath} on != linux')
280
return true
0 commit comments