Moved bastl into target/_any folder.

This commit is contained in:
2024-02-02 00:25:32 +01:00
parent 9b9d5ade09
commit 99b1252f5d
32 changed files with 3 additions and 3 deletions

View File

@@ -9,7 +9,7 @@ kernel_env['LD'] = 'i686-elf-g++'
kernel_env.Append(CFLAGS = ['-ffreestanding'])
kernel_env.Append(CXXFLAGS = ['-ffreestanding', '-fno-exceptions', '-fno-rtti', '-std=c++20'])
kernel_env.Append(LINKFLAGS = ['-T', kernel_env.File('linker.ld').abspath, '-ffreestanding', '-nostdlib'])
kernel_env.Append(CPPPATH = ['#targets/_any/include', '#bastl/include'])
kernel_env.Append(CPPPATH = ['#targets/_any/include', '#targets/_any/bastl/include'])
def get_crt_object(name: str) -> str:
import subprocess