brechtsanders / winlibs_recipes

Recipes for building winlibs packages from source
MIT License
17 stars 1 forks source link

FR: add ecode #41

Closed ghost closed 3 months ago

ghost commented 3 months ago

https://github.com/SpartanJ/eepp/

This is the command I used:

premake5 gmake2
make config=release_x86_64 -C make/windows ecode

If not specify ecode, it will build everything, including demos.

brechtsanders commented 3 months ago

Recipe created, but build fails with:

Error: invalid value 'ARM64' for architecture
ghost commented 3 months ago

Recipe created, but build fails with:

Error: invalid value 'ARM64' for architecture

The command I posted is for building for x86_64. I have no experience with ARM architecture.

ghost commented 3 months ago

@brechtsanders Use this command for ARM64:

make config=release_arm64 -C make/windows ecode
brechtsanders commented 3 months ago

But I wasn't on ARM64, I was on x86_64, so the detection was wrong somehow

ghost commented 3 months ago

But I wasn't on ARM64, I was on x86_64, so the detection was wrong somehow

I have never encountered this problem before. Btw, please update your premake5 recipe to the latest version. Maybe that could help.