Skip to content

Commit

Permalink
Fix Crinkler link in README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ascpixi authored Aug 30, 2023
1 parent 169115d commit 9135fd8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Please note that this is not bound to MSBuild - this can also be achieved with c
As mentioned in the [How does it work](#How-does-it-work) section, the lack of GC means that object allocations are frowned upon, and should be disposed of manually, similarly to C. As all of the BCL classes are missing, this also means that they have to be either re-implemented, or alternatives like the host OS's built-in APIs need to be used. This project also only works on Windows - it depends on importing Win32 classes, and assumes the output binary format is PE, which is only majorly supported by NT-based OS's.

## Potential improvements
As this repository focuses on avoiding any kind of external tools, the default MSVC linker was used. However, specialized linkers such as the (Clinkler)(https://github.com/runestubbe/Crinkler) can be used in order to compress the whole binary and avoid any unnecessary sections.
As this repository focuses on avoiding any kind of external tools, the default MSVC linker was used. However, specialized linkers such as the [Crinkler](https://github.com/runestubbe/Crinkler) can be used in order to compress the whole binary and avoid any unnecessary sections.

## Building
In order to build any given project, simply type in:
Expand Down

0 comments on commit 9135fd8

Please sign in to comment.