1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

x64: rename to native to not conflict with the x64 comptime variable

This commit is contained in:
pancake
2021-04-26 15:39:38 +02:00
committed by Delyan Angelov
parent 7587458521
commit 6750ed254f
33 changed files with 90 additions and 85 deletions

View File

@@ -3881,7 +3881,7 @@ If a file has an environment-specific suffix, it will only be compiled for that
- `.js.v` => will be used only by the JS backend. These files can contain JS. code.
- `.c.v` => will be used only by the C backend. These files can contain C. code.
- `.x64.v` => will be used only by V's x64 backend.
- `.native.v` => will be used only by V's native backend.
- `_nix.c.v` => will be used only on Unix systems (non Windows).
- `_${os}.c.v` => will be used only on the specific `os` system.
For example, `_windows.c.v` will be used only when compiling on Windows, or with `-os windows`.