On 02/15/2016 11:09 PM, Barbu Paul - Gheorghe wrote:
> The error message given by build-rr.sh is written below:
> [...]
> /home/paul/localhost/rumpkernel/rumprun/src-netbsd/sys/rump/dev/lib/libpci/rumpdev_bus_dma.c
> && mv rumpdev_bus_dma.d.tmp rum
> pdev_bus_dma.d
> In file included from
> /home/paul/localhost/rumpkernel/rumprun/src-netbsd/sys/rump/dev/lib/libpci/rumpdev_bus_dma.c:82:0:
> /home/paul/localhost/rumpkernel/rumprun/src-netbsd/sys/rump/dev/lib/libpci/pci_user.h:12:39:
> fatal error: rumpcomp_userfeatures_pci.h: No suc
> h file or directory
> compilation terminated.
> nbmkdep: compile failed.
>
I fixed this (temporarily) by providing the full path to that file
(rumpcomp_userfeatures_pci.h).
> [1] https://github.com/rumpkernel/rumprun/issues/38
I also fixed this, by appending the necessary path prefix in the
src-netbsd/ys/rump/dev/lib/libpci/Makefile to every file.
(I attached the patch for reference, it only works on my system and is messy).
Now when I try to bake my application (which compiles fine) I get the errors
attached in the rumprun-back-error.txt file.
Am I doing something wrong?
Where should I start fixing the linker problems?
Have a nice day!
--
Barbu Paul - Gheorghe
Common sense is not so common - Voltaire
Visit My GitHub profile to see my open-source projects -
https://github.com/paulbarbu
diff --git a/sys/rump/dev/lib/libpci/Makefile b/sys/rump/dev/lib/libpci/Makefile
index ee314d3..464c17a 100644
--- a/sys/rump/dev/lib/libpci/Makefile
+++ b/sys/rump/dev/lib/libpci/Makefile
@@ -12,8 +12,8 @@ COMMENT=PCI bus support
IOCONF= PCI.ioconf
-SRCS+= pci.c pci_map.c pci_quirks.c pci_subr.c pci_stub.c pci_usrreq.c
-SRCS+= pcibusprint.c
+SRCS+= ${RUMPTOP}/../dev/pci/pci.c ${RUMPTOP}/../dev/pci/pci_map.c ${RUMPTOP}/../dev/pci/pci_quirks.c ${RUMPTOP}/../dev/pci/pci_subr.c ${RUMPTOP}/../dev/pci/pci_stub.c ${RUMPTOP}/../dev/pci/pci_usrreq.c
+SRCS+= ${RUMPTOP}/../dev/pci/pcibusprint.c
SRCS+= rumpdev_pci.c
diff --git a/sys/rump/dev/lib/libpci/pci_user.h b/sys/rump/dev/lib/libpci/pci_user.h
index a683f88..bda88e5 100644
--- a/sys/rump/dev/lib/libpci/pci_user.h
+++ b/sys/rump/dev/lib/libpci/pci_user.h
@@ -9,7 +9,7 @@
* must be provided.
*/
-#include "rumpcomp_userfeatures_pci.h"
+#include "/home/paul/localhost/rumprun/platform/hw/pci/rumpcomp_userfeatures_pci.h"
void *rumpcomp_pci_map(unsigned long, unsigned long);
int rumpcomp_pci_confread(unsigned, unsigned, unsigned, int, unsigned int *);
!!!
!!! NOTE: rumprun-bake is experimental. syntax may change in the future
!!!
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci_virtio.a(virtio.o):
In function `virtio_detach':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/../dev/pci/virtio.c:419:
undefined reference to `rumpns_pci_intr_release'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci_virtio.a(virtio.o):
In function `virtio_attach':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/../dev/pci/virtio.c:345:
undefined reference to `rumpns_pci_dma64_available'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/../dev/pci/virtio.c:351:
undefined reference to `rumpns_pci_mapreg_map'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci_virtio.a(virtio.o):
In function `virtio_setup_interrupts':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/../dev/pci/virtio.c:244:
undefined reference to `rumpns_pci_msix_count'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/../dev/pci/virtio.c:282:
undefined reference to `rumpns_pci_intr_release'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/../dev/pci/virtio.c:261:
undefined reference to `rumpns_pci_intr_alloc'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/../dev/pci/virtio.c:267:
undefined reference to `rumpns_pci_intr_type'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci_virtio.a(virtio.o):
In function `virtio_setup_msix_interrupts':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/../dev/pci/virtio.c:167:
undefined reference to `rumpns_pci_intr_establish_xname'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/../dev/pci/virtio.c:178:
undefined reference to `rumpns_pci_intr_establish_xname'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci_virtio.a(virtio.o):
In function `virtio_setup_interrupts':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/../dev/pci/virtio.c:292:
undefined reference to `rumpns_pci_intr_type'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci_virtio.a(virtio.o):
In function `virtio_setup_intx_interrupt':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/../dev/pci/virtio.c:221:
undefined reference to `rumpns_pci_intr_establish_xname'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci_virtio.a(virtio.o):
In function `virtio_setup_interrupts':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/../dev/pci/virtio.c:303:
undefined reference to `rumpns_pci_intr_release'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci_at_mainbus.o):
In function `rumpcompinitRUMP_COMPONENT_DEV':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/pci_at_mainbus.c:58:
undefined reference to `rumpns_pci_cdevsw'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci_at_mainbus.o):
In function `rumpcompinitRUMP_COMPONENT_DEV_AFTERMAINBUS':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/pci_at_mainbus.c:89:
undefined reference to `rumpcomp_pci_iospace_init'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/pci_at_mainbus.c:101:
undefined reference to `rumpns_pcibusprint'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci_at_mainbus.o):(.rodata+0x20):
undefined reference to `rumpns_pci_ca'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(rumpdev_bus_dma.o):
In function `_bus_dmamap_load_buffer':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/rumpdev_bus_dma.c:226:
undefined reference to `rumpcomp_pci_virt_to_mach'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/rumpdev_bus_dma.c:220:
undefined reference to `rumpcomp_pci_virt_to_mach'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(rumpdev_bus_dma.o):
In function `bus_dmamap_load_mbuf':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/rumpdev_bus_dma.c:333:
undefined reference to `rumpcomp_pci_virt_to_mach'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(rumpdev_bus_dma.o):
In function `bus_dmamem_map':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/rumpdev_bus_dma.c:482:
undefined reference to `rumpcomp_pci_dmamem_map'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(rumpdev_bus_dma.o):
In function `bus_dmamem_alloc':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/rumpdev_bus_dma.c:535:
undefined reference to `rumpcomp_pci_dmalloc'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(rumpdev_bus_dma.o):
In function `bus_dmamem_free':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/rumpdev_bus_dma.c:453:
undefined reference to `rumpcomp_pci_dmafree'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(rumpdev_bus_space.o):
In function `bus_space_map':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/rumpdev_bus_space.c:63:
undefined reference to `rumpcomp_pci_map'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(rumpdev_pci.o):
In function `pci_make_tag':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/rumpdev_pci.c:71:
undefined reference to `rumpcomp_pci_confread'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/rumpdev_pci.c:74:
undefined reference to `rumpcomp_pci_confwrite'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(rumpdev_pci.o):
In function `pci_conf_read':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/rumpdev_pci.c:88:
undefined reference to `rumpcomp_pci_confread'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(rumpdev_pci.o):
In function `pci_intr_map':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/rumpdev_pci.c:126:
undefined reference to `rumpcomp_pci_irq_map'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(rumpdev_pci.o):
In function `pciide_machdep_compat_intr_establish':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/rumpdev_pci.c:187:
undefined reference to `rumpcomp_pci_irq_establish'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(rumpdev_pci.o):
In function `pci_conf_write':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/rumpdev_pci.c:98:
undefined reference to `rumpcomp_pci_confwrite'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(rumpdev_pci.o):
In function `pci_intr_establish':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/rumpdev_pci.c:147:
undefined reference to `rumpcomp_pci_irq_establish'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pcibusprint.o):
In function `pcibusprint':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pcibusprint.c:16:
undefined reference to `aprint_normal'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pcibusprint.c:17:
undefined reference to `aprint_normal'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci_usrreq.o):
In function `pcimmap':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_usrreq.c:131:
undefined reference to `pci_cd'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_usrreq.c:131:
undefined reference to `device_lookup_private'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_usrreq.c:137:
undefined reference to `kauth_cred_get'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_usrreq.c:137:
undefined reference to `kauth_authorize_machdep'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci_usrreq.o):
In function `pciioctl':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_usrreq.c:78:
undefined reference to `pci_cd'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_usrreq.c:78:
undefined reference to `device_lookup_private'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_usrreq.c:92:
undefined reference to `pci_make_tag'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_usrreq.c:101:
undefined reference to `pci_conf_write'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_usrreq.c:119:
undefined reference to `device_xname'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_usrreq.c:96:
undefined reference to `pci_conf_read'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci_usrreq.o):
In function `pciopen':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_usrreq.c:68:
undefined reference to `pci_cd'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_usrreq.c:68:
undefined reference to `device_lookup'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci_usrreq.o):
In function `pci_devioctl':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_usrreq.c:215:
undefined reference to `pci_conf_read'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_usrreq.c:221:
undefined reference to `pci_conf_write'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci_usrreq.o):
In function `pcimmap':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_usrreq.c:184:
undefined reference to `bus_space_mmap'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci_usrreq.o):(.rodata+0x8):
undefined reference to `nullop'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci_usrreq.o):(.rodata+0x10):
undefined reference to `enodev'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci_usrreq.o):(.rodata+0x18):
undefined reference to `enodev'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci_usrreq.o):(.rodata+0x28):
undefined reference to `enodev'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci_usrreq.o):(.rodata+0x38):
undefined reference to `seltrue'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci_usrreq.o):(.rodata+0x48):
undefined reference to `seltrue_kqfilter'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci_usrreq.o):(.rodata+0x50):
undefined reference to `enodev'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci_stub.o):
In function `default_pci_bus_devorder':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_stub.c:42:
undefined reference to `pci_bus_maxdevs'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_stub.c:42:
undefined reference to `pci_bus_maxdevs'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci_stub.o):
In function `default_pci_intr_alloc':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_stub.c:77:
undefined reference to `kmem_alloc'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_stub.c:81:
undefined reference to `pci_intr_map'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_stub.c:82:
undefined reference to `kmem_free'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci_stub.o):
In function `default_pci_intr_release':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_stub.c:95:
undefined reference to `kmem_free'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci_stub.o):
In function `default_pci_intr_establish_xname':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_stub.c:103:
undefined reference to `pci_intr_establish'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci.o):
In function `pci_child_deregister':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:1093:
undefined reference to `device_pmf_bus_private'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci.o):
In function `pci_child_shutdown':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:1079:
undefined reference to `device_pmf_bus_private'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:1083:
undefined reference to `pci_conf_read'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:1086:
undefined reference to `pci_conf_write'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci.o):
In function `pci_set_powerstate_int':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:916:
undefined reference to `pci_conf_read'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:951:
undefined reference to `pci_conf_write'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:956:
undefined reference to `delay_func'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:951:
undefined reference to `pci_conf_write'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:954:
undefined reference to `delay_func'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci.o):
In function `pci_child_suspend':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:1034:
undefined reference to `device_pmf_bus_private'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci.o):
In function `pci_conf_capture':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:853:
undefined reference to `pci_conf_read'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci.o):
In function `pci_child_suspend':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:1045:
undefined reference to `pci_conf_read'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:1048:
undefined reference to `pci_conf_write'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:1051:
undefined reference to `pci_conf_write'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:1053:
undefined reference to `aprint_error_dev'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci.o):
In function `pcidetach':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:216:
undefined reference to `config_detach_children'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:218:
undefined reference to `pmf_device_deregister'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci.o):
In function `pciprint':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:231:
undefined reference to `aprint_normal'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:233:
undefined reference to `aprint_normal'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:257:
undefined reference to `snprintb'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:233:
undefined reference to `aprint_normal'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci.o):
In function `pci_get_capability':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:498:
undefined reference to `pci_conf_read'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:503:
undefined reference to `pci_conf_read'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:516:
undefined reference to `pci_conf_read'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:527:
undefined reference to `pci_conf_read'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:521:
undefined reference to `pci_decompose_tag'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci.o):
In function `pci_child_register':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:1101:
undefined reference to `device_parent'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:1102:
undefined reference to `device_private'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:1107:
undefined reference to `kern_malloc'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:1109:
undefined reference to `device_locator'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:1110:
undefined reference to `device_locator'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:1113:
undefined reference to `pci_make_tag'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:1115:
undefined reference to `pci_conf_read'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:1116:
undefined reference to `pci_conf_read'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:1129:
undefined reference to `device_pmf_bus_register'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci.o):
In function `pci_get_ht_capability':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:556:
undefined reference to `pci_conf_read'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:554:
undefined reference to `panic'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci.o):
In function `pci_msi_count':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:584:
undefined reference to `pci_conf_read'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:588:
undefined reference to `aprint_error'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci.o):
In function `pci_msix_count':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:608:
undefined reference to `pci_conf_read'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci.o):
In function `pci_get_ext_capability':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:625:
undefined reference to `pci_conf_read'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:644:
undefined reference to `pci_conf_read'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:632:
undefined reference to `panic'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci.o):
In function `pci_vpd_read':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:780:
undefined reference to `pci_conf_write'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:790:
undefined reference to `delay_func'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:791:
undefined reference to `pci_conf_read'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:793:
undefined reference to `pci_conf_read'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:770:
undefined reference to `kern_assert'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:771:
undefined reference to `kern_assert'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci.o):
In function `pci_vpd_write':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:813:
undefined reference to `pci_conf_write'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:818:
undefined reference to `pci_conf_write'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:828:
undefined reference to `delay_func'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:829:
undefined reference to `pci_conf_read'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:806:
undefined reference to `kern_assert'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:807:
undefined reference to `kern_assert'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci.o):
In function `pci_conf_capture':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:853:
undefined reference to `pci_conf_read'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci.o):
In function `pci_conf_restore':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:866:
undefined reference to `pci_conf_read'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:868:
undefined reference to `pci_conf_write'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci.o):
In function `pci_child_resume':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:1062:
undefined reference to `device_pmf_bus_private'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:1067:
undefined reference to `aprint_error_dev'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci.o):
In function `pci_get_powerstate_int':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:883:
undefined reference to `pci_conf_read'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci.o):
In function `pci_probe_device':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:284:
undefined reference to `pci_decompose_tag'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:290:
undefined reference to `pci_conf_read'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:294:
undefined reference to `pci_conf_read'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:296:
undefined reference to `pci_conf_read'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:395:
undefined reference to `pci_conf_read'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci.o):
In function `pci_conf_capture':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:853:
undefined reference to `pci_conf_read'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci.o):
In function `pci_probe_device':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:456:
undefined reference to `config_stdsubmatch'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:456:
undefined reference to `config_found_sm_loc'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci.o):
In function `pci_enumerate_bus':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:697:
undefined reference to `pci_make_tag'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:699:
undefined reference to `pci_conf_read'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:703:
undefined reference to `pci_conf_read'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:748:
undefined reference to `pci_make_tag'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci.o):
In function `pcirescan':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:102:
undefined reference to `device_private'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:104:
undefined reference to `kern_assert'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:105:
undefined reference to `kern_assert'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci.o):
In function `pciattach':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:137:
undefined reference to `device_private'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:146:
undefined reference to `pci_attach_hook'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:148:
undefined reference to `aprint_naive'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:149:
undefined reference to `aprint_normal'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:158:
undefined reference to `aprint_error_dev'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:207:
undefined reference to `pmf_device_register1'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:168:
undefined reference to `aprint_verbose_dev'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:174:
undefined reference to `aprint_verbose'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:183:
undefined reference to `aprint_verbose'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:186:
undefined reference to `aprint_verbose'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:197:
undefined reference to `pci_bus_maxdevs'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:202:
undefined reference to `device_pmf_driver_set_child_register'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:173:
undefined reference to `aprint_verbose'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:171:
undefined reference to `aprint_verbose'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:178:
undefined reference to `aprint_verbose'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:182:
undefined reference to `aprint_verbose'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:180:
undefined reference to `aprint_verbose'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci.o):
In function `pci_find_device':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:662:
undefined reference to `pci_cd'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:663:
undefined reference to `pci_cd'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:663:
undefined reference to `device_lookup'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:665:
undefined reference to `device_private'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:662:
undefined reference to `pci_cd'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci.o):
In function `pcidevdetached':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:468:
undefined reference to `device_private'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:473:
undefined reference to `device_locator'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:474:
undefined reference to `device_locator'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:480:
undefined reference to `pci_make_tag'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:478:
undefined reference to `kern_assert'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci.o):
In function `pci_activate':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:1005:
undefined reference to `aprint_normal_dev'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:994:
undefined reference to `aprint_error_dev'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci.o):
In function `pci_child_deregister':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:1095:
undefined reference to `kern_free'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci.o):
In function `pciattach':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci.c:208:
undefined reference to `aprint_error_dev'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci_subr.o):
In function `splraiseipl':
/home/paul/localhost/rumprun/obj-amd64-hw/buildrump.sh/sys/rump/dev/lib/libpci/./x86/intr.h:164:
undefined reference to `splraise'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci_subr.o):
In function `pci_conf_print_bar':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_subr.c:856:
undefined reference to `pci_conf_write'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_subr.c:857:
undefined reference to `pci_conf_read'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_subr.c:858:
undefined reference to `pci_conf_write'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_subr.c:866:
undefined reference to `spllower'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci_subr.o):
In function `splraiseipl':
/home/paul/localhost/rumprun/obj-amd64-hw/buildrump.sh/sys/rump/dev/lib/libpci/./x86/intr.h:164:
undefined reference to `splraise'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci_subr.o):
In function `pci_conf_print_bar':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_subr.c:856:
undefined reference to `pci_conf_write'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_subr.c:857:
undefined reference to `pci_conf_read'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_subr.c:858:
undefined reference to `pci_conf_write'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_subr.c:861:
undefined reference to `pci_conf_write'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_subr.c:862:
undefined reference to `pci_conf_read'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_subr.c:863:
undefined reference to `pci_conf_write'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci_subr.o):
In function `pci_conf_print_sriov_cap':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_subr.c:2657:
undefined reference to `format_bytes'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_subr.c:2673:
undefined reference to `format_bytes'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci_subr.o):
In function `pci_load_verbose':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_subr.c:568:
undefined reference to `module_autoload'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_subr.c:568:
undefined reference to `module_autoload'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci_subr.o):
In function `pci_aprint_devinfo_fancy':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_subr.c:652:
undefined reference to `aprint_normal'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_subr.c:656:
undefined reference to `aprint_normal'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_subr.c:664:
undefined reference to `aprint_naive'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_subr.c:654:
undefined reference to `aprint_normal'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_subr.c:666:
undefined reference to `aprint_naive'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_subr.c:660:
undefined reference to `aprint_normal'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci_subr.o):
In function `pci_conf_print':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_subr.c:3637:
undefined reference to `pci_conf_read'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci_map.o):
In function `splraiseipl':
/home/paul/localhost/rumprun/obj-amd64-hw/buildrump.sh/sys/rump/dev/lib/libpci/./x86/intr.h:164:
undefined reference to `splraise'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci_map.o):
In function `pci_mem_find':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_map.c:138:
undefined reference to `pci_conf_read'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_map.c:139:
undefined reference to `pci_conf_write'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_map.c:140:
undefined reference to `pci_conf_read'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_map.c:141:
undefined reference to `pci_conf_write'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_map.c:150:
undefined reference to `spllower'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_map.c:180:
undefined reference to `aprint_debug'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_map.c:143:
undefined reference to `pci_conf_read'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_map.c:145:
undefined reference to `pci_conf_write'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_map.c:146:
undefined reference to `pci_conf_read'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_map.c:147:
undefined reference to `pci_conf_write'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_map.c:150:
undefined reference to `spllower'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_map.c:124:
undefined reference to `panic'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_map.c:121:
undefined reference to `panic'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci_map.o):
In function `splraiseipl':
/home/paul/localhost/rumprun/obj-amd64-hw/buildrump.sh/sys/rump/dev/lib/libpci/./x86/intr.h:164:
undefined reference to `splraise'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci_map.o):
In function `pci_io_find':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_map.c:75:
undefined reference to `pci_conf_read'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_map.c:76:
undefined reference to `pci_conf_write'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_map.c:77:
undefined reference to `pci_conf_read'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_map.c:78:
undefined reference to `pci_conf_write'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_map.c:79:
undefined reference to `spllower'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_map.c:82:
undefined reference to `aprint_debug'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_map.c:87:
undefined reference to `aprint_debug'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_map.c:62:
undefined reference to `panic'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci_map.o):
In function `pci_mapreg_type':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_map.c:235:
undefined reference to `pci_conf_read'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_map.c:235:
undefined reference to `pci_conf_read'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_map.c:235:
undefined reference to `pci_conf_read'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci_map.o):
In function `splraiseipl':
/home/paul/localhost/rumprun/obj-amd64-hw/buildrump.sh/sys/rump/dev/lib/libpci/./x86/intr.h:164:
undefined reference to `splraise'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci_map.o):
In function `pci_mapreg_probe':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_map.c:245:
undefined reference to `pci_conf_read'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_map.c:246:
undefined reference to `pci_conf_write'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_map.c:247:
undefined reference to `pci_conf_read'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_map.c:248:
undefined reference to `pci_conf_write'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_map.c:249:
undefined reference to `spllower'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci_map.o):
In function `pci_mapreg_submap':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_map.c:329:
undefined reference to `bus_space_map'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci_map.o):
In function `splraiseipl':
/home/paul/localhost/rumprun/obj-amd64-hw/buildrump.sh/sys/rump/dev/lib/libpci/./x86/intr.h:164:
undefined reference to `splraise'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci_map.o):
In function `pci_mapreg_submap':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_map.c:313:
undefined reference to `pci_conf_read'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_map.c:315:
undefined reference to `pci_conf_write'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_map.c:316:
undefined reference to `spllower'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci.a(pci_map.o):
In function `pci_find_rom':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_map.c:364:
undefined reference to `bus_space_read_2'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_map.c:366:
undefined reference to `bus_space_read_2'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_map.c:380:
undefined reference to `bus_space_read_4'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_map.c:381:
undefined reference to `bus_space_read_2'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_map.c:383:
undefined reference to `bus_space_read_2'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_map.c:385:
undefined reference to `bus_space_read_1'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_map.c:387:
undefined reference to `bus_space_read_1'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_map.c:389:
undefined reference to `bus_space_read_1'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_map.c:391:
undefined reference to `bus_space_read_2'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_map.c:393:
undefined reference to `bus_space_read_1'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_map.c:395:
undefined reference to `bus_space_read_1'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/dev/lib/libpci/../../../../dev/pci/pci_map.c:412:
undefined reference to `bus_space_subregion'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci_auich.a(auich.o):
In function `auich_attach':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/../dev/pci/auich.c:513:
undefined reference to `rumpns_pci_mapreg_map'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/../dev/pci/auich.c:518:
undefined reference to `rumpns_pci_mapreg_map'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/../dev/pci/auich.c:494:
undefined reference to `rumpns_pci_mapreg_map'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/../dev/pci/auich.c:498:
undefined reference to `rumpns_pci_mapreg_map'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci_eap.a(eap.o):
In function `eap_attach':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/../dev/pci/eap.c:559:
undefined reference to `rumpns_pci_devinfo'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/../dev/pci/eap.c:585:
undefined reference to `rumpns_pci_mapreg_map'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci_hdaudio.a(hdaudio_pci.o):
In function `hdaudio_pci_attach':
/home/paul/localhost/rumprun/src-netbsd/sys/dev/pci/hdaudio_pci.c:130:
undefined reference to `rumpns_pci_mapreg_map'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci_if_wm.a(if_wm.o):
In function `wm_detach':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/../dev/pci/if_wm.c:2585:
undefined reference to `rumpns_pci_intr_release'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci_if_wm.a(if_wm.o):
In function `wm_setup_legacy':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/../dev/pci/if_wm.c:4219:
undefined reference to `rumpns_pci_intr_establish_xname'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/../dev/pci/if_wm.c:4223:
undefined reference to `rumpns_pci_intr_type'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci_if_wm.a(if_wm.o):
In function `wm_pll_workaround_i210':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/../dev/pci/if_wm.c:11738:
undefined reference to `rumpns_pci_get_capability'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci_if_wm.a(if_wm.o):
In function `wm_attach':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/../dev/pci/if_wm.c:1491:
undefined reference to `rumpns_pci_dma64_available'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/../dev/pci/if_wm.c:1498:
undefined reference to `rumpns_pci_aprint_devinfo_fancy'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/../dev/pci/if_wm.c:1543:
undefined reference to `rumpns_pci_mapreg_type'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/../dev/pci/if_wm.c:1547:
undefined reference to `rumpns_pci_mapreg_map'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/../dev/pci/if_wm.c:1574:
undefined reference to `rumpns_pci_mapreg_type'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/../dev/pci/if_wm.c:1616:
undefined reference to `rumpns_pci_activate'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/../dev/pci/if_wm.c:1622:
undefined reference to `rumpns_pci_msix_count'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/../dev/pci/if_wm.c:1631:
undefined reference to `rumpns_pci_intr_alloc'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/../dev/pci/if_wm.c:1636:
undefined reference to `rumpns_pci_intr_type'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/../dev/pci/if_wm.c:1648:
undefined reference to `rumpns_pci_intr_type'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/../dev/pci/if_wm.c:1652:
undefined reference to `rumpns_pci_intr_release'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/../dev/pci/if_wm.c:1639:
undefined reference to `rumpns_pci_intr_release'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci_if_wm.a(if_wm.o):
In function `wm_setup_msix':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/../dev/pci/if_wm.c:4270:
undefined reference to `rumpns_pci_intr_establish_xname'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/../dev/pci/if_wm.c:4316:
undefined reference to `rumpns_pci_intr_establish_xname'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/../dev/pci/if_wm.c:4358:
undefined reference to `rumpns_pci_intr_establish_xname'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci_if_wm.a(if_wm.o):
In function `wm_attach':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/../dev/pci/if_wm.c:1664:
undefined reference to `rumpns_pci_intr_release'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/../dev/pci/if_wm.c:1596:
undefined reference to `rumpns_pci_mapreg_map'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/../dev/pci/if_wm.c:1898:
undefined reference to `rumpns_pci_mapreg_type'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/../dev/pci/if_wm.c:1899:
undefined reference to `rumpns_pci_mapreg_map'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/../dev/pci/if_wm.c:1713:
undefined reference to `rumpns_pci_get_capability'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/../dev/pci/if_wm.c:1728:
undefined reference to `rumpns_pci_get_capability'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci_usbhc.a(ehci_pci.o):
In function `ehci_pci_attach':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/../dev/pci/ehci_pci.c:131:
undefined reference to `rumpns_pci_aprint_devinfo_fancy'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/../dev/pci/ehci_pci.c:138:
undefined reference to `rumpns_pci_mapreg_map'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/../dev/pci/ehci_pci.c:160:
undefined reference to `rumpns_pci_find_device'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/../dev/pci/ehci_pci.c:207:
undefined reference to `rumpns_pci_findvendor'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci_usbhc.a(uhci_pci.o):
In function `uhci_pci_attach':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/../dev/pci/uhci_pci.c:103:
undefined reference to `rumpns_pci_aprint_devinfo_fancy'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/../dev/pci/uhci_pci.c:106:
undefined reference to `rumpns_pci_mapreg_map'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/../dev/pci/uhci_pci.c:174:
undefined reference to `rumpns_pci_findvendor'
/home/paul/localhost/rumprun/./rumprun/rumprun-x86_64/lib/rumprun-hw/librumpdev_pci_usbhc.a(ohci_pci.o):
In function `ohci_pci_attach':
/home/paul/localhost/rumprun/src-netbsd/sys/rump/../dev/pci/ohci_pci.c:103:
undefined reference to `rumpns_pci_aprint_devinfo_fancy'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/../dev/pci/ohci_pci.c:116:
undefined reference to `rumpns_pci_mapreg_map'
/home/paul/localhost/rumprun/src-netbsd/sys/rump/../dev/pci/ohci_pci.c:157:
undefined reference to `rumpns_pci_findvendor'
collect2: error: ld returned 1 exit status