Skip to content

Commit 11bba3b

Browse files
fattenederKristofferC
authored andcommitted
RFC: Make include_dependency(path; track_content=true) the default (#54965)
By changing the default to `true` we make it easier to build relocatable packages from already existing ones when 1.11 lands. This keyword was just added during 1.11, so its not yet too late to change its default. (cherry picked from commit 6cf3a05)
1 parent 3f67b31 commit 11bba3b

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

base/loading.jl

+6-5
Original file line numberDiff line numberDiff line change
@@ -2032,21 +2032,22 @@ function _include_dependency(mod::Module, _path::AbstractString; track_content=t
20322032
end
20332033

20342034
"""
2035-
include_dependency(path::AbstractString; track_content::Bool=false)
2035+
include_dependency(path::AbstractString; track_content::Bool=true)
20362036
20372037
In a module, declare that the file, directory, or symbolic link specified by `path`
2038-
(relative or absolute) is a dependency for precompilation; that is, the module will need
2039-
to be recompiled if the modification time `mtime` of `path` changes.
2040-
If `track_content=true` recompilation is triggered when the content of `path` changes
2038+
(relative or absolute) is a dependency for precompilation; that is, if `track_content=true`
2039+
the module will need to be recompiled if the content of `path` changes
20412040
(if `path` is a directory the content equals `join(readdir(path))`).
2041+
If `track_content=false` recompilation is triggered when the modification time `mtime` of `path` changes.
20422042
20432043
This is only needed if your module depends on a path that is not used via [`include`](@ref). It has
20442044
no effect outside of compilation.
20452045
20462046
!!! compat "Julia 1.11"
20472047
Keyword argument `track_content` requires at least Julia 1.11.
2048+
An error is now thrown if `path` is not readable.
20482049
"""
2049-
function include_dependency(path::AbstractString; track_content::Bool=false)
2050+
function include_dependency(path::AbstractString; track_content::Bool=true)
20502051
_include_dependency(Main, path, track_content=track_content, path_may_be_dir=true)
20512052
return nothing
20522053
end
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module RelocationTestPkg2
22

3-
include_dependency("foo.txt")
4-
include_dependency("foodir")
3+
include_dependency("foo.txt", track_content=false)
4+
include_dependency("foodir", track_content=false)
55
greet() = print("Hello World!")
66

77
end # module RelocationTestPkg2

0 commit comments

Comments
 (0)