Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
asimba authored Nov 8, 2018
1 parent 8757571 commit 998556b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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\<user name>\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.)

0 comments on commit 998556b

Please sign in to comment.