pthom / imgui_bundle

Dear ImGui Bundle: an extensive set of Ready-to-use widgets and libraries, based on ImGui. Start your first app in 5 lines of code, or less. Whether you prefer Python or C++, this pack has your back!
https://pthom.github.io/imgui_bundle/
MIT License
590 stars 62 forks source link

gcc 8 support? (Ubuntu 20.04 LTS) #179

Closed thejasonfisher closed 4 months ago

thejasonfisher commented 5 months ago

I think I'm stuck with gcc 8 (and ideally python 3.8.10) on an edge-device OS limitation of Ubuntu 20.04 -- causes magic_enum issues that I think are breaking the compile and pip install.

Is there an older version that might be compatible?

pthom commented 5 months ago

Could you try to install clang, it should be possible to install a more recent clang on ubuntu. Concerning python, I recommend python 3.9+, but you can try with python 3.8

thejasonfisher commented 4 months ago

Sorry, I was able to switch to gcc-9 and compile/install successfully. Just migrated my application over and it is going great.

Thank you!