file "<package name>.ads" not found

4
Feb

Whenever you create a package body, the GNAT compiler expects a specifications and declarations file of the same name with the .ads extension. The file is mandatory for the compiler to function properly (it reads the .ads files each time you use a with statement.)

In most cases you misspelled one or the other file. Make sure both, the .adb and the .ads are properly named.

0
Your rating: None