cnping

Minimal Graphical Ping Tool
git clone https://git.sinitax.com/cnlohr/cnping
Log | Files | Refs | Submodules | README | LICENSE | sfeed.txt

commit 9f255898a1441bf1be9b36e1d40cfcb4829171c8
parent 67bf9b73eefe1de63bed8608e7cb79250bea5f3d
Author: cnlohr <lohr85@gmail.com>
Date:   Mon, 16 Jul 2018 23:08:07 -0400

Prevent extra symbols from being created, will help reduce binary differences in compilation steps of cnping.exe.

Diffstat:
MMakefile | 2+-
Mcnping.exe | 0
2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile @@ -12,7 +12,7 @@ MINGW32:=i686-w64-mingw32- cnping.exe : cnping.c CNFGFunctions.c CNFGWinDriver.c os_generic.c ping.c httping.c $(MINGW32)windres resources.rc -o resources.o - $(MINGW32)gcc -g -mwindows -m32 $(CFLAGS) resources.o -o $@ $^ -lgdi32 -lws2_32 -s -D_WIN32_WINNT=0x0600 -DWIN32 + $(MINGW32)gcc -g -fno-ident -mwindows -m32 $(CFLAGS) resources.o -o $@ $^ -lgdi32 -lws2_32 -s -D_WIN32_WINNT=0x0600 -DWIN32 cnping : cnping.o CNFGFunctions.o CNFGXDriver.o os_generic.o ping.o httping.o gcc $(CFLAGS) -o $@ $^ -lX11 -lm -lpthread $(LDFLAGS) diff --git a/cnping.exe b/cnping.exe Binary files differ.