native: fix again v -os macos -experimental -b native -o hw.macos examples/hello_world.v, after the latest changes to the backend

This commit is contained in:
Delyan Angelov 2025-06-12 13:26:02 +03:00
parent 36bef926fb
commit 9e2462a876
No known key found for this signature in database
GPG key ID: 66886C0F12D595ED
4 changed files with 32 additions and 1 deletions

View file

@ -75,6 +75,8 @@ jobs:
run: v run ci/linux_ci.vsh test_leak_detector_tcc
- name: Test leak detector not being active for normal compile
run: v run ci/linux_ci.vsh test_leak_detector_not_active_tcc
- name: native cross compilation to macos
run: v run ci/linux_ci.vsh native_cross_compilation_to_macos
gcc-linux:
runs-on: ubuntu-24.04
@ -121,6 +123,8 @@ jobs:
run: v run ci/linux_ci.vsh build_modules_gcc
- name: native machine code generation
run: v run ci/linux_ci.vsh native_machine_code_generation_gcc
- name: native cross compilation to macos
run: v run ci/linux_ci.vsh native_cross_compilation_to_macos
- name: compile vdoctor.v with -prod
run: v run ci/linux_ci.vsh compile_vdoctor_prod_gcc
- name: compile vup.v with -prod
@ -167,3 +171,5 @@ jobs:
run: v run ci/linux_ci.vsh build_modules_clang
- name: native machine code generation
run: v run ci/linux_ci.vsh native_machine_code_generation_clang
- name: native cross compilation to macos
run: v run ci/linux_ci.vsh native_cross_compilation_to_macos