summaryrefslogtreecommitdiff
path: root/bridges/Library_gcc3_linux_hppa.mk
diff options
context:
space:
mode:
authorPeter Foley <pefoley2@verizon.net>2013-03-14 21:21:28 -0400
committerTor Lillqvist <tml@iki.fi>2013-03-18 07:53:21 +0000
commita1fbebff263f65bc25c0c955da2e68e90cd2bb03 (patch)
treede1a32ca8c73f256364160a829b89143e8a041a0 /bridges/Library_gcc3_linux_hppa.mk
parentf9f75ee3697f4fcbd94a4b005227860b9dd099f8 (diff)
Cleanup bridges module
Reduce excessive copy-pasting Remove bridges for C50 and C52 compilers which aren't in configure any more Prevent LTO from being used in the bridges module because it causes crashes Change-Id: I7ff85c2e8d6ff89c5acd48aea415e0960b3ef812 Reviewed-on: https://gerrit.libreoffice.org/2765 Reviewed-by: Tor Lillqvist <tml@iki.fi> Tested-by: Tor Lillqvist <tml@iki.fi>
Diffstat (limited to 'bridges/Library_gcc3_linux_hppa.mk')
-rw-r--r--bridges/Library_gcc3_linux_hppa.mk71
1 files changed, 0 insertions, 71 deletions
diff --git a/bridges/Library_gcc3_linux_hppa.mk b/bridges/Library_gcc3_linux_hppa.mk
deleted file mode 100644
index bb2e90d456bc..000000000000
--- a/bridges/Library_gcc3_linux_hppa.mk
+++ /dev/null
@@ -1,71 +0,0 @@
-# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
-#
-# This file is part of the LibreOffice project.
-#
-# This Source Code Form is subject to the terms of the Mozilla Public
-# License, v. 2.0. If a copy of the MPL was not distributed with this
-# file, You can obtain one at http://mozilla.org/MPL/2.0/.
-#
-
-ifneq ($(strip $(bridges_SELECTED_BRIDGE)),)
-$(eval $(call gb_Output_error,cannot build bridge gcc3_linux_hppa: bridge $(bridges_SELECTED_BRIDGE) already selected))
-endif
-bridges_SELECTED_BRIDGE := gcc3_linux_hppa
-
-$(eval $(call gb_Library_Library,gcc3_uno))
-
-$(eval $(call gb_Library_use_external,gcc3_uno,boost_headers))
-
-$(eval $(call gb_Library_use_internal_comprehensive_api,gcc3_uno,\
- udkapi \
-))
-
-$(eval $(call gb_Library_set_include,gcc3_uno,\
- -I$(SRCDIR)/bridges/inc \
- $$(INCLUDE) \
-))
-
-ifeq ($(HAVE_POSIX_FALLOCATE),YES)
-$(eval $(call gb_Library_add_defs,gcc3_uno,\
- -DHAVE_POSIX_FALLOCATE \
-))
-endif
-
-# In case someone enabled the non-standard -fomit-frame-pointer which does not
-# work with the .cxx sources of this library.
-$(eval $(call gb_Library_add_cxxflags,gcc3_uno,\
- -fno-omit-frame-pointer \
- -fno-strict-aliasing \
-))
-
-$(eval $(call gb_Library_add_libs,gcc3_uno,\
- -ldl \
-))
-
-$(eval $(call gb_Library_use_libraries,gcc3_uno,\
- cppu \
- sal \
-))
-
-$(eval $(call gb_Library_add_asmobjects,gcc3_uno,\
- bridges/source/cpp_uno/gcc3_linux_hppa/call \
-))
-
-$(eval $(call gb_Library_add_exception_objects,gcc3_uno,\
- bridges/source/cpp_uno/shared/bridge \
- bridges/source/cpp_uno/shared/component \
- bridges/source/cpp_uno/shared/types \
- bridges/source/cpp_uno/shared/unointerfaceproxy \
- bridges/source/cpp_uno/shared/vtablefactory \
- bridges/source/cpp_uno/shared/vtables \
-))
-
-$(eval $(call gb_Library_add_cxxobjects,gcc3_uno,\
- bridges/source/cpp_uno/gcc3_linux_hppa/cpp2uno \
- bridges/source/cpp_uno/gcc3_linux_hppa/except \
- bridges/source/cpp_uno/gcc3_linux_hppa/uno2cpp \
- bridges/source/cpp_uno/shared/cppinterfaceproxy \
- , $(gb_COMPILERNOOPTFLAGS) $(gb_LinkTarget_EXCEPTIONFLAGS) \
-))
-
-# vim: set noet sw=4 ts=4: