diff options
-rw-r--r-- | bridges/source/cpp_uno/shared/makefile.mk | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/bridges/source/cpp_uno/shared/makefile.mk b/bridges/source/cpp_uno/shared/makefile.mk index 1f7489e8d63a..ebf6306bd2ad 100644 --- a/bridges/source/cpp_uno/shared/makefile.mk +++ b/bridges/source/cpp_uno/shared/makefile.mk @@ -4,9 +4,9 @@ # # $RCSfile: makefile.mk,v $ # -# $Revision: 1.3 $ +# $Revision: 1.4 $ # -# last change: $Author: rt $ $Date: 2005-09-07 22:34:55 $ +# last change: $Author: obo $ $Date: 2007-07-18 12:16:23 $ # # The Contents of this file are made available subject to # the terms of GNU Lesser General Public License Version 2.1. @@ -50,4 +50,12 @@ SLOFILES = \ $(SLO)$/vtablefactory.obj \ $(SLO)$/vtables.obj +# Disable optimization for cppinterfaceproxy.cxx - +# attribute constructor / destructor do not get called otherwise. +.IF "$(COM)" == "GCC" +NOOPTFILES = \ + $(SLO)$/cppinterfaceproxy.obj +.ENDIF + + .INCLUDE: target.mk |