File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ calling into the Julia runtime library (`libjulia`) from a C program. A quite
1414detail set of docs for how this is done can be found at the [ embedding chapter
1515in the Julia manual] ( https://docs.julialang.org/en/v1/manual/embedding/ ) and it
1616is recommended to read before reading on. Since this is supposed to highlight
17- the interals of PackageCompiler, will not use the conveniences shown in that
17+ the internals of PackageCompiler, will not use the conveniences shown in that
1818section (e.g. the ` julia-config.jl ` script) but it is good to know they exist.
1919
2020A rough outline of the steps we will take to create an executable are:
@@ -96,7 +96,7 @@ julia --startup-file=no --trace-compile=app_precompile.jl MyApp.jl "FL_insurance
9696
9797The ` custom_sysimage.jl ` script look similar to before with the exception that
9898we added an include of the app file inside the anonymous module where the
99- precompiliation statements are evaluated in:
99+ precompilation statements are evaluated in:
100100
101101``` julia
102102Base. init_depot_path ()
Original file line number Diff line number Diff line change @@ -209,7 +209,7 @@ The plan is that on macOS and Linux the files are structured as:
209209On Windows, we will just store everything in ` bin ` due to no convenient way of using ` RPATH ` .
210210
211211We create a new folder ` lib ` and copy the libraries into it (and remove the
212- sysimage, since we will create cusom sysimage anyway):
212+ sysimage, since we will create custom sysimage anyway):
213213
214214```
215215~/MyApp
Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ Here you have different options depending on your operating system and needs.
8787
88881 . Install the libraries in a non-standard location, and update an appropriate environment
8989 variable to point to the library location.
90- * On Linux and other Unix-like OSes , run ` export LD_LIBRARY_PATH=/path/to/lib:$LD_LIBRARY_PATH `
90+ * On Linux and other Unix-like operating systems , run ` export LD_LIBRARY_PATH=/path/to/lib:$LD_LIBRARY_PATH `
9191 * On Mac, run ` export DYLD_FALLBACK_LIBRARY_PATH=/path/to/lib:$DYLD_FALLBACK_LIBRARY_PATH `
9292 * On Windows, include the library location in ` PATH ` . (* NOTE: not tested--does this work? * )
9393
You can’t perform that action at this time.
0 commit comments