aboutsummaryrefslogtreecommitdiff
path: root/libtcc.c
diff options
context:
space:
mode:
authorJoe Soroka <gits@joesoroka.com>2011-02-01 23:32:53 -0800
committerJoe Soroka <gits@joesoroka.com>2011-02-01 23:32:53 -0800
commite939c4072ceeb0bc4c8dca7603cfbb73648cb9d4 (patch)
treec1c9f21b66ceb9f09233514258fc12d31d4ba135 /libtcc.c
parentb88677454b2980fe97fa62e5de1f023fb8619100 (diff)
downloadtinycc-e939c4072ceeb0bc4c8dca7603cfbb73648cb9d4.tar.gz
tinycc-e939c4072ceeb0bc4c8dca7603cfbb73648cb9d4.tar.bz2
add -isystem cmdline option
Diffstat (limited to 'libtcc.c')
-rw-r--r--libtcc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libtcc.c b/libtcc.c
index e538321..64e5519 100644
--- a/libtcc.c
+++ b/libtcc.c
@@ -1274,7 +1274,7 @@ LIBTCCAPI int tcc_set_output_type(TCCState *s, int output_type)
if (!s->nostdinc) {
/* default include paths */
- /* XXX: reverse order needed if -isystem support */
+ /* -isystem paths have already been handled */
#ifndef TCC_TARGET_PE
tcc_add_sysinclude_path(s, CONFIG_SYSROOT "/usr/local/include");
tcc_add_sysinclude_path(s, CONFIG_SYSROOT "/usr/include");