From 9ce588a4b8a4cd497e37ca77fe5efbc395822c93 Mon Sep 17 00:00:00 2001 From: Aetias Date: Mon, 8 Apr 2024 23:24:50 +0200 Subject: [PATCH] Update include directories in `m2ctx` --- tools/m2ctx.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tools/m2ctx.py b/tools/m2ctx.py index 4cf897ec..5d017508 100755 --- a/tools/m2ctx.py +++ b/tools/m2ctx.py @@ -7,7 +7,9 @@ import os from pathlib import Path CXX_FLAGS = [ - '-Iinclude' + '-nostdinc', + '-Iinclude', + '-Ilibs/c/include' ] script_dir = Path(os.path.dirname(os.path.realpath(__file__)))