Print this page
16446 dtrace consumers should not be isaexec'd
Change-Id: Ibf80c7283c421cba98e80dce272c6dd51d24bb87

*** 1,12 **** # # CDDL HEADER START # # The contents of this file are subject to the terms of the ! # Common Development and Distribution License, Version 1.0 only ! # (the "License"). You may not use this file except in compliance ! # with the License. # # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE # or http://www.opensolaris.org/os/licensing. # See the License for the specific language governing permissions # and limitations under the License. --- 1,11 ---- # # CDDL HEADER START # # The contents of this file are subject to the terms of the ! # Common Development and Distribution License (the "License"). ! # You may not use this file except in compliance with the License. # # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE # or http://www.opensolaris.org/os/licensing. # See the License for the specific language governing permissions # and limitations under the License.
*** 18,57 **** # information: Portions Copyright [yyyy] [name of copyright owner] # # CDDL HEADER END # # ! # Copyright 2003 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # ! #ident "%Z%%M% %I% %E% SMI" ! # PROG= lockstat include ../Makefile.cmd ! $(64ONLY)SUBDIRS= $(MACH) ! $(BUILD64)SUBDIRS += $(MACH64) ! all := TARGET = all ! install := TARGET = install ! clean := TARGET = clean ! clobber := TARGET = clobber ! lint := TARGET = lint .KEEP_STATE: ! all: $(SUBDIRS) ! clean clobber lint: $(SUBDIRS) ! install: $(SUBDIRS) ! -$(RM) $(ROOTUSRSBINPROG) ! -$(LN) $(ISAEXEC) $(ROOTUSRSBINPROG) ! $(SUBDIRS): FRC ! @cd $@; pwd; $(MAKE) $(TARGET) ! FRC: include ../Makefile.targ --- 17,66 ---- # information: Portions Copyright [yyyy] [name of copyright owner] # # CDDL HEADER END # # ! # Copyright 2009 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # ! # Copyright (c) 2018, Joyent, Inc. PROG= lockstat + OBJS= lockstat.o sym.o include ../Makefile.cmd + include ../Makefile.cmd.64 ! LDLIBS += -lelf -lkstat -ldtrace ! CPPFLAGS += -D_ELF64 ! CFLAGS += $(CCVERBOSE) ! CFLAGS64 += $(CCVERBOSE) ! CERRWARN += $(CNOWARN_UNINIT) ! SMOFF += index_overflow + FILEMODE= 0555 + + CLEANFILES += $(OBJS) + + ROOTLINK = $(PROG:%=$(ROOTUSRSBIN64)/%) + .KEEP_STATE: ! all: $(PROG) ! install: all $(ROOTUSRSBINPROG) $(ROOTLINK) ! $(ROOTLINK): ! $(RM) $@; $(SYMLINK) ../../sbin/$(@F) $@ ! $(PROG): $(OBJS) ! $(LINK.c) -o $(PROG) $(OBJS) $(LDLIBS) ! $(POST_PROCESS) ! clean: ! -$(RM) $(CLEANFILES) + %.o: %.c + $(COMPILE.c) $< + include ../Makefile.targ