Skip to content

Commit

Permalink
added show and hide cursor support, fixing technological debt from or…
Browse files Browse the repository at this point in the history
…iginal mlx, fixed missaligned comments in mlx.h
  • Loading branch information
Kbz-8 committed Oct 31, 2024
1 parent fc404a4 commit 77f1a2d
Show file tree
Hide file tree
Showing 7 changed files with 205 additions and 205 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,9 @@ And you can enjoy your project
### 📦 Compile mode
By default the mlx is built in release mode but you can switch to debug by using `make DEBUG=true`.

### 🦺 Safety
MacroLibX has a strong safety support, mainly by checking every pointer that you pass to it. But this safety has a cost that can be avoided by enabling `DISABLE_ALL_SAFETIES=true` before compiling but don't be afraid to recieve segmentation faults from the mlx.

### 🛠️ Set the toolchain
If you want to use `GCC` to build the mlx you can use `make TOOLCHAIN=gcc`

Expand Down
3 changes: 3 additions & 0 deletions XMAKE_BUILD.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ Just as the Makfile build system, you can configure how xmake should build the M
### 📦 Compile mode
You can configure xmake to build the mlx in debug mode or in release mode (release mode is enabled by default). To do so you can use `xmake config --mode=debug` or `xmake config --mode=release`.

### 🦺 Safety
MacroLibX has a strong safety support, mainly by checking every pointer that you pass to it. But this safety has a cost that can be avoided by enabling `xmake config --disable_all_safeties=y` before compiling but don't be afraid to recieve segmentation faults from the mlx.

### 🛠️ Set the toolchain
To change the compilation toolchain you can use `xmake config --toolchain=[gcc|clang|...]`

Expand Down
Loading

0 comments on commit 77f1a2d

Please sign in to comment.