mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 05:44:20 +00:00
libcxxabi: sort file list according to upstream CMakeLists.txt
This commit is contained in:
parent
b2591d50c7
commit
03078bfa41
1 changed files with 13 additions and 8 deletions
|
|
@ -9,25 +9,30 @@ const trace = @import("../tracy.zig").trace;
|
|||
const Module = @import("../Package/Module.zig");
|
||||
|
||||
const libcxxabi_files = [_][]const u8{
|
||||
"src/abort_message.cpp",
|
||||
"src/cxa_aux_runtime.cpp",
|
||||
"src/cxa_default_handlers.cpp",
|
||||
"src/cxa_demangle.cpp",
|
||||
"src/cxa_exception.cpp",
|
||||
"src/cxa_exception_storage.cpp",
|
||||
"src/cxa_guard.cpp",
|
||||
"src/cxa_handlers.cpp",
|
||||
"src/cxa_noexception.cpp",
|
||||
"src/cxa_personality.cpp",
|
||||
"src/cxa_thread_atexit.cpp",
|
||||
"src/cxa_vector.cpp",
|
||||
"src/cxa_virtual.cpp",
|
||||
"src/fallback_malloc.cpp",
|
||||
"src/private_typeinfo.cpp",
|
||||
|
||||
"src/stdlib_exception.cpp",
|
||||
"src/stdlib_new_delete.cpp",
|
||||
"src/stdlib_stdexcept.cpp",
|
||||
"src/stdlib_typeinfo.cpp",
|
||||
"src/stdlib_new_delete.cpp",
|
||||
|
||||
"src/abort_message.cpp",
|
||||
"src/fallback_malloc.cpp",
|
||||
"src/private_typeinfo.cpp",
|
||||
|
||||
"src/cxa_exception.cpp",
|
||||
"src/cxa_personality.cpp",
|
||||
|
||||
"src/cxa_noexception.cpp",
|
||||
|
||||
"src/cxa_thread_atexit.cpp",
|
||||
};
|
||||
|
||||
const libcxx_base_files = [_][]const u8{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue