Skip to content
Merged
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
7 changes: 6 additions & 1 deletion gnatcoll.gpr
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,12 @@ project GnatColl is
end Naming;

package Linker is
for Linker_Options use Extra_Libs;
case Library_Type is
when "relocatable" =>
null;
when "static" | "static-pic" =>
for Linker_Options use Extra_Libs;
end case;
end Linker;

package Install is
Expand Down