blastrock / pkgj

pkg download & installation directly on Vita
BSD 2-Clause "Simplified" License
1.1k stars 99 forks source link

problem with conan when assembling #419

Closed goupriver closed 9 months ago

goupriver commented 9 months ago

Hello. Sorry for bad english. I want to translation the package. I can't assemble it.

Your ~/.conan2/settings.yml does not contain PSVita, you must update it manually with ci/conan2/settings.yml

I don’t quite understand what to do :)

blastrock commented 9 months ago

Add this line to your ~/.conan2/settings.yml. If you want the fully automated build, you can just run ci/ci.sh from the root of the repository, without touching your ~/.conan2. Otherwise, you can fork this repository and let Github Actions do the build.

goupriver commented 9 months ago

Add this line to your ~/.conan2/settings.yml. If you want the fully automated build, you can just run ci/ci.sh from the root of the repository, without touching your ~/.conan2. Otherwise, you can fork this repository and let Github Actions do the build.

Thank you. I am able to run github actions. But it doesn’t work on my computer. I run ci/ci.sh - and there is this problem.

goupriver commented 9 months ago

Add this line to your ~/.conan2/settings.yml. If you want the fully automated build, you can just run ci/ci.sh from the root of the repository, without touching your ~/.conan2. Otherwise, you can fork this repository and let Github Actions do the build.

managed to solve it.

since I have ubuntu - its repository has GCC version 11. I replaced the variables in the ci.sh file

export CC=gcc-12
export CXX=g++-12

on

export CC=gcc-11
export CXX=g++-11

and manually added this line in my ~/.conan2/settings.yml

and everything worked :)