clean build script, remove builtins.c reference
This commit is contained in:
parent
52ea920ff3
commit
e9396311e7
4 changed files with 2 additions and 4 deletions
1
bastd.c
1
bastd.c
|
@ -203,7 +203,6 @@ typedef U8 B8;
|
|||
// Includes
|
||||
#include "bastd/os.c"
|
||||
#include "bastd/memory.c"
|
||||
#include "bastd/builtins.c"
|
||||
#include "bastd/string.c"
|
||||
|
||||
#endif //BASTD_C
|
|
@ -1 +0,0 @@
|
|||
// Premade generics used in the codebase
|
|
@ -9,7 +9,7 @@
|
|||
int
|
||||
main(void)
|
||||
{
|
||||
m_Buddy buddy = m_Buddy_create(os_alloc(2 * GIGA), 2 * GIGA);
|
||||
m_Buddy buddy = m_Buddy_create(os_alloc(2 * MEGA), 2 * MEGA);
|
||||
m_Allocator perm = m_BUDDY_ALLOCATOR(buddy);
|
||||
|
||||
// Slices can be created with a backing array to start with.
|
||||
|
|
|
@ -6,7 +6,7 @@ pushd build
|
|||
REM Uncomment one of these to run an example. Try it! They're great documentation.
|
||||
REM cl /Zi ..\bastd\examples\memory.c
|
||||
REM cl /Zi ..\bastd\examples\fib_slice.c
|
||||
cl /Zi ..\bastd\examples\string.c
|
||||
REM cl /Zi ..\bastd\examples\string.c
|
||||
|
||||
REM This builds your application with debug symbols.
|
||||
REM cl /Zi ..\main.c
|
||||
|
|
Loading…
Add table
Reference in a new issue