make/lib/Lib-jdk.hprof.agent.gmk

Print this page
rev 10532 : [mq]: 8043936-hprof-demo


  10 #
  11 # This code is distributed in the hope that it will be useful, but WITHOUT
  12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14 # version 2 for more details (a copy is included in the LICENSE file that
  15 # accompanied this code).
  16 #
  17 # You should have received a copy of the GNU General Public License version
  18 # 2 along with this work; if not, write to the Free Software Foundation,
  19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20 #
  21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22 # or visit www.oracle.com if you need additional information or have any
  23 # questions.
  24 #
  25 
  26 include LibCommon.gmk
  27 
  28 ################################################################################
  29 
  30 BUILD_LIBHPROF_SRC := $(JDK_TOPDIR)/src/demo/share/jvmti/hprof \
  31     $(JDK_TOPDIR)/src/demo/$(OPENJDK_TARGET_OS_API_DIR)/jvmti/hprof
  32 BUILD_LIBHPROF_CFLAGS := $(addprefix -I, $(BUILD_LIBHPROF_SRC)) \
  33     -I$(JDK_TOPDIR)/src/demo/share/jvmti/java_crw_demo
  34 
  35 BUILD_LIBHPROF_LDFLAGS :=
  36 
  37 LIBHPROF_OPTIMIZATION := HIGHEST
  38 ifneq ($(findstring $(OPENJDK_TARGET_OS), solaris linux), )
  39   ifeq ($(ENABLE_DEBUG_SYMBOLS), true)
  40     LIBHPROF_OPTIMIZATION := LOW
  41   endif
  42 endif
  43 
  44 $(eval $(call SetupNativeCompilation,BUILD_LIBHPROF, \
  45     LIBRARY := hprof, \
  46     OUTPUT_DIR := $(INSTALL_LIBRARIES_HERE), \
  47     SRC := $(BUILD_LIBHPROF_SRC), \
  48     LANG := C, \
  49     OPTIMIZATION := $(LIBHPROF_OPTIMIZATION), \
  50     CFLAGS := $(CFLAGS_JDKLIB) $(CFLAGS_WARNINGS_ARE_ERRORS) \
  51         $(BUILD_LIBHPROF_CFLAGS), \




  10 #
  11 # This code is distributed in the hope that it will be useful, but WITHOUT
  12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14 # version 2 for more details (a copy is included in the LICENSE file that
  15 # accompanied this code).
  16 #
  17 # You should have received a copy of the GNU General Public License version
  18 # 2 along with this work; if not, write to the Free Software Foundation,
  19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20 #
  21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22 # or visit www.oracle.com if you need additional information or have any
  23 # questions.
  24 #
  25 
  26 include LibCommon.gmk
  27 
  28 ################################################################################
  29 
  30 BUILD_LIBHPROF_SRC := $(call FindSrcDirsForLib, jdk.hprof.agent, hprof)
  31 
  32 BUILD_LIBHPROF_CFLAGS := $(addprefix -I, $(BUILD_LIBHPROF_SRC)) \
  33     -I$(JDK_TOPDIR)/src/demo/share/jvmti/java_crw_demo
  34     
  35 BUILD_LIBHPROF_LDFLAGS :=
  36 
  37 LIBHPROF_OPTIMIZATION := HIGHEST
  38 ifneq ($(findstring $(OPENJDK_TARGET_OS), solaris linux), )
  39   ifeq ($(ENABLE_DEBUG_SYMBOLS), true)
  40     LIBHPROF_OPTIMIZATION := LOW
  41   endif
  42 endif
  43 
  44 $(eval $(call SetupNativeCompilation,BUILD_LIBHPROF, \
  45     LIBRARY := hprof, \
  46     OUTPUT_DIR := $(INSTALL_LIBRARIES_HERE), \
  47     SRC := $(BUILD_LIBHPROF_SRC), \
  48     LANG := C, \
  49     OPTIMIZATION := $(LIBHPROF_OPTIMIZATION), \
  50     CFLAGS := $(CFLAGS_JDKLIB) $(CFLAGS_WARNINGS_ARE_ERRORS) \
  51         $(BUILD_LIBHPROF_CFLAGS), \