ICU-4116 Improve the Linux PPC pkgdata's usage of genccode.

X-SVN-Rev: 16417
This commit is contained in:
George Rhoten 2004-10-07 20:42:34 +00:00
parent a862144196
commit 23433708ce
3 changed files with 6 additions and 3 deletions

View file

@ -1,6 +1,6 @@
## -*-makefile-*-
## Linux-specific setup for Visual Age
## Copyright (c) 1999-2004, International Business Machines Corporation and
## Copyright (c) 2003-2004, International Business Machines Corporation and
## others. All Rights Reserved.
## Commands to generate dependency files
@ -28,6 +28,9 @@ LD_RPATH= -I
#LD_SONAME =
## The type of assembly needed when pkgdata is used for generating shared libraries.
GENCCODE_ASSEMBLY=-a gcc
## Shared object suffix
SO = so
## Non-shared intermediate object suffix

View file

@ -2267,7 +2267,7 @@ fi
GENCCODE_ASSEMBLY=
case "${host}" in
i*86-*-*bsd*|i*86-*-linux*)
i*86-*-*bsd*|i*86-*-linux*|powerpc*-*-linux*)
if test "$GCC" = yes; then
GENCCODE_ASSEMBLY="-a gcc"
fi ;;

View file

@ -308,7 +308,7 @@ AC_SUBST(HAVE_MMAP)
dnl Check to see if genccode can generate simple assembly.
GENCCODE_ASSEMBLY=
case "${host}" in
i*86-*-*bsd*|i*86-*-linux*)
i*86-*-*bsd*|i*86-*-linux*|powerpc*-*-linux*)
if test "$GCC" = yes; then
dnl We're using gcc, and the simple -a gcc command line works for genccode
GENCCODE_ASSEMBLY="-a gcc"