Skip to content

Commit 8fc2a09

Browse files
soderochrisbra
authored andcommitted
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>
1 parent 6c2fc37 commit 8fc2a09

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

src/Make_ami.mak

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ endif
5353

5454
# OS specific compiler flags
5555
ifeq ($(UNM),AmigaOS)
56-
LDFLAGS = -mcrt=clib2 -lauto -lm -lnet
57-
CFLAGS += -DHAVE_FSYNC -D__USE_INLINE__ -mcrt=clib2
56+
LDFLAGS = -lauto
57+
CFLAGS += -DHAVE_FSYNC -D__USE_INLINE__
5858
else
5959
ifeq ($(UNM),AROS)
6060
LDFLAGS = -DHAVE_FSYNC -ldebug

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -704,6 +704,8 @@ static char *(features[]) =
704704

705705
static int included_patches[] =
706706
{ /* Add new patch number below this line */
707+
/**/
708+
790,
707709
/**/
708710
789,
709711
/**/

0 commit comments

Comments
 (0)