gnat ls -v will provide you with default search paths.
If you want to install your own Ada library, you must put the project file (.gpr) in the "Project Search Path", which tells gnat where you can find the ada and ali files and the library.
Usually you place ada files in /usr/[local/]include/myadalib and ali files in /usr/[local/]lib/myadalib and possibly /usr/[local/]lib/myadalib .so file to /usr/[local/]lib , but you can put them anywhere. It is important to place the project file (myadalib.gpr) in the project search path.
You can even customize the project search path by setting the environment variable ADA_PROJECT_PATH.
source share