From: <sv...@op...> - 2025-02-15 15:49:26
|
Author: manx Date: Sat Feb 15 16:49:13 2025 New Revision: 22881 URL: https://source.openmpt.org/browse/openmpt/?op=revision&rev=22881 Log: Merged revision(s) 22879 from trunk/OpenMPT: [Fix] build: Makefile: GCC: Fix typo in linker option --no-undefined. [Fix] build: Makefile: Clang: Fix typo in linker option --no-undefined. ........ Modified: branches/OpenMPT-1.30/ (props changed) branches/OpenMPT-1.30/build/make/warnings-clang.mk branches/OpenMPT-1.30/build/make/warnings-gcc.mk Modified: branches/OpenMPT-1.30/build/make/warnings-clang.mk ============================================================================== --- branches/OpenMPT-1.30/build/make/warnings-clang.mk Sat Feb 15 16:48:50 2025 (r22880) +++ branches/OpenMPT-1.30/build/make/warnings-clang.mk Sat Feb 15 16:49:13 2025 (r22881) @@ -16,7 +16,7 @@ endif CXXFLAGS_WARNINGS += CFLAGS_WARNINGS += -Wframe-larger-than=4000 -LDFLAGS_WARNINGS += -Wl,-no-undefined +LDFLAGS_WARNINGS += -Wl,--no-undefined # re-renable after 1.29 branch #CXXFLAGS_WARNINGS += -Wdouble-promotion #CFLAGS_WARNINGS += -Wdouble-promotion Modified: branches/OpenMPT-1.30/build/make/warnings-gcc.mk ============================================================================== --- branches/OpenMPT-1.30/build/make/warnings-gcc.mk Sat Feb 15 16:48:50 2025 (r22880) +++ branches/OpenMPT-1.30/build/make/warnings-gcc.mk Sat Feb 15 16:49:13 2025 (r22881) @@ -9,7 +9,7 @@ CXXFLAGS_WARNINGS += CFLAGS_WARNINGS += -Wframe-larger-than=4000 #CXXFLAGS_WARNINGS += -Wstrict-aliasing -Wpointer-arith -Winit-self -Wshadow -Wswitch-enum -Wstrict-prototypes -LDFLAGS_WARNINGS += -Wl,-no-undefined -Wl,--detect-odr-violations +LDFLAGS_WARNINGS += -Wl,--no-undefined -Wl,--detect-odr-violations # re-renable after 1.29 branch #CXXFLAGS_WARNINGS += -Wdouble-promotion #CFLAGS_WARNINGS += -Wdouble-promotion |