From 0652402e36d661a5ba5bbb570b2da1fd038673e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pi=C3=B1a=20Colada?= Date: Tue, 11 May 2021 17:05:28 +0530 Subject: [PATCH] Updated Developer guides (markdown) --- Developer-guides.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Developer-guides.md b/Developer-guides.md index 8a419dd..5ac4450 100644 --- a/Developer-guides.md +++ b/Developer-guides.md @@ -192,15 +192,15 @@ In this example we will compile `nnn` with [netbsd-curses](https://github.com/sa #### Compile `nnn` - # Shared + # shared musl-gcc -O3 -DNORL -I/path_to/netbsd-curses/libcurses -o nnn src/nnn.c -Wl,-Bsymbolic-functions -L/opt/netbsd-curses -lcurses -lterminfo - # Shared custom + # shared custom musl-gcc -O3 -DNORL -DNOLOCALE -DNOMOUSE -DNOBATCH -DNOFIFO -DTOURBIN_QSORT -DNOSSN -DNOUG -DNOX11 -march=corei7 -I/path_to/netbsd-curses/libcurses -o nnn src/nnn.c -Wl,-Bsymbolic-functions -L/opt/netbsd-curses -lcurses -lterminfo # Note: For static compilation append `-static` to the above commands - # Strip the binary + # strip the binary strip nnn #### Run