pref: only show the support cross compiler warning/VCROSS_COMPILER_NAME message for the C backend
parent
bf62b2e33e
commit
f6c9a60f99
|
@ -259,8 +259,10 @@ pub fn (p &Preferences) vcross_compiler_name() string {
|
||||||
if p.os == .linux {
|
if p.os == .linux {
|
||||||
return 'clang'
|
return 'clang'
|
||||||
}
|
}
|
||||||
eprintln('Note: V can only cross compile to windows and linux for now by default.')
|
if p.backend == .c {
|
||||||
eprintln('It will use `cc` as a cross compiler for now, although that will probably fail.')
|
eprintln('Note: V can only cross compile to windows and linux for now by default.')
|
||||||
eprintln('Set `VCROSS_COMPILER_NAME` to the name of your cross compiler, for your target OS: $p.os .')
|
eprintln('It will use `cc` as a cross compiler for now, although that will probably fail.')
|
||||||
|
eprintln('Set `VCROSS_COMPILER_NAME` to the name of your cross compiler, for your target OS: $p.os .')
|
||||||
|
}
|
||||||
return 'cc'
|
return 'cc'
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue