From 998556be06752bd86464f8e02be6188010fa8ee5 Mon Sep 17 00:00:00 2001 From: Alexey Simbarsky Date: Thu, 8 Nov 2018 14:06:21 +0300 Subject: [PATCH] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 9d7e111..00399a5 100644 --- a/README.md +++ b/README.md @@ -5,11 +5,11 @@ This program allows you to use 'Caps Lock' key (in MS Windows OS) as a hotkey to --- Notes: _**1) Build instructions (MinGW):**_ -i686-w64-mingw32-gcc -mwindows -static -s -fdata-sections -ffunction-sections -fno-asynchronous-unwind-tables -Os -o clswitch32.exe clswitch.c -Wl,--gc-sections,--strip-all +i686-w64-mingw32-g++ -mwindows -static -s -fdata-sections -ffunction-sections -fno-asynchronous-unwind-tables -ffreestanding -nostdlib -Os -Wl,--gc-sections,--strip-all,--entry=_startup -o clswitch32.exe clswitch.c -lkernel32 -luser32 _or_ -x86_64-w64-mingw32-gcc -mwindows -static -s -fdata-sections -ffunction-sections -fno-asynchronous-unwind-tables -Os -o clswitch64.exe clswitch.c -Wl,--gc-sections,--strip-all +x86_64-w64-mingw32-g++ -mwindows -static -s -fdata-sections -ffunction-sections -fno-asynchronous-unwind-tables -ffreestanding -nostdlib -Os -Wl,--gc-sections,--strip-all,--entry=startup -o clswitch64.exe clswitch.c -lkernel32 -luser32 _**2) Installation:**_ There is no any automatic install scripts or functions, so you must run the selected executable file manually or you may create link for it in the "Startup" folder ("C:\Users\\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup") -_**3) Prebuilt binaries:**_ [statically linked x86](https://github.com/asimba/clswitch/releases/download/v1.0/clswitch32.7z) / [statically linked x64](https://github.com/asimba/clswitch/releases/download/v1.0/clswitch64.7z) (_**Warning:**_ Due to the use of the 'SetWindowsHookEx' function, some antivirus programs may give false positive warnings.) +_**3) Prebuilt binaries:**_ [statically linked x86](https://github.com/asimba/clswitch/releases/download/v1.1/clswitch32.7z) / [statically linked x64](https://github.com/asimba/clswitch/releases/download/v1.1/clswitch64.7z) (_**Warning:**_ Due to the use of the 'SetWindowsHookEx' function, some antivirus programs may give false positive warnings.)