我正在尝试编译并获取 julia 模块的可执行文件。该模块在file.jl
其中,它在 2 个不同的文件中使用了另外 2 个模块。我尝试使用juliac.jl
但没有用。
我在 julia 的这个脚本上尝试了包编译器:
using PackageCompiler
build_executable(
"recocido_simulado.jl",#This is the file where is my main
snoopfile = "base_datos.jl", #This is an extra file which I use in the main
builddir = "/"
)