[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 01/16] tests/migration: add sysprof-capture-4 as dependency for st
From: |
Daniel Henrique Barboza |
Subject: |
[PULL 01/16] tests/migration: add sysprof-capture-4 as dependency for stress binary |
Date: |
Sun, 5 Feb 2023 07:04:34 -0300 |
From: Murilo Opsfelder Araujo <muriloo@linux.ibm.com>
`make tests/migration/stress` fails with:
FAILED: tests/migration/stress
cc -m64 -mlittle-endian -o tests/migration/stress
tests/migration/stress.p/stress.c.o -Wl,--as-needed -Wl,--no-undefined -pie
-Wl,--warn-common -Wl,-z,relro -Wl,-z,now -fstack-protector-strong -static
-pthread -Wl,--start-group -lgthread-2.0 -lglib-2.0 -Wl,--end-group
/usr/bin/ld:
/usr/lib/gcc/ppc64le-redhat-linux/11/../../../../lib64/libglib-2.0.a(gutils.c.o):
in function `.annobin_gutils.c':
(.text+0x3b4): warning: Using 'getpwuid' in statically linked applications
requires at runtime the shared libraries from the glibc version used for linking
/usr/bin/ld: (.text+0x178): warning: Using 'getpwnam_r' in statically
linked applications requires at runtime the shared libraries from the glibc
version used for linking
/usr/bin/ld: (.text+0x1bc): warning: Using 'getpwuid_r' in statically
linked applications requires at runtime the shared libraries from the glibc
version used for linking
/usr/bin/ld:
/usr/lib/gcc/ppc64le-redhat-linux/11/../../../../lib64/libglib-2.0.a(gthread.c.o):(.toc+0x0):
undefined reference to `sysprof_clock'
/usr/bin/ld:
/usr/lib/gcc/ppc64le-redhat-linux/11/../../../../lib64/libglib-2.0.a(gtrace.c.o):
in function `.annobin_gtrace.c':
(.text+0x24): undefined reference to `sysprof_collector_mark_vprintf'
/usr/bin/ld:
/usr/lib/gcc/ppc64le-redhat-linux/11/../../../../lib64/libglib-2.0.a(gtrace.c.o):
in function `g_trace_define_int64_counter':
(.text+0x8c): undefined reference to `sysprof_collector_request_counters'
/usr/bin/ld: (.text+0x108): undefined reference to
`sysprof_collector_define_counters'
/usr/bin/ld:
/usr/lib/gcc/ppc64le-redhat-linux/11/../../../../lib64/libglib-2.0.a(gtrace.c.o):
in function `g_trace_set_int64_counter':
(.text+0x23c): undefined reference to `sysprof_collector_set_counters'
/usr/bin/ld:
/usr/lib/gcc/ppc64le-redhat-linux/11/../../../../lib64/libglib-2.0.a(gspawn.c.o):(.toc+0x0):
undefined reference to `sysprof_clock'
/usr/bin/ld:
/usr/lib/gcc/ppc64le-redhat-linux/11/../../../../lib64/libglib-2.0.a(gmain.c.o):(.toc+0x0):
undefined reference to `sysprof_clock'
collect2: error: ld returned 1 exit status
ninja: build stopped: subcommand failed.
make: *** [Makefile:162: run-ninja] Error 1
Add sysprof-capture-4 as dependency for stress binary.
Tested on:
- CentOS Stream 9 ppc64le
- Fedora 36 x86_64
Signed-off-by: Murilo Opsfelder Araujo <muriloo@linux.ibm.com>
Reviewed-by: Daniel Henrique Barboza <danielhb413@gmail.com>
Reviewed-by: Juan Quintela <quintela@redhat.com>
Message-Id: <20220809002451.91541-2-muriloo@linux.ibm.com>
Signed-off-by: Daniel Henrique Barboza <danielhb413@gmail.com>
---
tests/migration/meson.build | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/tests/migration/meson.build b/tests/migration/meson.build
index f215ee7d3a..dd562355a1 100644
--- a/tests/migration/meson.build
+++ b/tests/migration/meson.build
@@ -1,7 +1,9 @@
+sysprof = dependency('sysprof-capture-4', required: false)
+
stress = executable(
'stress',
files('stress.c'),
- dependencies: [glib],
+ dependencies: [glib, sysprof],
link_args: ['-static'],
build_by_default: false,
)
--
2.39.1
- [PULL 00/16] ppc queue, Daniel Henrique Barboza, 2023/02/05
- [PULL 04/16] hw/pci-host/mv64361: Reuse pci_swizzle_map_irq_fn, Daniel Henrique Barboza, 2023/02/05
- [PULL 03/16] ppc/pegasos2: Improve readability of VIA south bridge creation, Daniel Henrique Barboza, 2023/02/05
- [PULL 01/16] tests/migration: add sysprof-capture-4 as dependency for stress binary,
Daniel Henrique Barboza <=
- [PULL 06/16] hw/ppc/e500{, plat}: Drop redundant checks for presence of platform bus, Daniel Henrique Barboza, 2023/02/05
- [PULL 07/16] hw/ppc/e500.c: Avoid hardcoding parent device in create_devtree_etsec(), Daniel Henrique Barboza, 2023/02/05
- [PULL 05/16] hw/ppc: Set machine->fdt in e500 machines, Daniel Henrique Barboza, 2023/02/05
- [PULL 02/16] tests/migration: add support for ppc64le for guestperf.py, Daniel Henrique Barboza, 2023/02/05
- [PULL 08/16] hw/ppc/e500.c: Attach eSDHC unimplemented region to ccsr_addr_space, Daniel Henrique Barboza, 2023/02/05
- [PULL 10/16] ppc/pnv/pci: Remove duplicate definition of PNV_PHB5_DEVICE_ID, Daniel Henrique Barboza, 2023/02/05
- [PULL 11/16] ppc/pnv/pci: Update PHB5 version register, Daniel Henrique Barboza, 2023/02/05
- [PULL 09/16] ppc/pnv/pci: Cleanup PnvPHBPecState structure, Daniel Henrique Barboza, 2023/02/05
- [PULL 15/16] hw/display/sm501: Remove unneeded casts from void pointer, Daniel Henrique Barboza, 2023/02/05
- [PULL 13/16] hw/ppc/pegasos2: Fix a typo in a comment, Daniel Henrique Barboza, 2023/02/05