make/linux/makefiles/debug.make
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File hotspot.walk.1 Sdiff make/linux/makefiles

make/linux/makefiles/debug.make

Print this page




  14 #
  15 # You should have received a copy of the GNU General Public License version
  16 # 2 along with this work; if not, write to the Free Software Foundation,
  17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18 #
  19 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20 # or visit www.oracle.com if you need additional information or have any
  21 # questions.
  22 #
  23 #
  24 
  25 # Sets make macros for making debug version of VM
  26 
  27 # Compiler specific DEBUG_CFLAGS are passed in from gcc.make, sparcWorks.make
  28 DEBUG_CFLAGS/DEFAULT= $(DEBUG_CFLAGS)
  29 DEBUG_CFLAGS/BYFILE = $(DEBUG_CFLAGS/$@)$(DEBUG_CFLAGS/DEFAULT$(DEBUG_CFLAGS/$@))
  30 
  31 # _NMT_NOINLINE_ informs NMT that no inlining by Compiler
  32 CFLAGS += $(DEBUG_CFLAGS/BYFILE) -D_NMT_NOINLINE_
  33 



  34 # Set the environment variable HOTSPARC_GENERIC to "true"
  35 # to inhibit the effect of the previous line on CFLAGS.
  36 
  37 # Linker mapfile
  38 MAPFILE = $(GAMMADIR)/make/linux/makefiles/mapfile-vers-debug
  39 
  40 VERSION = debug
  41 SYSDEFS += -DASSERT
  42 PICFLAGS = DEFAULT


  14 #
  15 # You should have received a copy of the GNU General Public License version
  16 # 2 along with this work; if not, write to the Free Software Foundation,
  17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18 #
  19 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20 # or visit www.oracle.com if you need additional information or have any
  21 # questions.
  22 #
  23 #
  24 
  25 # Sets make macros for making debug version of VM
  26 
  27 # Compiler specific DEBUG_CFLAGS are passed in from gcc.make, sparcWorks.make
  28 DEBUG_CFLAGS/DEFAULT= $(DEBUG_CFLAGS)
  29 DEBUG_CFLAGS/BYFILE = $(DEBUG_CFLAGS/$@)$(DEBUG_CFLAGS/DEFAULT$(DEBUG_CFLAGS/$@))
  30 
  31 # _NMT_NOINLINE_ informs NMT that no inlining by Compiler
  32 CFLAGS += $(DEBUG_CFLAGS/BYFILE) -D_NMT_NOINLINE_
  33 
  34 # Frame pointer will always be present so native stack walking is supported.
  35 CFLAGS += -DPLATFORM_NATIVE_STACK_WALKING_SUPPORTED=1
  36 
  37 # Set the environment variable HOTSPARC_GENERIC to "true"
  38 # to inhibit the effect of the previous line on CFLAGS.
  39 
  40 # Linker mapfile
  41 MAPFILE = $(GAMMADIR)/make/linux/makefiles/mapfile-vers-debug
  42 
  43 VERSION = debug
  44 SYSDEFS += -DASSERT
  45 PICFLAGS = DEFAULT
make/linux/makefiles/debug.make
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File