mac: last attempt

This commit is contained in:
danyaberezun 2024-02-07 12:12:46 +01:00 committed by Roman Venediktov
parent 87339c7b73
commit 903164568c
3 changed files with 14 additions and 11 deletions

View file

@ -12,7 +12,7 @@ jobs:
fail-fast: false fail-fast: false
matrix: matrix:
os: os:
- ubuntu-latest # - ubuntu-latest
- macos-latest - macos-latest
ocaml-compiler: ocaml-compiler:
- 4.13.1 - 4.13.1

View file

@ -1,4 +1,4 @@
.section .text .data
.global Lprintf .global Lprintf
.extern Bprintf .extern Bprintf
@ -14,6 +14,8 @@
.extern cnt_percentage_sign .extern cnt_percentage_sign
.text
Lprintf: Lprintf:
# save return address # save return address
popq %r14 popq %r14

View file

@ -3,6 +3,7 @@
#define _GNU_SOURCE 1 #define _GNU_SOURCE 1
#include "runtime.h" #include "runtime.h"
#include <regex.h>
#include "gc.h" #include "gc.h"
#include "runtime_common.h" #include "runtime_common.h"