@@ -1247,7 +1247,7 @@ function _include_from_serialized(pkg::PkgId, path::String, ocachepath::Union{No
1247
1247
else
1248
1248
io = open (path, " r" )
1249
1249
try
1250
- iszero (isvalid_cache_header (io)) && return ArgumentError (" Invalid header in cache file $path ." )
1250
+ iszero (isvalid_cache_header (io)) && return ArgumentError (" Incompatible header in cache file $path ." )
1251
1251
_, (includes, _, _), _, _, _, _, _, _ = parse_cache_header (io, path)
1252
1252
ignore_native = pkg_tracked (includes)
1253
1253
finally
@@ -1887,7 +1887,7 @@ function isrelocatable(pkg::PkgId)
1887
1887
isnothing (path) && return false
1888
1888
io = open (path, " r" )
1889
1889
try
1890
- iszero (isvalid_cache_header (io)) && throw (ArgumentError (" Invalid header in cache file $cachefile ." ))
1890
+ iszero (isvalid_cache_header (io)) && throw (ArgumentError (" Incompatible header in cache file $cachefile ." ))
1891
1891
_, (includes, includes_srcfiles, _), _... = _parse_cache_header (io, path)
1892
1892
for inc in includes
1893
1893
! startswith (inc. filename, " @depot" ) && return false
@@ -1962,7 +1962,7 @@ function _tryrequire_from_serialized(pkg::PkgId, path::String, ocachepath::Union
1962
1962
io = open (path, " r" )
1963
1963
ignore_native = false
1964
1964
try
1965
- iszero (isvalid_cache_header (io)) && return ArgumentError (" Invalid header in cache file $path ." )
1965
+ iszero (isvalid_cache_header (io)) && return ArgumentError (" Incompatible header in cache file $path ." )
1966
1966
_, (includes, _, _), depmodnames, _, _, _, clone_targets, _ = parse_cache_header (io, path)
1967
1967
1968
1968
ignore_native = pkg_tracked (includes)
@@ -3179,7 +3179,7 @@ function compilecache(pkg::PkgId, path::String, internal_stderr::IO = stderr, in
3179
3179
# append extra crc to the end of the .ji file:
3180
3180
open (tmppath, " r+" ) do f
3181
3181
if iszero (isvalid_cache_header (f))
3182
- error (" Invalid header for $(repr (" text/plain" , pkg)) in new cache file $(repr (tmppath)) ." )
3182
+ error (" Incompatible header for $(repr (" text/plain" , pkg)) in new cache file $(repr (tmppath)) ." )
3183
3183
end
3184
3184
seekend (f)
3185
3185
write (f, crc_so)
@@ -3503,7 +3503,7 @@ end
3503
3503
function parse_cache_header (cachefile:: String )
3504
3504
io = open (cachefile, " r" )
3505
3505
try
3506
- iszero (isvalid_cache_header (io)) && throw (ArgumentError (" Invalid header in cache file $cachefile ." ))
3506
+ iszero (isvalid_cache_header (io)) && throw (ArgumentError (" Incompatible header in cache file $cachefile ." ))
3507
3507
ret = parse_cache_header (io, cachefile)
3508
3508
return ret
3509
3509
finally
@@ -3516,7 +3516,7 @@ function preferences_hash(cachefile::String)
3516
3516
io = open (cachefile, " r" )
3517
3517
try
3518
3518
if iszero (isvalid_cache_header (io))
3519
- throw (ArgumentError (" Invalid header in cache file $cachefile ." ))
3519
+ throw (ArgumentError (" Incompatible header in cache file $cachefile ." ))
3520
3520
end
3521
3521
return preferences_hash (io, cachefile)
3522
3522
finally
@@ -3532,7 +3532,7 @@ end
3532
3532
function cache_dependencies (cachefile:: String )
3533
3533
io = open (cachefile, " r" )
3534
3534
try
3535
- iszero (isvalid_cache_header (io)) && throw (ArgumentError (" Invalid header in cache file $cachefile ." ))
3535
+ iszero (isvalid_cache_header (io)) && throw (ArgumentError (" Incompatible header in cache file $cachefile ." ))
3536
3536
return cache_dependencies (io, cachefile)
3537
3537
finally
3538
3538
close (io)
@@ -3572,7 +3572,7 @@ end
3572
3572
function read_dependency_src (cachefile:: String , filename:: AbstractString )
3573
3573
io = open (cachefile, " r" )
3574
3574
try
3575
- iszero (isvalid_cache_header (io)) && throw (ArgumentError (" Invalid header in cache file $cachefile ." ))
3575
+ iszero (isvalid_cache_header (io)) && throw (ArgumentError (" Incompatible header in cache file $cachefile ." ))
3576
3576
return read_dependency_src (io, cachefile, filename)
3577
3577
finally
3578
3578
close (io)
@@ -3856,9 +3856,9 @@ end
3856
3856
try
3857
3857
checksum = isvalid_cache_header (io)
3858
3858
if iszero (checksum)
3859
- @debug " Rejecting cache file $cachefile due to it containing an invalid cache header"
3860
- record_reason (reasons, " invalid header" )
3861
- return true # invalid cache file
3859
+ @debug " Rejecting cache file $cachefile due to it containing an incompatible cache header"
3860
+ record_reason (reasons, " incompatible header" )
3861
+ return true # incompatible cache file
3862
3862
end
3863
3863
modules, (includes, _, requires), required_modules, srctextpos, prefs, prefs_hash, clone_targets, actual_flags = parse_cache_header (io, cachefile)
3864
3864
if isempty (modules)
0 commit comments