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

make/linux/makefiles/debug.make

Print this page




  12 # version 2 for more details (a copy is included in the LICENSE file that
  13 # accompanied this code).
  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 CFLAGS += $(DEBUG_CFLAGS/BYFILE)
  31 



  32 # Linker mapfile
  33 MAPFILE = $(GAMMADIR)/make/linux/makefiles/mapfile-vers-debug
  34 
  35 _JUNK_ := $(shell echo -e >&2 ""\
  36  "----------------------------------------------------------------------\n" \
  37  "WARNING: 'make debug' is deprecated. It will be removed in the future.\n" \
  38  "Please use 'make jvmg' to build debug JVM.                            \n" \
  39  "----------------------------------------------------------------------\n")
  40 
  41 VERSION = debug
  42 SYSDEFS += -DASSERT -DDEBUG
  43 PICFLAGS = DEFAULT


  12 # version 2 for more details (a copy is included in the LICENSE file that
  13 # accompanied this code).
  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 CFLAGS += $(DEBUG_CFLAGS/BYFILE)
  31 
  32 # Set the environment variable HOTSPARC_GENERIC to "true"
  33 # to inhibit the effect of the previous line on CFLAGS.
  34 
  35 # Linker mapfile
  36 MAPFILE = $(GAMMADIR)/make/linux/makefiles/mapfile-vers-debug
  37 






  38 VERSION = debug
  39 SYSDEFS += -DASSERT
  40 PICFLAGS = DEFAULT
make/linux/makefiles/debug.make
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File