Skip to content

Commit

Permalink
v.builder: add support for cross-compilation from termux to other p…
Browse files Browse the repository at this point in the history
…latforms (#17984)
  • Loading branch information
malisipi committed Apr 18, 2023
1 parent 8275dc5 commit 04dabb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vlib/v/builder/cc.v
Expand Up @@ -854,7 +854,7 @@ fn (mut c Builder) cc_windows_cross() {
obj_name = obj_name.replace('.o.o', '.o')
include := '-I $winroot/include '
*/
if os.user_os() !in ['macos', 'linux'] {
if os.user_os() !in ['macos', 'linux', 'termux'] {
println(os.user_os())
panic('your platform is not supported yet')
}
Expand Down

0 comments on commit 04dabb5

Please sign in to comment.