From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 9408038930D5; Fri, 24 Apr 2020 11:58:35 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 9408038930D5 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1587729515; bh=NHdQ2wRV/V+QQbP6COlRREHbS3Tj2aCHP32G70O2CMA=; h=From:To:Subject:Date:In-Reply-To:References:From; b=pmuqm52z98mSPDyIpkKHHEC59oHVugIhi/7CG/PCisAMQDIc/hbQoB4oD2RVMZSUR +YXTvnTJ02b7vDZJUmC51vlmldeeoqnVtoeBxjAd2U8eVD0dmn+wfmBJBObq/UkQOV AydUrZTNQeBtnED3DbUYSUPs/wClwcz9t8srwm/o= From: "danglin at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libfortran/94586] trigd_lib.inc:84:28: error: implicit declaration of function 'fmaf' Date: Fri, 24 Apr 2020 11:58:35 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libfortran X-Bugzilla-Version: 10.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: danglin at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: gcc-bugs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-bugs mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Apr 2020 11:58:35 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D94586 --- Comment #43 from John David Anglin --- The fix for PR 94694 fixed the build on hppa2.0w-hp-hpux11.11. We are left with the following new fails in dec_math.f90: FAIL: gfortran.dg/dec_math.f90 -O0 (test for excess errors) FAIL: gfortran.dg/dec_math.f90 -O0 execution test FAIL: gfortran.dg/dec_math.f90 -O1 (test for excess errors) FAIL: gfortran.dg/dec_math.f90 -O1 execution test FAIL: gfortran.dg/dec_math.f90 -O2 (test for excess errors) FAIL: gfortran.dg/dec_math.f90 -O2 execution test FAIL: gfortran.dg/dec_math.f90 -O3 -fomit-frame-pointer -funroll-loops -fpeel- loops -ftracer -finline-functions (test for excess errors) FAIL: gfortran.dg/dec_math.f90 -O3 -fomit-frame-pointer -funroll-loops -fpeel- loops -ftracer -finline-functions execution test FAIL: gfortran.dg/dec_math.f90 -O3 -g (test for excess errors) FAIL: gfortran.dg/dec_math.f90 -O3 -g execution test FAIL: gfortran.dg/dec_math.f90 -Os (test for excess errors) FAIL: gfortran.dg/dec_math.f90 -Os execution test This is caused by the missing 'l' suffix routines: spawn /test/gnu/gcc/objdir/gcc/testsuite/gfortran/../../gfortran -B/test/gnu/gcc/objdir/gcc/testsuite/gfortran/../../ -B/test/gnu/gcc/objdir/hppa2.0w-hp-hpux11.11/./libgfortran/ /test/gnu/gcc/gcc/gcc/testsuite/gfortran.dg/dec_math.f90 -fno-diagnostics-show-caret -fno-diagnostics-show-line-numbers -fdiagnostics-color=3Dnever -fdiagnostics-urls=3Dnever -O0 -cpp -std=3Dgnu -B/test/gnu/gcc/objdir/hppa2.0w-hp-hpux11.11/./libgfortran/.libs -L/test/gnu/gcc/objdir/hppa2.0w-hp-hpux11.11/./libgfortran/.libs -L/test/gnu/gcc/objdir/hppa2.0w-hp-hpux11.11/./libgfortran/.libs -L/test/gnu/gcc/objdir/hppa2.0w-hp-hpux11.11/./libatomic/.libs -B/test/gnu/gcc/objdir/hppa2.0w-hp-hpux11.11/./libquadmath/.libs -L/test/gnu/gcc/objdir/hppa2.0w-hp-hpux11.11/./libquadmath/.libs -L/test/gnu/gcc/objdir/hppa2.0w-hp-hpux11.11/./libquadmath/.libs -lm -o ./dec_math.exe /usr/ccs/bin/ld: Unsatisfied symbols: tanl (first referenced in /var/tmp//ccQhSJVu.o) (code) asinl (first referenced in /var/tmp//ccQhSJVu.o) (code) sinl (first referenced in /var/tmp//ccQhSJVu.o) (code) acosl (first referenced in /var/tmp//ccQhSJVu.o) (code) atanl (first referenced in /var/tmp//ccQhSJVu.o) (code) atan2l (first referenced in /var/tmp//ccQhSJVu.o) (code) cosl (first referenced in /var/tmp//ccQhSJVu.o) (code) collect2: error: ld returned 1 exit status compiler exited with status 1 While I will continue to work on a change to use the 'q' routines from libquadmath on hppa-hpux, this is of lower priority.=