changeset 36333:bbe2964a9017 draft v9.1.0790

patch 9.1.0790: Amiga: AmigaOS4 build should use default runtime (newlib) Commit: https://github.com/vim/vim/commit/8fc2a097e241d29f883a5a20e8fc998eb37e6580 Author: Ola S?der <rolfkopman@gmail.com> Date: Thu Oct 17 20:49:36 2024 +0200 patch 9.1.0790: Amiga: AmigaOS4 build should use default runtime (newlib) Problem: Amiga: AmigaOS4 build should use default runtime (newlib) Solution: Remove clib2 from compiler / linker flags (Ola S?der) closes: #15890 Signed-off-by: Ola S?der <rolfkopman@gmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Thu, 17 Oct 2024 21:00:12 +0200
parents 68d2f1a3d348
children a0de046fd0da
files src/Make_ami.mak src/version.c
diffstat 2 files changed, 4 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/Make_ami.mak
+++ b/src/Make_ami.mak
@@ -53,8 +53,8 @@ endif
 
 # OS specific compiler flags
 ifeq ($(UNM),AmigaOS)
-LDFLAGS = -mcrt=clib2 -lauto -lm -lnet
-CFLAGS += -DHAVE_FSYNC -D__USE_INLINE__ -mcrt=clib2
+LDFLAGS = -lauto
+CFLAGS += -DHAVE_FSYNC -D__USE_INLINE__
 else
 ifeq ($(UNM),AROS)
 LDFLAGS = -DHAVE_FSYNC -ldebug
--- a/src/version.c
+++ b/src/version.c
@@ -705,6 +705,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    790,
+/**/
     789,
 /**/
     788,