jamboree / bustache

C++20 implementation of {{ mustache }}
82 stars 10 forks source link

Will latest versions of Bustache compile on gcc 7.4? #37

Closed luz-arreola closed 9 months ago

luz-arreola commented 9 months ago

I have no problem building Bustache on GCC 13 or CLANG 17. Previously, I have built and used older versions of Bustache with GCC 7.4.

I do not believe that GCC 7.4 has support for C++20 and that this may be why I can't get it to compile. I did build the FMT library to see if that would help but CMake complained about lack of C++20 support.

I am hoping to get this working on Ubuntu 18.04 but I don't want to waste more time unless it is possible to get the latest version working without C++20 support. Thank you.

jamboree commented 9 months ago

C++20 support is required, I have no interest in backporting to older standard. Actually, one purpose of this project is to explore the latest C++ capability.

luz-arreola commented 9 months ago

I understand, and thank you for confirming the C++20 support requirement for the latest versions. Very nice library!