Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix compiler flags for Linux targets #73

Merged
merged 1 commit into from
Sep 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions redo/targets/gpr/linux_analyze.gpr
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ project linux_analyze extends all "a_linux_debug_base.gpr" is
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");
for Switches ("C++") use a_linux_debug_base.Compiler'Switches ("C++");
for Switches ("C") use a_linux_debug_base.Compiler'Switches ("C");
for Switches ("Asm_Cpp") use a_linux_debug_base.Compiler'Switches ("Asm_Cpp");
end Compiler;

-- Force analysis into "deep" mode
Expand Down
7 changes: 7 additions & 0 deletions redo/targets/gpr/linux_coverage.gpr
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,13 @@ project linux_coverage extends all "a_linux_debug_base.gpr" is
for Switches ("Ada") use a_linux_debug_base.Compiler'Switches ("Ada") &
-- gcov instrumentation flags
("-fprofile-arcs", "-ftest-coverage");
for Switches ("C++") use a_linux_debug_base.Compiler'Switches ("C++") &
-- gcov instrumentation flags
("-fprofile-arcs", "-ftest-coverage");
for Switches ("C") use a_linux_debug_base.Compiler'Switches ("C") &
-- gcov instrumentation flags
("-fprofile-arcs", "-ftest-coverage");
for Switches ("Asm_Cpp") use a_linux_debug_base.Compiler'Switches ("Asm_Cpp");
end Compiler;

package Linker is
Expand Down
3 changes: 3 additions & 0 deletions redo/targets/gpr/linux_debug.gpr
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ project linux_debug extends all "a_linux_debug_base.gpr" is
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");
for Switches ("C++") use a_linux_debug_base.Compiler'Switches ("C++");
for Switches ("C") use a_linux_debug_base.Compiler'Switches ("C");
for Switches ("Asm_Cpp") use a_linux_debug_base.Compiler'Switches ("Asm_Cpp");
end Compiler;

end linux_debug;