diff options
author | terminaldweller <thabogre@gmail.com> | 2022-01-28 17:41:27 +0000 |
---|---|---|
committer | terminaldweller <thabogre@gmail.com> | 2022-01-28 17:41:27 +0000 |
commit | 9a20395870ab15e6e9483cd258fdccaa79b2157f (patch) | |
tree | 9f30e8e53f03467a20cd3bcb4c0a44a6ab8dafae /vim | |
parent | updates (diff) | |
download | scripts-9a20395870ab15e6e9483cd258fdccaa79b2157f.tar.gz scripts-9a20395870ab15e6e9483cd258fdccaa79b2157f.zip |
updates
Diffstat (limited to 'vim')
-rwxr-xr-x | vim/vim-tiny-static.sh | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/vim/vim-tiny-static.sh b/vim/vim-tiny-static.sh new file mode 100755 index 0000000..0c19ae2 --- /dev/null +++ b/vim/vim-tiny-static.sh @@ -0,0 +1,21 @@ +#!/usr/bin/env sh + +make distclean + +CFLAGS="" LD_FLAGS="-static" ./configure \ + --prefix=/debug/libs/runtime \ + --disable-channel \ + --disable-gpm \ + --disable-gtktest \ + --disable-gui \ + --disable-netbeans \ + --disable-nls \ + --disable-selinux \ + --disable-smack \ + --disable-sysmouse \ + --disable-xsmp \ + --enable-multibyte \ + --with-features=normal \ + --without-x + +make -j4 |