summarylogtreecommitdiffstats
path: root/chibicc-include-path.patch
blob: 0adcb758dbf659edc86ce4bc78e4f03e907f8f6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
diff -rauN chibicc-main/main.c chibicc-include-path-patch/main.c
--- chibicc-main/main.c 2020-12-07 04:00:06.000000000 +0100
+++ chibicc-include-path-patch/main.c   2024-08-01 10:38:28.167596211 +0200
@@ -55,6 +55,8 @@
   // to ./include relative to argv[0].
   strarray_push(&include_paths, format("%s/include", dirname(strdup(argv0))));

+  strarray_push(&include_paths, "/usr/lib/chibicc/include");
+
   // Add standard include paths.
   strarray_push(&include_paths, "/usr/local/include");
   strarray_push(&include_paths, "/usr/include/x86_64-linux-gnu");