我正在尝试编译并获取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 = "/"
)