Overview
| Comment: | Corrected issue where path to headers and libraries was reset when adding libraries and header paths |
|---|---|
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
79472adb571ed1734586d5e4ab5bc831 |
| User & Date: | rkeene on 2014-06-23 01:39:52.278 |
| Other Links: | manifest | tags |
Context
|
2014-06-23
| ||
| 01:40 | Added more tests check-in: 035bcc0134 user: rkeene tags: trunk | |
| 01:39 | Corrected issue where path to headers and libraries was reset when adding libraries and header paths check-in: 79472adb57 user: rkeene tags: trunk | |
| 00:54 | Added Tcl_WideInt support check-in: 60d4d528a0 user: rkeene tags: trunk | |
Changes
Modified tcc4tcl.tcl
from [1b632735c7]
to [8158b2225d].
| ︙ | ︙ | |||
189 190 191 192 193 194 195 |
default {
set tcc_type $state(type)
}
}
tcc4tcl $dir $tcc_type tcc
| | | | | | 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 |
default {
set tcc_type $state(type)
}
}
tcc4tcl $dir $tcc_type tcc
foreach path $state(add_inc_path) {
tcc add_include_path $path
}
foreach path $state(add_lib_path) {
tcc add_library_path $path
}
foreach lib $state(add_lib) {
tcc add_library $lib
}
switch -- $state(type) {
|
| ︙ | ︙ |