JuliaLang / PackageCompiler.jl

Compile your Julia Package
https://julialang.github.io/PackageCompiler.jl/dev/
MIT License
1.43k stars 193 forks source link

Possibility to strip libs and executables #189

Closed aistrych closed 4 years ago

aistrych commented 5 years ago

Created executables and libraries are not stripped from debug symbols and info. Especially the big ones like libjulia libLLVM, application library and so on. I know it can be done in a shell after whole building process but I think it would be good to have that option also inside PackageCompiler. It can save some disk space, especially when you have several independent Julia apps.

KristofferC commented 4 years ago

This feels out of scope for the package. We need to implement it for all platforms etc. You can easily just write your own little script if it is important to you.