--depth 1, option only clones the latest commit, meaning it clones A LOT quicker

master
Yo hello 1 year ago
parent
commit
eb27caf077
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      Working-on-GNU-Linux.md

+ 1
- 1
Working-on-GNU-Linux.md

@ -44,7 +44,7 @@ You can compile three different types of raylib library:
Download the raylib repository from [Github](https://github.com/raysan5/raylib), then compile it with: Download the raylib repository from [Github](https://github.com/raysan5/raylib), then compile it with:
git clone https://github.com/raysan5/raylib.git raylib
git clone --depth 1 https://github.com/raysan5/raylib.git raylib
cd raylib/src/ cd raylib/src/
make PLATFORM=PLATFORM_DESKTOP # To make the static version. make PLATFORM=PLATFORM_DESKTOP # To make the static version.
make PLATFORM=PLATFORM_DESKTOP RAYLIB_LIBTYPE=SHARED # To make the dynamic shared version. make PLATFORM=PLATFORM_DESKTOP RAYLIB_LIBTYPE=SHARED # To make the dynamic shared version.

Loading…
Cancel
Save