Overview
| Comment: | Updated to keep GCC headers into gcc directory |
|---|---|
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
e8cbf3c10e9d9be47b95f4d144d17ffa |
| User & Date: | rkeene on 2014-05-05 17:16:00.648 |
| Other Links: | manifest | tags |
Context
|
2014-05-05
| ||
| 17:16 | Updated to build tcc statically and enable stubs check-in: b850d29737 user: rkeene tags: trunk | |
| 17:16 | Updated to keep GCC headers into gcc directory check-in: e8cbf3c10e user: rkeene tags: trunk | |
| 16:29 | Fixed incorrectly applied previous commit check-in: 4e6359ae47 user: rkeene tags: trunk | |
Changes
Modified headers.awk
from [ea9e38a74d]
to [b5faccf87a].
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
/^# [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;
}
if (file !~ /\.h$/) {
next;
| > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
/^# [0-9][0-9]* /{
file = $3;
gsub(/^"/, "", file);
gsub(/"$/, "", file);
destfile = file;
if (!gsub(/^.*\/gcc\/.*\/include\//, "gcc/", destfile)) {
if (!gsub(/^.*\/include\//, "", destfile)) {
if (!gsub(/^.*\/include-fixed\//, "fix/", destfile)) {
next
}
}
}
if (file ~ /</) {
next;
}
if (file !~ /\.h$/) {
next;
|
| ︙ | ︙ |