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,18 +1,20 @@
.section .text .data
.global Lprintf .global Lprintf
.extern Bprintf .extern Bprintf
.global Lfprintf .global Lfprintf
.extern Bfprintf .extern Bfprintf
.global Lsprintf .global Lsprintf
.extern Bsprintf .extern Bsprintf
.global Lfailure .global Lfailure
.extern failure .extern failure
.extern cnt_percentage_sign .extern cnt_percentage_sign
.text
Lprintf: Lprintf:
# save return address # save return address

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"