Print this page
OS-7095 Want risc-v disassembler

Split Close
Expand all
Collapse all
          --- old/usr/src/lib/libdisasm/Makefile.com
          +++ new/usr/src/lib/libdisasm/Makefile.com
↓ open down ↓ 15 lines elided ↑ open up ↑
  16   16  # fields enclosed by brackets "[]" replaced with your own identifying
  17   17  # information: Portions Copyright [yyyy] [name of copyright owner]
  18   18  #
  19   19  # CDDL HEADER END
  20   20  #
  21   21  #
  22   22  # Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
  23   23  # Use is subject to license terms.
  24   24  # Copyright 2012 Joshua M. Clulow <josh@sysmgr.org>
  25   25  # Copyright 2015 Nexenta Systems, Inc.  All rights reserved.
       26 +# Copyright (c) 2018, Joyent, Inc.
  26   27  #
  27   28  
  28   29  #
  29   30  # The build process for libdisasm is sightly different from that used by other
  30   31  # libraries, because libdisasm must be built in two flavors - as a standalone
  31   32  # for use by kmdb and as a normal library.  We use $(CURTYPE) to indicate the
  32   33  # current flavor being built.
  33   34  #
  34   35  
  35   36  LIBRARY=        libdisasm.a
↓ open down ↓ 15 lines elided ↑ open up ↑
  51   52  
  52   53  #
  53   54  # Architecture-dependent disassembly files
  54   55  #
  55   56  SRCS_i386=              $(COMDIR)/dis_i386.c \
  56   57                          $(SRC)/common/dis/i386/dis_tables.c
  57   58  SRCS_sparc=             $(COMDIR)/dis_sparc.c \
  58   59                          $(COMDIR)/dis_sparc_fmt.c \
  59   60                          $(COMDIR)/dis_sparc_instr.c
  60   61  SRCS_s390x=             $(COMDIR)/dis_s390x.c
       62 +SRCS_riscv=             $(COMDIR)/dis_riscv.c
  61   63  
  62   64  OBJECTS_i386=           dis_i386.o \
  63   65                          dis_tables.o
  64   66  OBJECTS_sparc=          dis_sparc.o \
  65   67                          dis_sparc_fmt.o \
  66   68                          dis_sparc_instr.o
  67   69  OBJECTS_s390x=          dis_s390x.o
       70 +OBJECTS_riscv=          dis_riscv.o
  68   71  
  69   72  #
  70   73  # We build the regular shared library with support for all architectures.
  71   74  # The standalone version should only contain code for the native
  72   75  # architecture to reduce the memory footprint of kmdb.
  73   76  #
  74   77  OBJECTS_library=        $(OBJECTS_common) \
  75   78                          $(OBJECTS_i386) \
  76   79                          $(OBJECTS_sparc) \
  77      -                        $(OBJECTS_s390x)
       80 +                        $(OBJECTS_s390x) \
       81 +                        $(OBJECTS_riscv)
  78   82  OBJECTS_standalone=     $(OBJECTS_common) \
  79   83                          $(OBJECTS_$(MACH))
  80   84  OBJECTS=                $(OBJECTS_$(CURTYPE))
  81   85  
  82   86  include $(SRC)/lib/Makefile.lib
  83   87  
  84   88  SRCS_library=           $(SRCS_common) \
  85   89                          $(SRCS_i386) \
  86   90                          $(SRCS_sparc) \
  87      -                        $(SRCS_s390x)
       91 +                        $(SRCS_s390x) \
       92 +                        $(SRCS_riscv) \
  88   93  SRCS_standalone=        $(SRCS_common) \
  89   94                          $(SRCS_$(MACH))
  90   95  SRCS=                   $(SRCS_$(CURTYPE))
  91   96  
  92   97  #
  93   98  # Used to verify that the standalone doesn't have any unexpected external
  94   99  # dependencies.
  95  100  #
  96  101  LINKTEST_OBJ = objs/linktest_stand.o
  97  102  
↓ open down ↓ 49 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX