/
githubmirror
/
julia
Обзор
Документация
Войти
/
githubmirror
/
julia
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v1.13.0-beta2
src/null_sysimage.c
13 строк
504 B
Sam Schweigel
Allow linking a system image with jl_image_unpack with libjulia (#59498)
12 сен 2025, 16:22
Не верифицирован
12 сен 2025, 16:22
941ff01
Код
Авторство
О чём код?
// 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_image_unpack * is used as a sentinel to indicate that the sysimage should be loaded externally. **/ jl_image_unpack_func_t *jl_image_unpack = NULL;