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

@@ -398,7 +398,7 @@ jobs:
./v build-module vlib/v/gen/c
./v build-module vlib/v/depgraph
./v build-module vlib/os/cmdline
- name: x64 machine code generation
- name: native machine code generation
run: |
exit
./v -o vprod -prod cmd/v
@@ -407,12 +407,12 @@ jobs:
../../vprod gen1m.v
./gen1m > 1m.v
echo "Building it..."
../../vprod -backend x64 -o 1m 1m.v
../../vprod -backend native -o 1m 1m.v
echo "Running it..."
ls
# ./1m
#run: echo "TODO" #cd examples/x64 && ../../v -x64 hello_world.v && ./hello_world
#run: echo "TODO" #cd examples/native && ../../v -native hello_world.v && ./hello_world
# - name: Coveralls GitHub Action
# uses: coverallsapp/github-action@v1.0.1
# with:
@@ -482,7 +482,7 @@ jobs:
./v build-module vlib/v/gen/c
./v build-module vlib/v/depgraph
./v build-module vlib/os/cmdline
- name: x64 machine code generation
- name: native machine code generation
run: |
exit
./v -o vprod -prod cmd/v
@@ -491,7 +491,7 @@ jobs:
../../vprod gen1m.v
./gen1m > 1m.v
echo "Building it..."
../../vprod -backend x64 -o 1m 1m.v
../../vprod -backend native -o 1m 1m.v
echo "Running it..."
ls