1
0
forked from pool/intel-cmt-cat
Files
intel-cmt-cat/remove_gcc_check
Thomas Renninger 21ea79dc44 Accepting request 1207932 from home:trenn:branches:server:monitoring
- Move to the new tag/version model, by using yy/mm in the version
  https://github.com/intel/intel-cmt-cat/issues/264
- Update to version 24.05.12.git+c5f4492:
  * lib: set errno when buf points to NULL in common.c:pqos_read()
  * lib: fix variable types in common.c:pqos_read()
  * llc capture time is increased in testcase test_pqos_cmt_llc_occupancy_cores
  * appqos_client: update 3rd party dependencies
  * appqos_client: update axios version
  * lib: Fix MBR value for non-SNC machines
  * tests: updated schema
  * tests: test_pqos_cmt_llc_occupancy_cores testcase is updated
  * After merging AMD SMBA feature, some unit tests are failed. They are fixed.
  * appqos_client: override dns-packet and socks package versions
  * appqos_client: update 'ws' and 'braces' depedency versions
  * appqos: pipenv 2024.0.1 can fetch pwr-v0.2.2. The word astroid is excluded in codespell.
  * Release 6.0.0
  * appqos: spelling correction
  * dependabot: exclude version updates
  * appqos_client: update required node and npm versions
  * dependabot: update config to ignore major version updates
  * appqos_client: update core-js to v3.23.3
  * appqos_client: update dev dependency versions
  * Add imediate binding flag to SWIG's Makefile
  * Add a GCC flag protecting againsh stack clash attacks
  * Enable strong stack protection for all the compilers
  * Add a stack protection flag to code examples
  * lib/cpuinfo: Increase the file descriptors limit to handle more CPUs
  * add dependabot config
  * Add warning message in case of detection hybrid architecture
  * lib: Fix parsing SMBA CLOS information

OBS-URL: https://build.opensuse.org/request/show/1207932
OBS-URL: https://build.opensuse.org/package/show/server:monitoring/intel-cmt-cat?expand=0&rev=41
2024-10-19 01:01:14 +00:00

164 lines
5.9 KiB
Plaintext

Index: intel-cmt-cat-24.05.12.git+c5f4492/Makefile
===================================================================
--- intel-cmt-cat-24.05.12.git+c5f4492.orig/Makefile
+++ intel-cmt-cat-24.05.12.git+c5f4492/Makefile
@@ -34,8 +34,6 @@
#
###############################################################################
-include pre-build.mk
-
# XXX: modify as desired
PREFIX ?= /usr/local
export PREFIX
Index: intel-cmt-cat-24.05.12.git+c5f4492/examples/c/CAT_MBA/Makefile
===================================================================
--- intel-cmt-cat-24.05.12.git+c5f4492.orig/examples/c/CAT_MBA/Makefile
+++ intel-cmt-cat-24.05.12.git+c5f4492/examples/c/CAT_MBA/Makefile
@@ -34,8 +34,6 @@
#
###############################################################################
-include ../../../pre-build.mk
-
LIBDIR ?= ../../../lib
CFLAGS =-I$(LIBDIR) \
-W -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes \
Index: intel-cmt-cat-24.05.12.git+c5f4492/examples/c/CMT_MBM/Makefile
===================================================================
--- intel-cmt-cat-24.05.12.git+c5f4492.orig/examples/c/CMT_MBM/Makefile
+++ intel-cmt-cat-24.05.12.git+c5f4492/examples/c/CMT_MBM/Makefile
@@ -34,8 +34,6 @@
#
###############################################################################
-include ../../../pre-build.mk
-
LIBDIR ?= ../../../lib
CFLAGS =-I$(LIBDIR) -pthread \
-W -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes \
Index: intel-cmt-cat-24.05.12.git+c5f4492/examples/c/PSEUDO_LOCK/Makefile
===================================================================
--- intel-cmt-cat-24.05.12.git+c5f4492.orig/examples/c/PSEUDO_LOCK/Makefile
+++ intel-cmt-cat-24.05.12.git+c5f4492/examples/c/PSEUDO_LOCK/Makefile
@@ -34,8 +34,6 @@
#
###############################################################################
-include ../../../pre-build.mk
-
LIBDIR ?= ../../../lib
LDFLAGS = -L$(LIBDIR) -pie -z noexecstack -z relro -z now
LDLIBS = -lpqos -lrt -lpthread
Index: intel-cmt-cat-24.05.12.git+c5f4492/lib/Makefile
===================================================================
--- intel-cmt-cat-24.05.12.git+c5f4492.orig/lib/Makefile
+++ intel-cmt-cat-24.05.12.git+c5f4492/lib/Makefile
@@ -33,8 +33,6 @@
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
###############################################################################
-include ../pre-build.mk
-
LIB = libpqos
VERSION = 6.0.0
SO_VERSION = 6
Index: intel-cmt-cat-24.05.12.git+c5f4492/pqos/Makefile
===================================================================
--- intel-cmt-cat-24.05.12.git+c5f4492.orig/pqos/Makefile
+++ intel-cmt-cat-24.05.12.git+c5f4492/pqos/Makefile
@@ -34,8 +34,6 @@
#
###############################################################################
-include ../pre-build.mk
-
OBJDIR = obj
LIBDIR ?= ../lib
LDFLAGS = -L$(LIBDIR) -pie -z noexecstack -z relro -z now
Index: intel-cmt-cat-24.05.12.git+c5f4492/rdtset/Makefile
===================================================================
--- intel-cmt-cat-24.05.12.git+c5f4492.orig/rdtset/Makefile
+++ intel-cmt-cat-24.05.12.git+c5f4492/rdtset/Makefile
@@ -34,8 +34,6 @@
#
###############################################################################
-include ../pre-build.mk
-
LIBDIR ?= ../lib
LDFLAGS = -L$(LIBDIR) -pie -z noexecstack -z relro -z now
LDLIBS = -lpqos -lpthread
Index: intel-cmt-cat-24.05.12.git+c5f4492/tools/membw/Makefile
===================================================================
--- intel-cmt-cat-24.05.12.git+c5f4492.orig/tools/membw/Makefile
+++ intel-cmt-cat-24.05.12.git+c5f4492/tools/membw/Makefile
@@ -34,8 +34,6 @@
#
###############################################################################
-include ../../pre-build.mk
-
APP = membw
MAN = membw.8
Index: intel-cmt-cat-24.05.12.git+c5f4492/unit-test/Makefile
===================================================================
--- intel-cmt-cat-24.05.12.git+c5f4492.orig/unit-test/Makefile
+++ intel-cmt-cat-24.05.12.git+c5f4492/unit-test/Makefile
@@ -1,5 +1,3 @@
-include ../pre-build.mk
-
LIB_DIR=$(CURDIR)/../lib
.PHONY: run style clean
Index: intel-cmt-cat-24.05.12.git+c5f4492/unit-test/lib/Makefile
===================================================================
--- intel-cmt-cat-24.05.12.git+c5f4492.orig/unit-test/lib/Makefile
+++ intel-cmt-cat-24.05.12.git+c5f4492/unit-test/lib/Makefile
@@ -1,5 +1,3 @@
-include ../../pre-build.mk
-
LIB_DIR = ../../lib
OBJ_DIR = ./obj
BIN_DIR = ./bin
Index: intel-cmt-cat-24.05.12.git+c5f4492/unit-test/mock/Makefile
===================================================================
--- intel-cmt-cat-24.05.12.git+c5f4492.orig/unit-test/mock/Makefile
+++ intel-cmt-cat-24.05.12.git+c5f4492/unit-test/mock/Makefile
@@ -34,8 +34,6 @@
###############################################################################
-include ../../pre-build.mk
-
LIB_DIR = ../../lib
LIB = libpqosmock
Index: intel-cmt-cat-24.05.12.git+c5f4492/unit-test/output/Makefile
===================================================================
--- intel-cmt-cat-24.05.12.git+c5f4492.orig/unit-test/output/Makefile
+++ intel-cmt-cat-24.05.12.git+c5f4492/unit-test/output/Makefile
@@ -33,8 +33,6 @@
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
###############################################################################
-include ../../pre-build.mk
-
LIB = libgraboutput
SHARED ?= y
LDFLAGS = -L. -lpthread -z noexecstack -z relro -z now
Index: intel-cmt-cat-24.05.12.git+c5f4492/unit-test/pqos/Makefile
===================================================================
--- intel-cmt-cat-24.05.12.git+c5f4492.orig/unit-test/pqos/Makefile
+++ intel-cmt-cat-24.05.12.git+c5f4492/unit-test/pqos/Makefile
@@ -33,8 +33,6 @@
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
###############################################################################
-include ../../pre-build.mk
-
PQOS_DIR = ../../pqos
LIB_DIR = ../../lib
OBJ_DIR = ./obj