Skip to content

Commit f4e8465

Browse files
committed
fix sysimage-native-code=yes option
Follow up to #53373, it seems this assert was broken for empty packages, causing CI issues. It is not necessary.
1 parent e9aa43d commit f4e8465

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/staticdata.c

+1-5
Original file line numberDiff line numberDiff line change
@@ -3092,11 +3092,7 @@ static void jl_restore_system_image_from_stream_(ios_t *f, jl_image_t *image, jl
30923092

30933093
// in --build mode only use sysimg data, not precompiled native code
30943094
int imaging_mode = jl_generating_output() && !jl_options.incremental;
3095-
if (!imaging_mode && jl_options.use_sysimage_native_code == JL_OPTIONS_USE_SYSIMAGE_NATIVE_CODE_YES) {
3096-
if (image->gvars_base)
3097-
assert(image->fptrs.ptrs);
3098-
}
3099-
else {
3095+
if (imaging_mode || jl_options.use_sysimage_native_code != JL_OPTIONS_USE_SYSIMAGE_NATIVE_CODE_YES) {
31003096
memset(&image->fptrs, 0, sizeof(image->fptrs));
31013097
image->gvars_base = NULL;
31023098
}

0 commit comments

Comments
 (0)