initial support for vc++

git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@723 b08c6af1-5177-4d33-ba66-4b1c6b8b522a
This commit is contained in:
vsc 2002-12-10 19:09:50 +00:00
parent 696fdc338b
commit 6014cd75ca
2 changed files with 12 additions and 4 deletions

8
configure vendored
View File

@ -2519,8 +2519,12 @@ else
case "$target_cpu" in
i?86*)
if test "$CC" = "lcc"
then
CFLAGS="-A -A"
then
CFLAGS="-A -A"
elif test "$CC" = "cl"
then
CFLAGS="/nologo"
CPP="/nologo /E"
fi
;;
hppa*)

View File

@ -235,8 +235,12 @@ else
case "$target_cpu" in
i?86*)
if test "$CC" = "lcc"
then
CFLAGS="-A -A"
then
CFLAGS="-A -A"
elif test "$CC" = "cl"
then
CFLAGS="/nologo"
CPP="/nologo /E"
fi
;;
hppa*)