From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 25944 invoked by alias); 18 Jan 2015 09:35:47 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Received: (qmail 25901 invoked by uid 48); 18 Jan 2015 09:35:40 -0000 From: "iains at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgomp/64635] darwin produces libgomp-plugin-host_nonshm.1.dylib but tries to load libgomp-plugin-host_nonshm.so.1 Date: Sun, 18 Jan 2015 09:35:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgomp X-Bugzilla-Version: 5.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: iains at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED 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: 7bit X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2015-01/txt/msg01690.txt.bz2 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64635 --- Comment #6 from Iain Sandoe --- this seems reasonable. ===== However, for the record: * if a shared library is User-facing and needs to be passed to ld64, then the convention is that the suffix = .dylib * if it's part of a framework, then the suffix is usually omitted. ---- * If it's a plug-in only dlopen-ed by a specific process, then the suffix can be whatever you like (e.g. it could be .gomp-plugin to make it clear what its purpose is). Probably not worth the configuration-fu to achieve this tho.