mirror of
https://git.tukaani.org/xz.git
synced 2024-04-04 12:36:23 +02:00
liblzma: Prevent an empty translation unit in Windows builds.
To workaround Automake lacking Windows resource compiler support, an empty source file is compiled to overwrite the resource files for static library builds. Translation units without an external declaration are not allowed by the C standard and result in a warning when used with -Wempty-translation-unit (Clang) or -pedantic (GCC).
This commit is contained in:
parent
ef7fbe8393
commit
19899340cf
1 changed files with 5 additions and 1 deletions
|
@ -72,11 +72,15 @@ endif
|
||||||
# static liblzma, we overwrite the static object file with an object file
|
# static liblzma, we overwrite the static object file with an object file
|
||||||
# compiled from empty input. Note that GNU-specific features are OK here,
|
# compiled from empty input. Note that GNU-specific features are OK here,
|
||||||
# because on Windows we are compiled with the GNU toolchain.
|
# because on Windows we are compiled with the GNU toolchain.
|
||||||
|
#
|
||||||
|
# The typedef in empty.c will prevent an empty translation unit, which is
|
||||||
|
# not allowed by the C standard. It results in a warning with
|
||||||
|
# -Wempty-translation-unit with Clang or -pedantic for GCC.
|
||||||
.rc.lo:
|
.rc.lo:
|
||||||
$(LIBTOOL) --mode=compile $(RC) $(DEFS) $(DEFAULT_INCLUDES) \
|
$(LIBTOOL) --mode=compile $(RC) $(DEFS) $(DEFAULT_INCLUDES) \
|
||||||
$(INCLUDES) $(liblzma_la_CPPFLAGS) $(CPPFLAGS) $(RCFLAGS) \
|
$(INCLUDES) $(liblzma_la_CPPFLAGS) $(CPPFLAGS) $(RCFLAGS) \
|
||||||
-i $< -o $@
|
-i $< -o $@
|
||||||
echo > empty.c
|
echo "typedef void empty;" > empty.c
|
||||||
$(COMPILE) -c empty.c -o $(*D)/$(*F).o
|
$(COMPILE) -c empty.c -o $(*D)/$(*F).o
|
||||||
|
|
||||||
# Remove ordinals from the generated .def file. People must link by name,
|
# Remove ordinals from the generated .def file. People must link by name,
|
||||||
|
|
Loading…
Reference in a new issue