comparison make/solaris/makefiles/sparcWorks.make @ 6022:74c359c4a9e5

Merge
author dcubed
date Tue, 24 Apr 2012 15:20:40 -0700
parents 7292cff45988 d652a62d6e03
children da91efe96a93
comparison
equal deleted inserted replaced
6019:f33c4d0f4c9e 6022:74c359c4a9e5
1 # 1 #
2 # Copyright (c) 1998, 2011, Oracle and/or its affiliates. All rights reserved. 2 # Copyright (c) 1998, 2012, Oracle and/or its affiliates. All rights reserved.
3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 # 4 #
5 # This code is free software; you can redistribute it and/or modify it 5 # This code is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License version 2 only, as 6 # under the terms of the GNU General Public License version 2 only, as
7 # published by the Free Software Foundation. 7 # published by the Free Software Foundation.
486 486
487 # Flags for Debugging 487 # Flags for Debugging
488 # The -g0 setting allows the C++ frontend to inline, which is a big win. 488 # The -g0 setting allows the C++ frontend to inline, which is a big win.
489 # The -xs setting disables 'lazy debug info' which puts everything in 489 # The -xs setting disables 'lazy debug info' which puts everything in
490 # the .so instead of requiring the '.o' files. 490 # the .so instead of requiring the '.o' files.
491 ifneq ($(OBJCOPY),) 491 ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
492 OPT_CFLAGS += -g0 -xs 492 OPT_CFLAGS += -g0 -xs
493 endif 493 endif
494 DEBUG_CFLAGS = -g 494 DEBUG_CFLAGS = -g
495 FASTDEBUG_CFLAGS = -g0 495 FASTDEBUG_CFLAGS = -g0
496 ifneq ($(OBJCOPY),) 496 ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
497 DEBUG_CFLAGS += -xs 497 DEBUG_CFLAGS += -xs
498 FASTDEBUG_CFLAGS += -xs 498 FASTDEBUG_CFLAGS += -xs
499 endif 499 endif
500 500
501 # Special global options for SS12 501 # Special global options for SS12