Document how to use the linker to create a resource only DLL.
authorNick Clifton <nickc@redhat.com>
Tue, 16 May 2023 15:04:58 +0000 (16:04 +0100)
committerNick Clifton <nickc@redhat.com>
Tue, 16 May 2023 15:04:58 +0000 (16:04 +0100)
  PR 30359
  * ld.texi (WIN32): Document how to create a resource only DLL.

ld/ChangeLog
ld/ld.texi

index 788410a026a5bec2fabb0b7cc35d5b06cd3769ca..ae1b34af0c05f756f8ecb811fd26f1d80b762432 100644 (file)
@@ -1,3 +1,8 @@
+2023-05-16  Nick Clifton  <nickc@redhat.com>
+
+       PR 30359
+       * ld.texi (WIN32): Document how to create a resource only DLL.
+
 2023-05-16  Nick Clifton  <nickc@redhat.com>
 
        * ld.texi (-Ur): Clarify the actions of this option.
index fdcc8c50e4de28c0324cc49522f0d39ac2a3b823..252a0ac9c3f07043d546e1df68c67a30f4764a6b 100644 (file)
@@ -8556,6 +8556,39 @@ archive.  The cygwin and mingw ports of @command{ld} have specific
 support for creating such libraries provided with the
 @samp{--out-implib} command-line option.
 
+@item Resource only DLLs
+It is possible to create a DLL that only contains resources, ie just a
+@samp{.rsrc} section, but in order to do so a custom linker script
+must be used.  This is because the built-in default linker scripts
+will always create @samp{.text} amd @samp {.idata} sections, even if
+there is no input to go into them.
+
+The script should look like this, although the @code{OUTPUT_FORMAT}
+should be changed to match the desired format.
+
+@example
+OUTPUT_FORMAT(pei-i386)
+SECTIONS
+@{
+  . = SIZEOF_HEADERS;
+  . = ALIGN(__section_alignment__);
+  .rsrc __image_base__ + __section_alignment__ : ALIGN(4)
+  @{
+    KEEP (*(.rsrc))
+    KEEP (*(.rsrc$*))
+  @}
+  /DISCARD/ : @{ *(*) @}
+@}
+@end example
+
+With this script saved to a file called, eg @file{rsrc.ld}, a command
+line like this can be used to create the resource only DLL
+@file{rsrc.dll} from an input file called @file{rsrc.o}:
+
+@smallexample
+ld -dll --subsystem windows -e 0 -s rsrc.o -o rsrc.dll -T rsrc.ld
+@end smallexample
+
 @item   exporting DLL symbols
 @cindex exporting DLL symbols
 The cygwin/mingw @command{ld} has several ways to export symbols for dll's.