[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Tinycc-devel] Tinycc-devel
From: |
grischka |
Subject: |
Re: [Tinycc-devel] Tinycc-devel |
Date: |
Wed, 2 Jan 2008 21:23:17 +0100 |
From: "Timovj Lahde":
> One idea for tcc.c line 133 in function:
>
> TCCState *tcc_new(void)
>
>
> /* default library paths */
> #ifdef TCC_TARGET_PE
> {
> tcc_lib_path = w32_tcc_lib_path(); <-- added
> char buf[1024];
> snprintf(buf, sizeof(buf), "%s/lib", tcc_lib_path);
> tcc_add_library_path(s, buf);
There is a problem with the -B option currently because it can
set tcc_lib_path to something different.
--- grischka