From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1521) id 475B23858D3C; Sat, 20 Jan 2024 03:46:14 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 475B23858D3C DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1705722374; bh=Ur6+w00fb8lD9wYzGkkudfnPsFHAiXT/Y6Lfq6SPR9c=; h=From:To:Subject:Date:From; b=HlXA1LMdB5QpO2RdPbS81NeT2tVhZSTzZtidrhYcoXjFxiTSwhER4tjB0FopyLS0W X8K+xi+BhJwOlco6QPJG+4gaxSYz6/VYadGHbrvSvy94aSchp2MJlyLt/wfGLoLuP/ MV1gQ5PW4b2Oz1ZnTFbfNyTs1KEIQRpaXiq5Dwgk= Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Michael Frysinger To: newlib-cvs@sourceware.org Subject: [newlib-cygwin/main] libgloss: microblaze: use port-specific sbrk X-Act-Checkin: newlib-cygwin X-Git-Author: Mike Frysinger X-Git-Refname: refs/heads/main X-Git-Oldrev: ae46a835fe9321b77b3dc880c47614fe2da763d1 X-Git-Newrev: fecb0e5e78ab0b69c4f44af8a803d5ed6387997c Message-Id: <20240120034614.475B23858D3C@sourceware.org> Date: Sat, 20 Jan 2024 03:46:14 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=3Dnewlib-cygwin.git;h=3Dfecb0e5e78a= b0b69c4f44af8a803d5ed6387997c commit fecb0e5e78ab0b69c4f44af8a803d5ed6387997c Author: Mike Frysinger Date: Sun Dec 31 02:07:04 2023 -0500 libgloss: microblaze: use port-specific sbrk =20 The default search path uses the common sbrk.c over the microblaze one, so add a rule to force the microblaze variant instead. Diff: --- libgloss/microblaze/Makefile.in | 1 + 1 file changed, 1 insertion(+) diff --git a/libgloss/microblaze/Makefile.in b/libgloss/microblaze/Makefile= .in index f1fa286bb..8437378f8 100644 --- a/libgloss/microblaze/Makefile.in +++ b/libgloss/microblaze/Makefile.in @@ -122,6 +122,7 @@ linux-crt0.o: linux-crt0.S crtinit.o: crtinit.S sim-crtinit.o: sim-crtinit.S sim-pgcrtinit.o: sim-pgcrtinit.S +sbrk.o: sbrk.c =20 # target specific makefile fragment comes in here. @target_makefile_frag@