Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
emrakyz authored Apr 15, 2024
1 parent 21eeb79 commit 19b1e7c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,13 @@ Statically compile as a single executable binary.
```
clang -static -fno-pic -fno-pie -Ofast -flto=full -pipe -march=native -mtune=native -funroll-loops \
-Wl,-O3 -Wl,--as-needed -Wl,--gc-sections -Wl,--icf=all \
"sanitize_fs.c" -o "sanitizefs"
"sanitizefs.c" -o "sanitizefs"
```
**With GCC:**
```
gcc -static -fno-pic -fno-pie -Ofast -flto -pipe -march=native -mtune=native -funroll-loops \
-Wl,-O3 -Wl,--as-needed -Wl,--gc-sections \
"sanitize_fs.c" -o "sanitizefs"
"sanitizefs.c" -o "sanitizefs"
```

3. **Move the file to the desired location (Optional)**
Expand Down

0 comments on commit 19b1e7c

Please sign in to comment.