mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-02-06 22:40:36 +08:00
* mingw: Set sawcfile when -xc* is detected. Extend list of detected source
filew.
This commit is contained in:
parent
a7844a1841
commit
6e9b938063
@ -1,3 +1,8 @@
|
|||||||
|
2008-10-12 Christopher Faylor <me+cygwin@cgf.cx>
|
||||||
|
|
||||||
|
* mingw: Set sawcfile when -xc* is detected. Extend list of detected
|
||||||
|
source filew.
|
||||||
|
|
||||||
2008-10-12 Christopher Faylor <me+cygwin@cgf.cx>
|
2008-10-12 Christopher Faylor <me+cygwin@cgf.cx>
|
||||||
|
|
||||||
* mingw: Add more checks to allow more varied use.
|
* mingw: Add more checks to allow more varied use.
|
||||||
|
@ -50,13 +50,14 @@ for f do
|
|||||||
case "$f" in
|
case "$f" in
|
||||||
*cygwin/include*|*newlib|-mno-cygwin) continue ;;
|
*cygwin/include*|*newlib|-mno-cygwin) continue ;;
|
||||||
-c|-E) sawcomp() { return 0; } ;;
|
-c|-E) sawcomp() { return 0; } ;;
|
||||||
|
-xc*) sawcfile() { return 0; } ;;
|
||||||
-isystem) eatnext() { return 0; }; continue ;;
|
-isystem) eatnext() { return 0; }; continue ;;
|
||||||
-o) pushnext() { return 0; } ;;
|
-o) pushnext() { return 0; } ;;
|
||||||
-nostdinc*) sawnostdinc() { return 0; } ;;
|
-nostdinc*) sawnostdinc() { return 0; } ;;
|
||||||
-nostdlib) sawnostdlib() { return 0; } ;;
|
-nostdlib) sawnostdlib() { return 0; } ;;
|
||||||
-shared|-Wl,-shared) sawshared() { return 0; } ;;
|
-shared|-Wl,-shared) sawshared() { return 0; } ;;
|
||||||
-*) ;;
|
-*) ;;
|
||||||
*.cc|*.c) sawcfile() { return 0; } ;;
|
*.cc|*.c|*.s|*.S|*.i|*.ii) sawcfile() { return 0; } ;;
|
||||||
*.o) sawofile() { return 0; };;
|
*.o) sawofile() { return 0; };;
|
||||||
esac
|
esac
|
||||||
fi
|
fi
|
||||||
|
Loading…
x
Reference in New Issue
Block a user