From 045b2b16987759acb9bf3a7ce3e77426f0004d48 Mon Sep 17 00:00:00 2001 From: neru Date: Fri, 19 Jun 2026 12:48:20 -0300 Subject: [PATCH] build: attempt to fix std::type_info issue --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 037cf25..ebb274f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -14,7 +14,7 @@ if(MSVC) add_compile_definitions(_AMD64_) endif() else() - add_compile_options(-m64) + add_compile_options(-m64 -fabi-version=0 -frtti) endif() project(hex-unlocked LANGUAGES CXX)