1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281
|
###############################################################################
# Makefile script for PQoS library and sample application
#
# @par
# BSD LICENSE
#
# Copyright(c) 2014-2023 Intel Corporation. All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# * Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in
# the documentation and/or other materials provided with the
# distribution.
# * Neither the name of Intel Corporation nor the names of its
# contributors may be used to endorse or promote products derived
# from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
###############################################################################
include ../pre-build.mk
LIB = libpqos
VERSION = 6.0.1
SO_VERSION = 6
SHARED ?= y
LDFLAGS += -L. -lpthread -z noexecstack -z relro -z now
CFLAGS += -pthread -I./ -D_GNU_SOURCE \
-W -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes \
-Wmissing-declarations -Wold-style-definition -Wpointer-arith \
-Wcast-qual -Wundef -Wwrite-strings \
-Wformat -Wformat-security -fstack-protector-strong \
-Wunreachable-code -Wsign-compare -Wno-endif-labels
ifneq ($(EXTRA_CFLAGS),)
CFLAGS += $(EXTRA_CFLAGS)
endif
ifneq ($(EXTRA_LDFLAGS),)
LDFLAGS += $(EXTRA_LDFLAGS)
endif
DOXY_DIRS = doc_api doc_lib
# ICC and GCC/CLANG options
ifeq ($(CC),icc)
else
# GCC and clang
CFLAGS += -Wcast-align \
-Wnested-externs \
-Wmissing-noreturn
endif
IS_GCC = $(shell $(CC) -v 2>&1 | grep -c "^gcc version ")
IS_CLANG = $(shell $(CC) -v 2>&1 | grep -c "^clang version ")
# GCC-only options
ifeq ($(IS_GCC),1)
CFLAGS += -fno-strict-overflow \
-fno-delete-null-pointer-checks \
-fwrapv \
-fstack-clash-protection \
-fcf-protection=full
endif
# so or static build
ifeq ($(SHARED),y)
CFLAGS += -fPIC
LIBNAME = $(LIB).so.$(VERSION)
LIBPERM = 0755
else
CFLAGS += -fPIE
LIBNAME = $(LIB).a
LIBPERM = 0644
endif
# DEBUG build
ifeq ($(DEBUG),y)
CFLAGS += -g -ggdb -Og -DDEBUG
else
CFLAGS += -g -O2 -D_FORTIFY_SOURCE=2
endif
# RMID CUSTOM
ifeq ($(RMID_CUSTOM),y)
CFLAGS += -DPQOS_RMID_CUSTOM
endif
# Build targets and dependencies
SRCS = $(sort $(wildcard *.c))
OBJS = $(SRCS:.c=.o)
CLEAN_OBJS = $(SRCS:.c=.o)
# On FreeBSD build with no OS support
ifeq ($(shell uname), FreeBSD)
OBJS := $(filter-out perf.o \
os_allocation.o \
os_cap.o \
os_monitoring.o \
os_cpuinfo.o \
resctrl.o \
resctrl_alloc.o \
resctrl_monitoring.o \
resctrl_schemata.o \
resctrl_utils.o \
perf_monitoring.o,$(OBJS))
endif
HDR = pqos.h
PREFIX ?= /usr/local
LIB_INSTALL_DIR ?= $(DESTDIR)/usr/lib
HDR_DIR ?= $(DESTDIR)/usr/include
DEPFILE = $(LIB).dep
NOLDCONFIG ?= y
all: $(LIBNAME)
$(LIBNAME): $(OBJS)
ifeq ($(SHARED),y)
$(CC) $(LDFLAGS) -shared -Wl,-soname,$(LIB).so.$(SO_VERSION) -o $(LIBNAME) $^ -lc
ln -f -s $(LIBNAME) $(LIB).so.$(SO_VERSION)
ln -f -s $(LIB).so.$(SO_VERSION) $(LIB).so
else
$(AR) crvsD $@ $^
endif
install: $(LIBNAME)
# Install on FreeBSD
ifeq ($(shell uname), FreeBSD)
install -d $(LIB_INSTALL_DIR)
install -m $(LIBPERM) $(LIBNAME) $(LIB_INSTALL_DIR)
install -m 0644 $(HDR) $(HDR_DIR)
# Install on Linux
else
install -m $(LIBPERM) $(LIBNAME) -D $(LIB_INSTALL_DIR)/$(LIBNAME)
install -m 0644 $(HDR) -D $(HDR_DIR)/$(HDR)
endif
# Create symlinks to DSO
ifeq ($(SHARED),y)
cd $(LIB_INSTALL_DIR); \
ln -f -s $(LIB).so.$(VERSION) $(LIB).so.$(SO_VERSION); \
ln -f -s $(LIB).so.$(SO_VERSION) $(LIB).so
ifneq ($(NOLDCONFIG),y)
ldconfig
endif
endif
uninstall:
-rm $(LIB_INSTALL_DIR)/libpqos*
ifeq ($(SHARED),y)
ifneq ($(NOLDCONFIG),y)
ldconfig
endif
endif
DEPFILES = $(SRCS:.c=.d)
%.o: %.c %.d
%.d: %.c
set -e; rm -f $@; \
$(CC) -MM -MP -MF $@ $(CFLAGS) $< > $@.$$$$; \
sed 's/$(@:.d=.o)/$@/' < $@.$$$$ > $@; \
rm -f $@.$$$$
.PHONY: clean clobber doxy help
help:
@echo "PQoS library make targets:"
@echo " make - build shared library"
@echo " make SHARED=n - build static library"
@echo " make DEBUG=y - build shared library for debugging"
@echo " make install - install library (accepts PREFIX=/some/where)"
@echo " make uninstall - uninstall library (accepts PREFIX=/some/where)"
@echo " make clean - remove files produced normally by make"
@echo " make clobber - clean and remove documentation"
@echo " make doxy - make doxygen documentation"
@echo " make style - coding style check (accepts CHECKPATCH=/some/where/checkpatch.pl)"
@echo " make cppcheck - static code analysis (accepts CPPCHECK=/some/where/cppcheck)"
doxy:
doxygen api_doxygen.cfg
doxygen lib_doxygen.cfg
clean:
-rm -f $(CLEAN_OBJS) $(LIB)* $(DEPFILES)
$(MAKE) -C python clean
clobber:
-rm -f $(CLEAN_OBJS) $(LIB)* $(DEPFILES)
-rm -rf $(DOXY_DIRS)
CHECKPATCH?=checkpatch.pl
.PHONY: checkpatch
checkpatch:
$(CHECKPATCH) --no-tree --no-signoff --emacs \
--ignore CODE_INDENT,INITIALISED_STATIC,LEADING_SPACE,SPLIT_STRING,\
NEW_TYPEDEFS,UNSPECIFIED_INT,BLOCK_COMMENT_STYLE,\
SPDX_LICENSE_TAG,ARRAY_SIZE,EMBEDDED_FUNCTION_NAME,\
SYMBOLIC_PERMS,CONST_STRUCT,PREFER_DEFINED_ATTRIBUTE_MACRO \
--typedefsfile ../.checkpatch.types \
--file *.[ch]
CLANGFORMAT?=clang-format
.PHONY: clang-format
clang-format:
@for file in $(wildcard *.[ch]); do \
echo "Checking style $$file"; \
$(CLANGFORMAT) -style=file "$$file" | diff "$$file" - | tee /dev/stderr | [ $$(wc -c) -eq 0 ] || \
{ echo "ERROR: $$file has style problems"; exit 1; } \
done
CODESPELL?=codespell
.PHONY: codespell
codespell:
$(CODESPELL) . --skip python -q 2 -L clos,mmapped,uint
.PHONY: style
style:
$(MAKE) checkpatch
$(MAKE) clang-format
$(MAKE) codespell
$(MAKE) -C python style
CPPCHECK?=cppcheck
.PHONY: cppcheck
cppcheck:
$(CPPCHECK) \
--enable=warning,portability,performance,missingInclude \
--std=c99 --template=gcc \
--suppress=missingIncludeSystem \
api.c api.h cap.c cap.h common.h common.c allocation.c perf.c perf.h \
allocation.h monitoring.c monitoring.h \
log.c log.h types.h machine.c machine.h \
utils.c utils.h \
cpuinfo.c cpuinfo.h os_allocation.h os_allocation.c \
hw_cap.h hw_cap.c \
hw_monitoring.h hw_monitoring.c \
lock.h lock.c \
os_cap.h os_cap.c \
os_common.h \
os_monitoring.h os_monitoring.c \
perf_monitoring.h perf_monitoring.c \
resctrl_alloc.h resctrl_alloc.c \
resctrl.h resctrl.c \
resctrl_monitoring.h resctrl_monitoring.c \
resctrl_schemata.h resctrl_schemata.c \
resctrl_utils.h resctrl_utils.c \
acpi.h acpi.c acpi_table.h \
iordt.h iordt.c \
uncore_monitoring.h uncore_monitoring.c
# if target not clean or rinse then make dependencies
ifneq ($(MAKECMDGOALS),clean)
ifneq ($(MAKECMDGOALS),clobber)
ifneq ($(MAKECMDGOALS),style)
ifneq ($(MAKECMDGOALS),clang-format)
ifneq ($(MAKECMDGOALS),checkpatch)
ifneq ($(MAKECMDGOALS),codespell)
-include $(DEPFILES)
endif
endif
endif
endif
endif
endif
|