Skip to content

Commit

Permalink
run _macos_startup.jou
Browse files Browse the repository at this point in the history
  • Loading branch information
Akuli committed Dec 16, 2023
1 parent bb5a7ca commit 666f9d3
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions self_hosted/main.jou
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,9 @@ class Compiler:
if WINDOWS:
self->automagic_files[1] = malloc(strlen(self->stdlib_path) + 40)
sprintf(self->automagic_files[1], "%s/_windows_startup.jou", self->stdlib_path)
if MACOS:
self->automagic_files[1] = malloc(strlen(self->stdlib_path) + 40)
sprintf(self->automagic_files[1], "%s/_macos_startup.jou", self->stdlib_path)

def parse_all_files(self) -> None:
queue: ParseQueueItem* = malloc(50 * sizeof queue[0])
Expand Down

0 comments on commit 666f9d3

Please sign in to comment.