From 9c9bc719776790ccbf495f734fe93d6759f7d05d Mon Sep 17 00:00:00 2001 From: Tony Lewis Hiroaki URAHAMA <50810875+slord399@users.noreply.github.com> Date: Sat, 7 Oct 2023 20:58:59 +0100 Subject: [PATCH 1/3] Add WSL method to Windows Install It would be much simpler and not experience IPv6 related build fail at all. --- README.md | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 9e4ebbb5..1766cae6 100644 --- a/README.md +++ b/README.md @@ -73,9 +73,24 @@ Building on MacOS should not require any special steps. BUILDING FOR WINDOWS === -Building for Windows requires Cygwin. To obtain Cygwin, see +Building for Windows requires Windows Subsystem for Linux (WSL). +To install WSL, see +[How to install Linux on Windows with WSL](https://learn.microsoft.com/en-us/windows/wsl/install). + +After complete initial process, +simple as: + + sudo apt-get -y install mtr + + +This method will be simpler and easier than tranditional method using cygwin. + +If you prefer traditional method. +Obtain Cygwin, see https://cygwin.com/install.html. + Next, re-run cygwin's `setup-x86.exe` (or `setup-x86_64.exe` if you're using 64bit cygwin) with the following arguments, + which will install the packages required for building: setup-x86.exe --package-manager --wait --packages automake,pkg-config,make,gcc-core,libncurses-devel,libjansson-devel @@ -89,6 +104,8 @@ Finally, install the built binaries: make install + + WHERE CAN I GET THE LATEST VERSION OR MORE INFORMATION? === From 2579026dd84015f56eb828936abd6adac59bf82d Mon Sep 17 00:00:00 2001 From: Tony Lewis Hiroaki URAHAMA <50810875+slord399@users.noreply.github.com> Date: Sat, 7 Oct 2023 21:05:19 +0100 Subject: [PATCH 2/3] Add Ubuntu as specific distribution --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1766cae6..5f056bc5 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,7 @@ BUILDING FOR WINDOWS === Building for Windows requires Windows Subsystem for Linux (WSL). -To install WSL, see +To install WSL with Ubuntu distribution (Default), see [How to install Linux on Windows with WSL](https://learn.microsoft.com/en-us/windows/wsl/install). After complete initial process, From 0845501b347aaf7acd4d340764a31825bed82189 Mon Sep 17 00:00:00 2001 From: Tony Lewis Hiroaki URAHAMA <50810875+slord399@users.noreply.github.com> Date: Sat, 7 Oct 2023 21:20:42 +0100 Subject: [PATCH 3/3] Update section title --- README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5f056bc5..b3fab52a 100644 --- a/README.md +++ b/README.md @@ -70,10 +70,10 @@ to the "trusted" directory.) Building on MacOS should not require any special steps. -BUILDING FOR WINDOWS +USING MTR ON WINDOWS === -Building for Windows requires Windows Subsystem for Linux (WSL). +Using mtr on Windows requires Windows Subsystem for Linux (WSL). To install WSL with Ubuntu distribution (Default), see [How to install Linux on Windows with WSL](https://learn.microsoft.com/en-us/windows/wsl/install). @@ -83,7 +83,9 @@ simple as: sudo apt-get -y install mtr -This method will be simpler and easier than tranditional method using cygwin. + +BUILDING FOR WINDOWS (TRADITIONAL METHOD) +=== If you prefer traditional method. Obtain Cygwin, see