From 75f2167111696e569289d323c5b85ad5ad5a3534 Mon Sep 17 00:00:00 2001 From: s-ol Date: Thu, 17 Oct 2019 23:31:45 +0200 Subject: [PATCH] compile without exception support to link without stdc++ --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 6659691..e9fa543 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,7 @@ OBJS += ./imgui/imgui_draw.o OBJS += ./imgui/imgui_demo.o OBJS += ./imgui/imgui_widgets.o -CXXFLAGS=-O2 +CXXFLAGS=-O2 -fno-exceptions -fno-rtti UNAME_S := $(shell uname -s)