From owner-freebsd-ports-bugs@freebsd.org Sat Sep 22 10:28:24 2018 Return-Path: Delivered-To: freebsd-ports-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 72D9B10933D1 for ; Sat, 22 Sep 2018 10:28:24 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 0F9038D367 for ; Sat, 22 Sep 2018 10:28:24 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id C8C8F10933CD; Sat, 22 Sep 2018 10:28:23 +0000 (UTC) Delivered-To: ports-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B767210933CA for ; Sat, 22 Sep 2018 10:28:23 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 591488D361 for ; Sat, 22 Sep 2018 10:28:23 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 86F9F4EDC for ; Sat, 22 Sep 2018 10:28:22 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w8MASMs6005231 for ; Sat, 22 Sep 2018 10:28:22 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w8MASM5Y005230 for ports-bugs@FreeBSD.org; Sat, 22 Sep 2018 10:28:22 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: ports-bugs@FreeBSD.org Subject: [Bug 231479] lang/julia: build stuck while running libwhich -p libopenblasp.so using synth Date: Sat, 22 Sep 2018 10:28:22 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: Trond.Endrestol@ximalas.info X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: ports-bugs@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: flagtypes.name Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Sep 2018 10:28:24 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D231479 Trond.Endrestol@ximalas.info changed: What |Removed |Added ---------------------------------------------------------------------------- Flags|maintainer-feedback+ |maintainer-feedback?(iblis@ | |hs.ntnu.edu.tw) --- Comment #10 from Trond.Endrestol@ximalas.info --- Grepping around for libwhich in the various Makefiles, pointed me to base/Makefile, line 153: define symlink_system_library symlink_$1: $$(build_private_libdir)/$1.$$(SHLIB_EXT) $$(build_private_libdir)/$1.$$(SHLIB_EXT): REALPATH=3D`$$(call spawn,$$(build_depsbindir)/libwhich) -p $$(notd= ir $$@)` && \ $$(call resolve_path,REALPATH) && \ [ -e "$$$$REALPATH" ] && \ ([ ! -e "$$@" ] || rm "$$@") && \ echo ln -sf "$$$$REALPATH" "$$@" && \ ln -sf "$$$$REALPATH" "$$@" ifneq ($2,) ifneq ($$(USE_SYSTEM_$2),0) SYMLINK_SYSTEM_LIBRARIES +=3D symlink_$1 endif endif endef At line 177 of the same file, we find: $(eval $(call symlink_system_library,$(LIBBLASNAME),BLAS)) By now, we know where libwhich is being called, and for some reason the libopenblasp.so file isn't what LLVM's libwhich expects, and the latter isn= 't robust enough to handle the unexpected. --=20 You are receiving this mail because: You are the assignee for the bug.=