@@ -34,6 +34,7 @@ if Sys.iswindows()
3434 cp_q (" ../stdlib/Unicode/docs/src/index.md" , " src/stdlib/unicode.md" )
3535 cp_q (" ../stdlib/Distributed/docs/src/index.md" , " src/stdlib/distributed.md" )
3636 cp_q (" ../stdlib/Printf/docs/src/index.md" , " src/stdlib/printf.md" )
37+ cp_q (" ../stdlib/Libdl/docs/src/index.md" , " src/stdlib/libdl.md" )
3738else
3839 symlink_q (" ../../../stdlib/DelimitedFiles/docs/src/index.md" , " src/stdlib/delimitedfiles.md" )
3940 symlink_q (" ../../../stdlib/Test/docs/src/index.md" , " src/stdlib/test.md" )
4849 symlink_q (" ../../../stdlib/Unicode/docs/src/index.md" , " src/stdlib/unicode.md" )
4950 symlink_q (" ../../../stdlib/Distributed/docs/src/index.md" , " src/stdlib/distributed.md" )
5051 symlink_q (" ../../../stdlib/Printf/docs/src/index.md" , " src/stdlib/printf.md" )
52+ symlink_q (" ../../../stdlib/Libdl/docs/src/index.md" , " src/stdlib/libdl.md" )
5153end
5254
5355const PAGES = [
@@ -128,6 +130,7 @@ const PAGES = [
128130 " stdlib/iterativeeigensolvers.md" ,
129131 " stdlib/unicode.md" ,
130132 " stdlib/printf.md" ,
133+ " stdlib/libdl.md" ,
131134 ],
132135 " Developer Documentation" => [
133136 " devdocs/reflection.md" ,
@@ -163,12 +166,12 @@ const PAGES = [
163166]
164167
165168using DelimitedFiles, Test, Mmap, SharedArrays, Profile, Base64, FileWatching, CRC32c,
166- Dates, IterativeEigensolvers, Unicode, Distributed, Printf
169+ Dates, IterativeEigensolvers, Unicode, Distributed, Printf, Libdl
167170
168171makedocs (
169172 build = joinpath (pwd (), " _build/html/en" ),
170173 modules = [Base, Core, BuildSysImg, DelimitedFiles, Test, Mmap, SharedArrays, Profile,
171- Base64, FileWatching, Dates, IterativeEigensolvers, Unicode, Distributed, Printf],
174+ Base64, FileWatching, Dates, IterativeEigensolvers, Unicode, Distributed, Printf, Libdl ],
172175 clean = false ,
173176 doctest = " doctest" in ARGS ,
174177 linkcheck = " linkcheck" in ARGS ,
0 commit comments