mirror of
				https://github.com/qemu/qemu.git
				synced 2025-10-31 04:06:46 +00:00 
			
		
		
		
	 e6b99460b1
			
		
	
	
		e6b99460b1
		
	
	
	
	
		
			
			Commitb2c00bce54("meson: convert hw/9pfs, cleanup") introduced CONFIG_9PFS (probably a wrong conflict resolution). This config is not used anywhere. Backends depend on CONFIG_FSDEV_9P which itself depends on CONFIG_VIRTFS. Remove the invalid CONFIG_9PFS and use CONFIG_FSDEV_9P instead, to fix the './configure --without-default-devices --enable-xen' build: /usr/bin/ld: libcommon.fa.p/hw_xen_xen-legacy-backend.c.o: in function `xen_be_register_common': hw/xen/xen-legacy-backend.c:754: undefined reference to `xen_9pfs_ops' /usr/bin/ld: libcommon.fa.p/fsdev_qemu-fsdev.c.o:(.data.rel+0x8): undefined reference to `local_ops' /usr/bin/ld: libcommon.fa.p/fsdev_qemu-fsdev.c.o:(.data.rel+0x20): undefined reference to `synth_ops' /usr/bin/ld: libcommon.fa.p/fsdev_qemu-fsdev.c.o:(.data.rel+0x38): undefined reference to `proxy_ops' collect2: error: ld returned 1 exit status Fixes:b2c00bce54("meson: convert hw/9pfs, cleanup") Suggested-by: Paolo Bonzini <pbonzini@redhat.com> Acked-by: Greg Kurz <groug@kaod.org> Tested-by: Greg Kurz <groug@kaod.org> Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com> Acked-by: Christian Schoenebeck <qemu_oss@crudebyte.com> Message-Id: <20201104115706.3101190-3-philmd@redhat.com> Signed-off-by: Christian Schoenebeck <qemu_oss@crudebyte.com>
		
			
				
	
	
		
			21 lines
		
	
	
		
			447 B
		
	
	
	
		
			Meson
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			447 B
		
	
	
	
		
			Meson
		
	
	
	
	
	
| fs_ss = ss.source_set()
 | |
| fs_ss.add(files(
 | |
|   '9p-local.c',
 | |
|   '9p-posix-acl.c',
 | |
|   '9p-proxy.c',
 | |
|   '9p-synth.c',
 | |
|   '9p-util.c',
 | |
|   '9p-xattr-user.c',
 | |
|   '9p-xattr.c',
 | |
|   '9p.c',
 | |
|   'codir.c',
 | |
|   'cofile.c',
 | |
|   'cofs.c',
 | |
|   'coth.c',
 | |
|   'coxattr.c',
 | |
| ))
 | |
| fs_ss.add(when: 'CONFIG_XEN', if_true: files('xen-9p-backend.c'))
 | |
| softmmu_ss.add_all(when: 'CONFIG_FSDEV_9P', if_true: fs_ss)
 | |
| 
 | |
| specific_ss.add(when: 'CONFIG_VIRTIO_9P', if_true: files('virtio-9p-device.c'))
 |