1 #
   2 # Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved.
   3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4 #
   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
   7 # published by the Free Software Foundation.  Oracle designates this
   8 # particular file as subject to the "Classpath" exception as provided
   9 # by Oracle in the LICENSE file that accompanied this code.
  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 $(eval $(call IncludeCustomExtension, hotspot/lib/Lib-jdk.hotspot.agent.gmk))
  29 
  30 ################################################################################
  31 
  32 ifeq ($(OPENJDK_TARGET_OS), linux)
  33   SA_CFLAGS := -D_FILE_OFFSET_BITS=64
  34 
  35 else ifeq ($(OPENJDK_TARGET_OS), solaris)
  36   SA_LDFLAGS := -mt
  37 
  38 else ifeq ($(OPENJDK_TARGET_OS), macosx)
  39   SA_CFLAGS := -Damd64 -D_GNU_SOURCE -mno-omit-leaf-frame-pointer \
  40       -mstack-alignment=16 -fPIC
  41   LIBSA_EXTRA_SRC := $(SUPPORT_OUTPUTDIR)/gensrc/jdk.hotspot.agent
  42 else ifeq ($(OPENJDK_TARGET_OS), windows)
  43   SA_CFLAGS := -D_WINDOWS -D_DEBUG -D_CONSOLE -D_MBCS -EHsc
  44   ifeq ($(OPENJDK_TARGET_CPU), x86_64)
  45     SA_CXXFLAGS := -DWIN64
  46   else
  47     SA_CXXFLAGS := -RTC1
  48   endif
  49 endif
  50 
  51 ################################################################################
  52 
  53 $(eval $(call SetupJdkLibrary, BUILD_LIBSA, \
  54     NAME := saproc, \
  55     OPTIMIZATION := NONE, \
  56     DISABLED_WARNINGS_microsoft := 4267, \
  57     DISABLED_WARNINGS_gcc := sign-compare, \
  58     DISABLED_WARNINGS_CXX_solstudio := truncwarn unknownpragma, \
  59     CFLAGS := $(CFLAGS_JDKLIB) $(SA_CFLAGS), \
  60     CXXFLAGS := $(CXXFLAGS_JDKLIB) $(SA_CFLAGS) $(SA_CXXFLAGS), \
  61     EXTRA_SRC := $(LIBSA_EXTRA_SRC), \
  62     LDFLAGS := $(LDFLAGS_JDKLIB) $(SA_LDFLAGS), \
  63     LIBS_linux := -lthread_db $(LIBDL), \
  64     LIBS_solaris := -ldl -ldemangle -lthread -lproc, \
  65     LIBS_macosx := -framework Foundation -framework JavaNativeFoundation \
  66         -framework JavaRuntimeSupport -framework Security -framework CoreFoundation, \
  67     LIBS_windows := dbgeng.lib, \
  68 ))
  69 
  70 TARGETS += $(BUILD_LIBSA)
  71 
  72 ################################################################################