About Store Forum Documentation Contact



Post Reply 
Engine fails to build on Linux
Author Message
Fex Offline
Gold Supporter

Post: #1
Engine fails to build on Linux
Checked out the latest, 6eac72b8989970ee7a655e0cc9fcb1d6f66ffcde, couldn't compile engine on ubuntu 22.04


../Source/Misc/Application.cpp:508:36: error: no member named 'u' in 'EE::VecB4'
data[2+x+y*src->w()]=c.u;

Had to change it to data[2+x+y*src->w()]=c.data; to compile.
03-31-2024 06:36 AM
Find all posts by this user Quote this message in a reply
Esenthel Offline
Administrator

Post: #2
RE: Engine fails to build on Linux
Thank you smile
I have fixed!
03-31-2024 07:28 AM
Find all posts by this user Quote this message in a reply
Fex Offline
Gold Supporter

Post: #3
RE: Engine fails to build on Linux
Also in Tutorial 6 - Simple 3D

Box(1).draw(BLACK);

needs to be changed to:

Box().setC(1).draw(BLACK);
03-31-2024 07:33 AM
Find all posts by this user Quote this message in a reply
Esenthel Offline
Administrator

Post: #4
RE: Engine fails to build on Linux
Thank you smile
I have fixed!
03-31-2024 07:50 AM
Find all posts by this user Quote this message in a reply
Post Reply