You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since the "Compatibility for libtesla 1.2.0" commit I get an error when linking.
output: linking TextReaderOverlay-NX.elf /opt/devkitpro/devkitA64/lib/gcc/aarch64-none-elf/9.2.0/../../../../aarch64-none-elf/bin/ld: cannot find -lharfbuzz /opt/devkitpro/devkitA64/lib/gcc/aarch64-none-elf/9.2.0/../../../../aarch64-none-elf/bin/ld: cannot find -lglib-2.0 /opt/devkitpro/devkitA64/lib/gcc/aarch64-none-elf/9.2.0/../../../../aarch64-none-elf/bin/ld: cannot find -lpcre /opt/devkitpro/devkitA64/lib/gcc/aarch64-none-elf/9.2.0/../../../../aarch64-none-elf/bin/ld: cannot find -lgraphite2 collect2: error: ld returned 1 exit status
this is due to libs added by pkg-config --libs --static freetype2 which gets -lfreetype -lbz2 -lz -lpng16 -lm -lm -lz -lharfbuzz -lm -lglib-2.0 -pthread -lpcre -pthread -lgraphite2
I did not find some of these dependencies in dkp-libs.
Did you compile them yourself?
The text was updated successfully, but these errors were encountered:
Thanks for reporting this, it was using pkg-config from core. I've updated the makefile as suggested and it should now build with dkp-libs/switch-freetype
Since the "Compatibility for libtesla 1.2.0" commit I get an error when linking.
output:
linking TextReaderOverlay-NX.elf /opt/devkitpro/devkitA64/lib/gcc/aarch64-none-elf/9.2.0/../../../../aarch64-none-elf/bin/ld: cannot find -lharfbuzz /opt/devkitpro/devkitA64/lib/gcc/aarch64-none-elf/9.2.0/../../../../aarch64-none-elf/bin/ld: cannot find -lglib-2.0 /opt/devkitpro/devkitA64/lib/gcc/aarch64-none-elf/9.2.0/../../../../aarch64-none-elf/bin/ld: cannot find -lpcre /opt/devkitpro/devkitA64/lib/gcc/aarch64-none-elf/9.2.0/../../../../aarch64-none-elf/bin/ld: cannot find -lgraphite2 collect2: error: ld returned 1 exit status
this is due to libs added by
pkg-config --libs --static freetype2
which gets-lfreetype -lbz2 -lz -lpng16 -lm -lm -lz -lharfbuzz -lm -lglib-2.0 -pthread -lpcre -pthread -lgraphite2
I did not find some of these dependencies in dkp-libs.
Did you compile them yourself?
The text was updated successfully, but these errors were encountered: