Print this page
12386 acpixtract tries to fopen("")

Split Close
Expand all
Collapse all
          --- old/usr/src/cmd/acpi/iasl/Makefile
          +++ new/usr/src/cmd/acpi/iasl/Makefile
   1    1  #
   2    2  # This file and its contents are supplied under the terms of the
   3    3  # Common Development and Distribution License ("CDDL"), version 1.0.
   4    4  # You may only use this file in accordance with the terms of version
   5    5  # 1.0 of the CDDL.
   6    6  #
   7    7  # A full copy of the text of the CDDL should have accompanied this
   8    8  # source.  A copy of the CDDL is also available via the Internet at
   9    9  # http://www.illumos.org/license/CDDL.
  10   10  #
  11      -# Copyright (c) 2018, Joyent, Inc.
       11 +# Copyright 2020 Joyent, Inc.
  12   12  # Copyright 2019 OmniOS Community Edition (OmniOSce) Association.
  13   13  #
  14   14  # Adapted from acpica/generate/unix/iasl/Makefile, which lacked a copyright
  15   15  # notice.
  16   16  #
  17   17  PROG=           iasl
  18   18  
  19   19  include ../../Makefile.cmd
  20   20  include ../../Makefile.cmd.64
  21   21  include ../../Makefile.ctf
↓ open down ↓ 34 lines elided ↑ open up ↑
  56   56          nssearch.o nsutils.o nswalk.o
  57   57  # usr/src/common/acpica/parser
  58   58  OBJS += psargs.o psloop.o psobject.o psopcode.o psopinfo.o psparse.o psscope.o pstree.o \
  59   59          psutils.o pswalk.o
  60   60  # usr/src/common/acpica/tables
  61   61  OBJS += tbdata.o tbfadt.o tbinstal.o tbprint.o tbutils.o tbxface.o
  62   62  # usr/src/common/acpica/utilities
  63   63  OBJS += utaddress.o utalloc.o utascii.o utbuffer.o utcache.o utcopy.o \
  64   64          utdebug.o utdecode.o utdelete.o uterror.o utexcep.o utglobal.o uthex.o \
  65   65          utinit.o utlock.o utmath.o utmisc.o utmutex.o utnonansi.o utobject.o \
  66      -        utownerid.o utpredef.o utprint.o utresdecode.o utresrc.o utstate.o \
       66 +        utownerid.o utpredef.o utresdecode.o utresrc.o utstate.o \
  67   67          utstring.o utstrsuppt.o utstrtoul64.o utuuid.o utxface.o utxferror.o
  68   68  
  69   69  SRCS = $(OBJS:.o=.c)
  70   70  
  71   71  ACPI_CMN_SRC            = $(SRC)/common/acpica
  72   72  
  73   73  # Source used only by iasl
  74   74  ASL_COMPILER            = compiler
  75   75  ACPICA_DEBUGGER         = debugger
  76   76  # Source used by kernel module and iasl
↓ open down ↓ 17 lines elided ↑ open up ↑
  94   94          aslcompilerlex.c \
  95   95          aslcompilerparse.c \
  96   96          dtparserlex.c \
  97   97          dtparserparse.c \
  98   98          prparserlex.c \
  99   99          prparserparse.c \
 100  100          aslcompiler.y.h \
 101  101          dtparser.y.h \
 102  102          prparser.y.h
 103  103  
 104      -CERRWARN += -_gcc=-Wno-unused-function
 105      -
 106      -# not linted
      104 +# too much noise
 107  105  SMATCH=off
 108  106  
 109  107  CPPFLAGS += -I$(SRC)/uts/intel/sys/acpi -DACPI_ASL_COMPILER -I.
 110  108  
 111  109  LEX_C_FILES = aslcompilerlex.c dtparserlex.c prparserlex.c
 112  110  YACC_C_FILES = aslcompilerparse.c dtparserparse.c prparserparse.c
 113  111  YACC_H_FILES = aslcompiler.y.h dtparser.y.h prparser.y.h
 114  112  YACC_FILES = $(YACC_C_FILES) $(YACC_H_FILES)
 115  113  
 116  114  aslcompilerlex.c aslcompilerparse.c aslcompiler.y.h := PARSER = AslCompiler
↓ open down ↓ 51 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX