-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
for use with GNATSAS deep CI runs
- Loading branch information
Showing
2 changed files
with
43 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
project linux_analyze extends all "a_linux_debug_base.gpr" is | ||
|
||
----------------------------------------------- | ||
-- These lines of code must be included at the | ||
-- top of every Adamant based .gpr file. They | ||
-- are used to connect the Adamant build system | ||
-- to GPRBuild. | ||
----------------------------------------------- | ||
for Source_Dirs use a_adamant.SOURCE_DIRS; | ||
for Object_Dir use a_adamant.OBJECT_DIR; | ||
for Exec_Dir use a_adamant.EXEC_DIR; | ||
|
||
package Compiler is | ||
-- Add preprocessor definitions and configuration pragma switches: | ||
for Switches ("Ada") use a_linux_debug_base.Compiler'Switches ("Ada") & | ||
-- add ravenscar restriction | ||
("-gnatec=" & a_adamant.ADAMANT_DIR & "/redo/targets/configuration_pragmas/ravenscar.adc"); | ||
end Compiler; | ||
|
||
-- Force analysis into "deep" mode | ||
package Analyzer is | ||
for Switches ("analyze") use ("--mode=deep"); | ||
end Analyzer; | ||
|
||
end linux_analyze; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters