src/share/tools/hsdis/Makefile

Tue, 25 Sep 2018 16:23:35 +0200

author
sgehwolf
date
Tue, 25 Sep 2018 16:23:35 +0200
changeset 9493
882a55369341
parent 9476
9a18c71dbd25
child 9572
624a0741915c
permissions
-rw-r--r--

8073139: PPC64: User-visible arch directory and os.arch value on ppc64le cause issues with Java tooling
Reviewed-by: erikj, goetz, dholmes

     1 #
     2 # Copyright (c) 2008, 2013, Oracle and/or its affiliates. All rights reserved.
     3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4 #
     5 # The Universal Permissive License (UPL), Version 1.0
     6 #
     7 # Subject to the condition set forth below, permission is hereby granted to
     8 # any person obtaining a copy of this software, associated documentation
     9 # and/or data (collectively the "Software"), free of charge and under any
    10 # and all copyright rights in the Software, and any and all patent rights
    11 # owned or freely licensable by each licensor hereunder covering either (i)
    12 # the unmodified Software as contributed to or provided by such licensor,
    13 # or (ii) the Larger Works (as defined below), to deal in both
    14 #
    15 # (a) the Software, and
    16 #
    17 # (b) any piece of software and/or hardware listed in the lrgrwrks.txt file
    18 # if one is included with the Software (each a "Larger Work" to which the
    19 # Software is contributed by such licensors),
    20 #
    21 # without restriction, including without limitation the rights to copy,
    22 # create derivative works of, display, perform, and distribute the Software
    23 # and make, use, sell, offer for sale, import, export, have made, and have
    24 # sold the Software and the Larger Work(s), and to sublicense the foregoing
    25 # rights on either these or other terms.
    26 #
    27 # This license is subject to the following condition:
    28 #
    29 # The above copyright notice and either this complete permission notice or
    30 # at a minimum a reference to the UPL must be included in all copies or
    31 # substantial portions of the Software.
    32 #
    33 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
    34 # OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
    35 # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
    36 # NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
    37 # DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
    38 # OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
    39 # USE OR OTHER DEALINGS IN THE SOFTWARE.
    40 #
    41 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    42 # or visit www.oracle.com if you need additional information or have any
    43 # questions.
    44 #
    45 #
    47 # Single gnu makefile for solaris, linux and windows (windows requires cygwin and mingw)
    49 # Default arch; it is changed below as needed.
    50 ARCH		= i386
    51 OS		= $(shell uname)
    52 AR		= ar
    54 ## OS = SunOS ##
    55 ifeq		($(OS),SunOS)
    56 CPU             = $(shell uname -p)
    57 ARCH1=$(CPU:i586=i386)
    58 ARCH=$(ARCH1:i686=i386)
    59 OS		= solaris
    60 CC 		= cc
    61 CFLAGS		+= -KPIC
    62 ifdef LP64
    63 ifeq ($(ARCH),sparc)
    64 ARCH            = sparcv9
    65 endif
    66 ifeq ($(ARCH),i386)
    67 ARCH            = amd64
    68 endif
    69 endif
    70 CFLAGS/sparcv9	+= -xarch=v9
    71 CFLAGS/amd64	+= -m64
    72 CFLAGS		+= $(CFLAGS/$(ARCH))
    73 DLDFLAGS	+= -G
    74 LDFLAGS         += -ldl
    75 OUTFLAGS	+= -o $@
    76 LIB_EXT		= .so
    77 else
    78 ## OS = Linux ##
    79 ifeq		($(OS),Linux)
    80 ifneq           ($(MINGW),)
    81 LIB_EXT		= .dll
    82 CPPFLAGS += -I$(TARGET_DIR)/include
    83 LDFLAGS += -L$(TARGET_DIR)/lib
    84 OS=windows
    85 ifneq           ($(findstring x86_64-,$(MINGW)),)
    86 ARCH=amd64
    87 else
    88 ARCH=i386
    89 endif
    90 CC 		= $(MINGW)-gcc
    91 CONFIGURE_ARGS= --host=$(MINGW) --target=$(MINGW)
    92 else   #linux
    93 CPU             = $(shell uname -m)
    94 ARCH1=$(CPU:x86_64=amd64)
    95 ARCH=$(ARCH1:i686=i386)
    96 ifdef LP64
    97 CFLAGS/sparcv9	+= -m64
    98 CFLAGS/amd64	+= -m64
    99 CFLAGS/ppc64	+= -m64
   100 CFLAGS/ppc64le  += -m64 -DABI_ELFv2
   101 else
   102 ARCH=$(ARCH1:amd64=i386)
   103 CFLAGS/i386	+= -m32
   104 CFLAGS/sparc	+= -m32
   105 endif
   106 CFLAGS		+= $(CFLAGS/$(ARCH))
   107 CFLAGS		+= -fPIC
   108 OS		= linux
   109 LIB_EXT		= .so
   110 CC 		= gcc
   111 endif
   112 CFLAGS		+= -O
   113 DLDFLAGS	+= -shared
   114 LDFLAGS         += -ldl
   115 OUTFLAGS	+= -o $@
   116 else
   117 ## OS = AIX ##
   118 ifeq		($(OS),AIX)
   119 OS              = aix
   120 ARCH            = ppc64
   121 CC              = xlc_r
   122 CFLAGS          += -DAIX -g -qpic=large -q64
   123 CFLAGS/ppc64    += -q64
   124 AR              = ar -X64
   125 DLDFLAGS        += -qmkshrobj -lz
   126 OUTFLAGS        += -o $@
   127 LIB_EXT		= .so
   128 else
   129 ## OS = Darwin ##
   130 ifeq ($(OS),Darwin)
   131 CPU             = $(shell uname -m)
   132 ARCH1=$(CPU:x86_64=amd64)
   133 ARCH=$(ARCH1:i686=i386)
   134 ifdef LP64
   135 CFLAGS/sparcv9  += -m64
   136 CFLAGS/amd64    += -m64
   137 else
   138 ARCH=$(ARCH1:amd64=i386)
   139 CFLAGS/i386     += -m32
   140 CFLAGS/sparc    += -m32
   141 endif # LP64
   142 CFLAGS          += $(CFLAGS/$(ARCH))
   143 CFLAGS          += -fPIC
   144 OS              = macosx
   145 LIB_EXT         = .dylib
   146 CC              = gcc
   147 CFLAGS          += -O
   148 # CFLAGS        += -DZ_PREFIX
   149 DLDFLAGS        += -shared
   150 DLDFLAGS        += -lz
   151 LDFLAGS         += -ldl
   152 OUTFLAGS        += -o $@
   153 else
   154 ## OS = Windows ##
   155 OS		= windows
   156 CC		= gcc
   157 CFLAGS		+=  /nologo /MD /W3 /WX /O2 /Fo$(@:.dll=.obj) /Gi-
   158 CFLAGS		+= LIBARCH=\"$(LIBARCH)\"
   159 DLDFLAGS	+= /dll /subsystem:windows /incremental:no \
   160 			/export:decode_instruction
   161 OUTFLAGS	+= /link /out:$@
   162 LIB_EXT		= .dll
   163 endif   # Darwin
   164 endif   # AIX
   165 endif	# Linux
   166 endif	# SunOS
   168 LIBARCH		= $(ARCH)
   169 ifdef		LP64
   170 LIBARCH64/sparc	= sparcv9
   171 LIBARCH64/i386	= amd64
   172 LIBARCH64	= $(LIBARCH64/$(ARCH))
   173 ifneq		($(LIBARCH64),)
   174 LIBARCH		= $(LIBARCH64)
   175 endif   # LIBARCH64/$(ARCH)
   176 endif   # LP64
   178 JDKARCH=$(LIBARCH:i386=i586)
   180 ifeq            ($(BINUTILS),)
   181 # Pop all the way out of the workspace to look for binutils.
   182 # ...You probably want to override this setting.
   183 BINUTILSDIR	= $(shell cd build/binutils;pwd)
   184 else
   185 BINUTILSDIR	= $(shell cd $(BINUTILS);pwd)
   186 endif
   188 CPPFLAGS	+= -I$(BINUTILSDIR)/include -I$(BINUTILSDIR)/bfd -I$(TARGET_DIR)/bfd
   189 CPPFLAGS	+= -DLIBARCH_$(LIBARCH) -DLIBARCH=\"$(LIBARCH)\" -DLIB_EXT=\"$(LIB_EXT)\"
   191 TARGET_DIR	= build/$(OS)-$(JDKARCH)
   192 TARGET		= $(TARGET_DIR)/hsdis-$(LIBARCH)$(LIB_EXT)
   194 SOURCE		= hsdis.c
   196 LIBRARIES =	$(TARGET_DIR)/bfd/libbfd.a \
   197 		$(TARGET_DIR)/opcodes/libopcodes.a \
   198 		$(TARGET_DIR)/libiberty/libiberty.a
   200 DEMO_TARGET	= $(TARGET_DIR)/hsdis-demo
   201 DEMO_SOURCE	= hsdis-demo.c
   203 .PHONY:  all clean demo both
   205 all:  $(TARGET)
   207 both: all all64
   209 %64:
   210 	$(MAKE) LP64=1 ${@:%64=%}
   212 demo: $(TARGET) $(DEMO_TARGET)
   214 $(LIBRARIES): $(TARGET_DIR) $(TARGET_DIR)/Makefile
   215 	if [ ! -f $@ ]; then cd $(TARGET_DIR); make all-opcodes; fi
   217 $(TARGET_DIR)/Makefile:
   218 	(cd $(TARGET_DIR); CC=$(CC) CFLAGS="$(CFLAGS)" AR="$(AR)" $(BINUTILSDIR)/configure --disable-nls $(CONFIGURE_ARGS))
   220 $(TARGET): $(SOURCE) $(LIBS) $(LIBRARIES) $(TARGET_DIR)
   221 	$(CC) $(OUTFLAGS) $(CPPFLAGS) $(CFLAGS) $(SOURCE) $(DLDFLAGS) $(LIBRARIES)
   223 $(DEMO_TARGET): $(DEMO_SOURCE) $(TARGET) $(TARGET_DIR)
   224 	$(CC) $(OUTFLAGS) -DTARGET_DIR=\"$(TARGET_DIR)\" $(CPPFLAGS) -g $(CFLAGS/$(ARCH)) $(DEMO_SOURCE) $(LDFLAGS)
   226 $(TARGET_DIR):
   227 	[ -d $@ ] || mkdir -p $@
   229 clean:
   230 	rm -rf $(TARGET_DIR)

mercurial