diff options
Diffstat (limited to 'ld/emultempl/sunos.em')
-rw-r--r-- | ld/emultempl/sunos.em | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ld/emultempl/sunos.em b/ld/emultempl/sunos.em index c6c1605..9f91323 100644 --- a/ld/emultempl/sunos.em +++ b/ld/emultempl/sunos.em @@ -82,7 +82,8 @@ gld${EMULATION_NAME}_before_parse() static void gld${EMULATION_NAME}_create_output_section_statements () { - lang_for_each_input_file (gld${EMULATION_NAME}_find_so); + if (config.dynamic_link) + lang_for_each_input_file (gld${EMULATION_NAME}_find_so); } /* Search the directory for a .so file for each library search. */ |