Compare commits

..

1 Commits

Author SHA1 Message Date
5caa92f019 Delete C++ implementation and dead code
All checks were successful
CI / ci (Release, ubuntu-latest) (pull_request) Successful in 4s
CI / ci (Release-assertions, ubuntu-latest) (pull_request) Successful in 5s
2025-06-27 18:22:33 -06:00

View File

@ -18368,6 +18368,7 @@ compile_file = fn (arena: &Arena, compile_options: CompileFile, envp: &&u8) []u8
>file_content = file_read(arena, relative_file_path); >file_content = file_read(arena, relative_file_path);
>file_path = path_absolute(arena, relative_file_path.pointer); >file_path = path_absolute(arena, relative_file_path.pointer);
>c_abi_object_path = ""; // TODO
>definitions: []Definition = zero; >definitions: []Definition = zero;
>cmake_prefix_path_definition: Definition = { >cmake_prefix_path_definition: Definition = {
@ -18385,8 +18386,8 @@ compile_file = fn (arena: &Arena, compile_options: CompileFile, envp: &&u8) []u8
} }
} }
>object_array = [ output_object_path, "self-hosted-bb-cache/c_abi.o" ]; >objects = [ output_object_path ][..];
>objects = object_array[..1]; >c_abi_library = "build/libc_abi.a";
>library_buffer: [256][]u8 = undefined; >library_buffer: [256][]u8 = undefined;
>library_directory: []u8 = zero; >library_directory: []u8 = zero;
@ -18523,7 +18524,7 @@ compile_file = fn (arena: &Arena, compile_options: CompileFile, envp: &&u8) []u8
} }
else if (string_equal(base_name, "tests")) else if (string_equal(base_name, "tests"))
{ {
objects = object_array[..]; library_paths = { .pointer = &c_abi_library, .length = 1 };
} }
>options: CompileOptions = { >options: CompileOptions = {