/
githubmirror
/
julia
Обзор
Документация
Войти
/
githubmirror
/
julia
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v1.12.6
src/null_sysimage.c
15 строк
572 B
Cody Tapscott
Remove usages of weak symbols (#57523)
05 май 2025, 09:58
05 май 2025, 09:58
804c2ce
Код
Авторство
О чём код?
// This file is a part of Julia. License is MIT: https://julialang.org/license #include <stddef.h> #include "processor.h" /** * These symbols support statically linking the sysimage with libjulia-internal. * * Here we provide dummy definitions that are used when these are not linked * together (the default build configuration). The 0 value of jl_system_image_size * is used as a sentinel to indicate that the sysimage should be loaded externally. **/ char jl_system_image_data = 0; size_t jl_system_image_size = 0; jl_image_pointers_t jl_image_pointers = { 0 };