From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1791) id 5D6BB3858427; Wed, 17 Apr 2024 20:14:17 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 5D6BB3858427 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1713384857; bh=ljaHqKmiXZcTrnrDYo7ADFJgrMQKw3jiBPk2QjzZCgM=; h=From:To:Subject:Date:From; b=R/sKtnOHb3uR+saDfeXGLVQhUcyu0xgdRLapYfeuNViNEGh3Ubc9BaZBCRl6hybQU x0bPM9cppKOOsC1q5Q6zufcubR9jeKDCZvxJH2abLnRfjGD3pw6vUVVck8HijtnMUG YDW/QUJte4rWG0g0il9JUwmnQ4+IZf8w+SMh4X8k= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Adhemerval Zanella To: glibc-cvs@sourceware.org Subject: [glibc/azanella/clang] Fix loongarch stpcpy on loader X-Act-Checkin: glibc X-Git-Author: Adhemerval Zanella X-Git-Refname: refs/heads/azanella/clang X-Git-Oldrev: 8c370341425a2459e9dd186a8b2185f55b347cb9 X-Git-Newrev: 3a8f2d8706711b287267bff14e20de251d93a1b6 Message-Id: <20240417201417.5D6BB3858427@sourceware.org> Date: Wed, 17 Apr 2024 20:14:17 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=3a8f2d8706711b287267bff14e20de251d93a1b6 commit 3a8f2d8706711b287267bff14e20de251d93a1b6 Author: Adhemerval Zanella Date: Thu Nov 23 14:19:52 2023 -0300 Fix loongarch stpcpy on loader Diff: --- sysdeps/loongarch/lp64/multiarch/rtld-stpcpy.S | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sysdeps/loongarch/lp64/multiarch/rtld-stpcpy.S b/sysdeps/loongarch/lp64/multiarch/rtld-stpcpy.S new file mode 100644 index 0000000000..5ec787481a --- /dev/null +++ b/sysdeps/loongarch/lp64/multiarch/rtld-stpcpy.S @@ -0,0 +1,3 @@ +#define USE_AS_STPCPY +#define STRCPY stpcpy +#include "strcpy-aligned.S"