Update README.md

This commit is contained in:
2026-01-15 20:38:15 +00:00
parent 0a65ef1440
commit 59404f5156

View File

@@ -1,3 +1,14 @@
# Reminder-XMPP
XMPP Reminder bot in C designed to be lightweight as possible (only 8kb compiled)
# How to compile
Install lstrophe to your system and run this after editing first lines of the code with your creds.
```
gcc -Os -s -flto -fomit-frame-pointer -ffunction-sections -fdata-sections -fno-stack-protector -fno-asynchronous-unwind-tables -fno-unwind-tables -fno-ident -fno-plt -fmerge-all-constants -Wl,--gc-sections,--as-needed,-z,norelro,-z,noseparate-code,--build-id=none -no-pie -DNDEBUG -o bot reminder.c -lstrophe -lexpat -lssl -lcrypto -lresolv && strip --strip-all -R .comment -R .note -R .n
ote.gnu.build-id -R .note.ABI-tag bot && sstrip bot && upx --ultra-brute bot
```
# How to run
After compile run the binary in any system you want