summaryrefslogtreecommitdiff
path: root/bridges/source/cpp_uno/cc50_solaris_intel
diff options
context:
space:
mode:
authorHans-Joachim Lankenau <hjs@openoffice.org>2001-12-12 15:43:38 +0000
committerHans-Joachim Lankenau <hjs@openoffice.org>2001-12-12 15:43:38 +0000
commit854a17b6bf9ba2023bd2950b22859d08afaada99 (patch)
tree7f2691bb18cb601943375b63243804f7dca75dac /bridges/source/cpp_uno/cc50_solaris_intel
parent0b18416e0cad73c8ddc708e9c0b28e4d226c9197 (diff)
#95886#, #65293# disable PIC check for this library
Diffstat (limited to 'bridges/source/cpp_uno/cc50_solaris_intel')
-rw-r--r--bridges/source/cpp_uno/cc50_solaris_intel/makefile.mk10
1 files changed, 7 insertions, 3 deletions
diff --git a/bridges/source/cpp_uno/cc50_solaris_intel/makefile.mk b/bridges/source/cpp_uno/cc50_solaris_intel/makefile.mk
index 3c793f9eeb3f..25669da6fc46 100644
--- a/bridges/source/cpp_uno/cc50_solaris_intel/makefile.mk
+++ b/bridges/source/cpp_uno/cc50_solaris_intel/makefile.mk
@@ -2,9 +2,9 @@
#
# $RCSfile: makefile.mk,v $
#
-# $Revision: 1.7 $
+# $Revision: 1.8 $
#
-# last change: $Author: vg $ $Date: 2001-12-11 19:09:34 $
+# last change: $Author: hjs $ $Date: 2001-12-12 16:40:39 $
#
# The Contents of this file are made available subject to the terms of
# either of the following licenses
@@ -76,6 +76,10 @@ NO_BSYMBOLIC=TRUE
# --- Files --------------------------------------------------------
+# disable check for PIC code as it would complain about
+# hand coded assembler
+CHECKFORPIC=
+
.IF "$(COM)$(CPU)" == "C50I" || "$(COM)$(CPU)" == "C52I"
CFLAGS += -O5 -xO5
@@ -107,5 +111,5 @@ SHL1STDLIBS= \
.INCLUDE : target.mk
$(SLO)$/%.obj: %.s
- CC -KPIC -c -o $(SLO)$/$(@:b).o $< ; touch $@
+ CC -c -o $(SLO)$/$(@:b).o $< ; touch $@