refactor: moved dynarray back to package model

c-skills
Jef Roosens 2022-11-20 16:32:46 +01:00
parent 32ff120600
commit 65a756da48
5 changed files with 1 additions and 10 deletions

View File

@ -5,6 +5,7 @@ module package
// We need to specify *every* C file here. Otherwise, Vieter doesn't compile.
#flag @VMODROOT/c/package.o
#flag @VMODROOT/c/package_info.o
#flag @VMODROOT/c/dynarray.o
#include "package.h"

View File

@ -1,7 +0,0 @@
module util
#flag -I @VMODROOT/c
// This makes the V compiler include this object file when linking, allowing
// all other C parts of the codebase to use it as well.
#flag @VMODROOT/c/dynarray.o

View File

@ -1,3 +0,0 @@
Module{
name: 'util'
}