blob: 355b710f262bddc90e658284e2a67df76faa050b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/bash
set -xe
# Find your own file path for this, I rely on GCC and GNAT:
# $ gcc -print-libgcc-file-name
# Run the command above to get the following output:
# /usr/lib/gcc/x86_64-linux-gnu/8/libgcc.a
# Then, add 'adainclude' and file name to the file path.
# Sorry, I don't know a better way to do this...
cp raylib.ads /usr/lib/gcc/x86_64-linux-gnu/8/adainclude/raylib.ads
exit
|