-
-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Alpine linux error imgui #53
Comments
Hello
|
Well apparently I already found the bug was that it detected the x86 architecture and I have x86_64 and apparently passing this command
And here's the mistake. |
Please try building latest commit e106b75, there were few issues in code that prevented it from building on certain compilers. In case of merge conflicts, reset branch to origin (I was rebasing the code):
|
apparently I cloned the code again and compile with these instructions
and I compile without errors but at the time of running the emulator says to me Illegal instruction |
It seems like you have older cpu which doesn't support AVX. You have to either build 32 bit version or remove this line from premake5.lua and rebuild the whole project (as 64 bit version) |
Thank you very much but now that I did it gives me another error here the error [GL] Cannot load render shader: File doesn't exists. |
Oops, I forgot to fix that. It will be fixed in future commits. Simply comment line |
I have a mistake in compiling with imgui Here's the mistake.
imgui.cpp
In file included from ../../../externals/imgui/imgui.cpp:977:
../../../externals/imgui/imgui.h:1205:56: error: 'operator new' takes type 'size_t' ('unsigned int') as first parameter [-fpermissive]
inline void* operator new(size_t, ImNewDummy, void* ptr) { return ptr; }
^
make[1]: *** [Makefile:187: obj/x86/debug/imgui.o] Error 1
make: *** [Makefile:89: imgui] Error 2
The text was updated successfully, but these errors were encountered: