I would like to compile a little test application, which is just using Gkt package. It runs in general, but if I try to compile it with PackageCompiler I get the following error message:
julia> create_app("CompilerTest", "bin", force=true)
[ Info: PackageCompiler: creating base system image (incremental=false)...
[ Info: PackageCompiler: creating system image object file, this might take a while...
ERROR: LoadError: LoadError: InitError: could not load library "/home/stefan/.julia/artifacts/29096e59ce220ab1664c8b174bc1be5d28eb8794/lib/libcharset.so"
/home/stefan/.julia/artifacts/29096e59ce220ab1664c8b174bc1be5d28eb8794/lib/libcharset.so: falsche ELF-Klasse: ELFCLASS32
If I understand correctly the charset library is a 32 bit version, but why? Julia is installed as 64 bit version, the two packages Gtk and PackageCompiler are up to date.
What am I doing wrong? Thank you for your feedback.