1 #
   2 # Copyright (c) 2008, 2019, 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 #
  46 
  47 # Single gnu makefile for solaris, linux and windows (windows requires cygwin and mingw)
  48 
  49 # Default arch; it is changed below as needed.
  50 ARCH            = i386
  51 OS              = $(shell uname)
  52 AR              = ar
  53 
  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 ARCH2=$(ARCH1:i686=i386)
  96 ARCH=$(ARCH2:sparc64=sparcv9)
  97 ifdef LP64
  98 CFLAGS/sparcv9  += -m64
  99 CFLAGS/amd64    += -m64
 100 CFLAGS/ppc64    += -m64
 101 CFLAGS/ppc64le  += -m64 -DABI_ELFv2
 102 else
 103 ARCH=$(ARCH2:amd64=i386)
 104 ifneq ($(findstring arm,$(ARCH)),)
 105 ARCH=arm
 106 endif
 107 CFLAGS/i386     += -m32
 108 CFLAGS/sparc    += -m32
 109 endif
 110 CFLAGS          += $(CFLAGS/$(ARCH))
 111 CFLAGS          += -fPIC
 112 OS              = linux
 113 LIB_EXT         = .so
 114 CC              = gcc
 115 endif
 116 CFLAGS          += -O
 117 DLDFLAGS        += -shared
 118 LDFLAGS         += -ldl
 119 OUTFLAGS        += -o $@
 120 else
 121 ## OS = AIX ##
 122 ifeq            ($(OS),AIX)
 123 OS              = aix
 124 ARCH            = ppc64
 125 CC              = xlc_r
 126 CFLAGS          += -DAIX -g -qpic=large -q64
 127 CFLAGS/ppc64    += -q64
 128 AR              = ar -X64
 129 DLDFLAGS        += -qmkshrobj -lz
 130 OUTFLAGS        += -o $@
 131 LIB_EXT         = .so
 132 else
 133 ## OS = Darwin ##
 134 ifeq ($(OS),Darwin)
 135 CPU             = $(shell uname -m)
 136 ARCH1=$(CPU:x86_64=amd64)
 137 ARCH=$(ARCH1:i686=i386)
 138 ifdef LP64
 139 CFLAGS/sparcv9  += -m64
 140 CFLAGS/amd64    += -m64
 141 else
 142 ARCH=$(ARCH1:amd64=i386)
 143 CFLAGS/i386     += -m32
 144 CFLAGS/sparc    += -m32
 145 endif # LP64
 146 CFLAGS          += $(CFLAGS/$(ARCH))
 147 CFLAGS          += -fPIC
 148 OS              = macosx
 149 LIB_EXT         = .dylib
 150 CC              = gcc
 151 CFLAGS          += -O
 152 # CFLAGS        += -DZ_PREFIX
 153 DLDFLAGS        += -shared
 154 DLDFLAGS        += -lz
 155 LDFLAGS         += -ldl
 156 OUTFLAGS        += -o $@
 157 else
 158 ## OS = Windows ##
 159 OS              = windows
 160 CC              = gcc
 161 CFLAGS          +=  /nologo /MD /W3 /WX /O2 /Fo$(@:.dll=.obj) /Gi-
 162 CFLAGS          += LIBARCH=\"$(LIBARCH)\"
 163 DLDFLAGS        += /dll /subsystem:windows /incremental:no \
 164                         /export:decode_instruction
 165 OUTFLAGS        += /link /out:$@
 166 LIB_EXT         = .dll
 167 endif   # Darwin
 168 endif   # AIX
 169 endif   # Linux
 170 endif   # SunOS
 171 
 172 LIBARCH         = $(ARCH)
 173 ifdef           LP64
 174 LIBARCH64/sparc = sparcv9
 175 LIBARCH64/i386  = amd64
 176 LIBARCH64       = $(LIBARCH64/$(ARCH))
 177 ifneq           ($(LIBARCH64),)
 178 LIBARCH         = $(LIBARCH64)
 179 endif   # LIBARCH64/$(ARCH)
 180 endif   # LP64
 181 
 182 JDKARCH=$(LIBARCH:i386=i586)
 183 
 184 ifeq            ($(BINUTILS),)
 185 # Pop all the way out of the workspace to look for binutils.
 186 # ...You probably want to override this setting.
 187 BINUTILSDIR     = $(shell cd build/binutils;pwd)
 188 else
 189 BINUTILSDIR     = $(shell cd $(BINUTILS);pwd)
 190 endif
 191 
 192 CPPFLAGS        += -I$(BINUTILSDIR)/include -I$(BINUTILSDIR)/bfd -I$(TARGET_DIR)/bfd
 193 CPPFLAGS        += -DLIBARCH_$(LIBARCH) -DLIBARCH=\"$(LIBARCH)\" -DLIB_EXT=\"$(LIB_EXT)\"
 194 
 195 TARGET_DIR      = build/$(OS)-$(JDKARCH)
 196 TARGET          = $(TARGET_DIR)/hsdis-$(LIBARCH)$(LIB_EXT)
 197 
 198 SOURCE          = hsdis.c
 199 
 200 LIBRARIES =     $(TARGET_DIR)/bfd/libbfd.a \
 201                 $(TARGET_DIR)/opcodes/libopcodes.a \
 202                 $(TARGET_DIR)/libiberty/libiberty.a
 203 
 204 ifneq ($(MINGW),)
 205 LIBRARIES +=    $(TARGET_DIR)/zlib/libz.a
 206 endif
 207 
 208 DEMO_TARGET     = $(TARGET_DIR)/hsdis-demo
 209 DEMO_SOURCE     = hsdis-demo.c
 210 
 211 .PHONY:  all clean demo both
 212 
 213 all:  $(TARGET)
 214 
 215 both: all all64
 216 
 217 %64:
 218         $(MAKE) LP64=1 ${@:%64=%}
 219 
 220 demo: $(TARGET) $(DEMO_TARGET)
 221 
 222 $(LIBRARIES): $(TARGET_DIR) $(TARGET_DIR)/Makefile
 223         if [ ! -f $@ ]; then cd $(TARGET_DIR); make all-opcodes; fi
 224 
 225 $(TARGET_DIR)/Makefile:
 226         (cd $(TARGET_DIR); CC=$(CC) CFLAGS="$(CFLAGS)" AR="$(AR)" $(BINUTILSDIR)/configure --disable-nls $(CONFIGURE_ARGS))
 227 
 228 $(TARGET): $(SOURCE) $(LIBS) $(LIBRARIES) $(TARGET_DIR)
 229         $(CC) $(OUTFLAGS) $(CPPFLAGS) $(CFLAGS) $(SOURCE) $(DLDFLAGS) $(LIBRARIES)
 230 
 231 $(DEMO_TARGET): $(DEMO_SOURCE) $(TARGET) $(TARGET_DIR)
 232         $(CC) $(OUTFLAGS) -DTARGET_DIR=\"$(TARGET_DIR)\" $(CPPFLAGS) -g $(CFLAGS/$(ARCH)) $(DEMO_SOURCE) $(LDFLAGS)
 233 
 234 $(TARGET_DIR):
 235         [ -d $@ ] || mkdir -p $@
 236 
 237 clean:
 238         rm -rf $(TARGET_DIR)