Overview
Comment: | Updated to move GCC fixed headers into a fix directory |
---|---|
Timelines: | family | ancestors | descendants | both | trunk | 0.1 |
Files: | files | file ages | folders |
SHA1: |
d3f22e0fb0ad8a79d9654c6f5b35c362 |
User & Date: | rkeene on 2014-05-02 07:16:09 |
Other Links: | manifest | tags |
Context
2014-05-02
| ||
15:50 | Added small patch to silence spurious warnings check-in: 782d14bacd user: rkeene tags: trunk | |
07:16 | Updated to move GCC fixed headers into a fix directory check-in: d3f22e0fb0 user: rkeene tags: trunk, 0.1 | |
07:08 | Experimenting with compiling libtcc1.a with gcc check-in: 8a389f5b8d user: rkeene tags: trunk | |
Changes
Modified headers.awk from [4c335dbe1b] to [ea9e38a74d].
1 2 3 4 5 6 7 8 | /^# [0-9][0-9]* /{ file = $3; gsub(/^"/, "", file); gsub(/"$/, "", file); destfile = file; if (!gsub(/^.*\/include\//, "", destfile)) { | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | /^# [0-9][0-9]* /{ file = $3; gsub(/^"/, "", file); gsub(/"$/, "", file); destfile = file; if (!gsub(/^.*\/include\//, "", destfile)) { if (!gsub(/^.*\/include-fixed\//, "fix/", destfile)) { next } } if (file ~ /</) { next; } |
︙ | ︙ |