Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
Demolishun34913212d@lungdart its an older embedded system with limited space. We talked about this, but we were unsure how much flash it would eat up to add more libraries to the system. They avoided updating the system due to framebuffer incompatibilities with Qt5. That is why it is Qt4. I don't know if this will be the final version of this. Right now I am seeing if it can be done. Barring compiler bugs it "should" work.
I did look at maybe getting a newer compiler. But I have not found if gcc 4.8 code will work with gcc 5 code ABI wise. This would require more research I think. Regardless we are stuck with Qt 4 for the main system. My code is a separate executable so may have more options. -
atheist9929211dMe meanwhile fucking with compiler setup trying to get the latest and greatest c++23 working
Related Rants
-
xjose97x19Just saw a variable in C named like this: long time_ago; //in a galaxy far away I laughed no stop.
-
Unskipp24So this happened last night... Gf: my favorite bra is not fitting me anymore Me: get a new one ? Gf: but it ...
-
sam966911Hats off to this lady .... I would have just flipped the machine
Currently trying to make newer C++11 code run on a gcc 4.8 compiler. Also making Qt 5 code run on Qt 4.8. Enabling experimental flags on gcc like std=c++1y and turning on flags to turn off complaints about pre c++11 code. Have my cake and eat it too. My favorite so far it to create a proxy object so I can connect lambdas to Qt signals. This is supported in Qt 5, but not Qt 4. I feel like I am traveling back in time to when stuff was shittier standards wise.
rant
new to old
c++
legacy