Added makefile message prompt describing available vde networking support when building on Linux and libvdeplug-dev isn't available.
This commit is contained in:
parent
bcf0e8b19c
commit
9575ac5c63
1 changed files with 20 additions and 3 deletions
19
makefile
19
makefile
|
@ -234,7 +234,7 @@ ifeq ($(WIN32),) #*nix Environments (&& cygwin)
|
||||||
$(info *** Warning *** Some users have had problems using the www.tcpdump.org libpcap)
|
$(info *** Warning *** Some users have had problems using the www.tcpdump.org libpcap)
|
||||||
$(info *** Warning *** components for simh networking. For best results, with)
|
$(info *** Warning *** components for simh networking. For best results, with)
|
||||||
$(info *** Warning *** simh networking, it is recommended that you install the)
|
$(info *** Warning *** simh networking, it is recommended that you install the)
|
||||||
$(info *** Warning *** libpcap-dev package from your $(OSTYPE) distribution)
|
$(info *** Warning *** libpcap-dev package from your $(OSNAME) distribution)
|
||||||
$(info *** Warning ***)
|
$(info *** Warning ***)
|
||||||
endif
|
endif
|
||||||
else
|
else
|
||||||
|
@ -256,6 +256,23 @@ ifeq ($(WIN32),) #*nix Environments (&& cygwin)
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
ifeq (,$(findstring USE_VDE_NETWORK,$(NETWORK_CCDEFS)))
|
||||||
|
# Support is available on Linux for libvdeplug. Advise on its usage
|
||||||
|
ifneq (,$(findstring Linux,$(OSTYPE)))
|
||||||
|
$(info *** Warning ***)
|
||||||
|
$(info *** Warning *** $(BUILD_SINGLE)Simulator$(BUILD_MULTIPLE) are being built with)
|
||||||
|
$(info *** Warning *** minimal libpcap networking support)
|
||||||
|
$(info *** Warning ***)
|
||||||
|
$(info *** Warning *** Simulators on your $(OSNAME) platform can also be built with)
|
||||||
|
$(info *** Warning *** extended Ethernet networking support by using VDE Ethernet.)
|
||||||
|
$(info *** Warning ***)
|
||||||
|
$(info *** Warning *** To build simulator(s) with extended networking support you)
|
||||||
|
$(info *** Warning *** should read 0readme_ethernet.txt and follow the instructions)
|
||||||
|
$(info *** Warning *** regarding the needed libvdeplug components for your $(OSNAME))
|
||||||
|
$(info *** Warning *** platform)
|
||||||
|
$(info *** Warning ***)
|
||||||
|
endif
|
||||||
|
endif
|
||||||
ifneq (,$(call find_include,linux/if_tun))
|
ifneq (,$(call find_include,linux/if_tun))
|
||||||
# Provide support for Tap networking on Linux
|
# Provide support for Tap networking on Linux
|
||||||
NETWORK_CCDEFS += -DUSE_TAP_NETWORK
|
NETWORK_CCDEFS += -DUSE_TAP_NETWORK
|
||||||
|
|
Loading…
Add table
Reference in a new issue