From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-lj1-x22c.google.com (mail-lj1-x22c.google.com [IPv6:2a00:1450:4864:20::22c]) by sourceware.org (Postfix) with ESMTPS id 82DC5385803C for ; Tue, 8 Dec 2020 17:35:20 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 82DC5385803C Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=moxielogic.com Authentication-Results: sourceware.org; spf=none smtp.mailfrom=green@moxielogic.com Received: by mail-lj1-x22c.google.com with SMTP id s11so12110407ljp.4 for ; Tue, 08 Dec 2020 09:35:20 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=moxielogic-com.20150623.gappssmtp.com; s=20150623; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=uR+1tXCxiEXlDbvoQfnhOVD+BSiSIKtbKjWtieAe0SI=; b=dG8m0QVyuyv3sQyJaCZ5GBLX4bqlogF+s5hzrrc0KOVSwV4So0tDRGUGX4lYBcRrlb ZV7SAYRfHM4LkQD4MzfPMKHEn1PaqfuacQT8LC/3zYjML9cy/AD7A7A3umLFlpdd9ggj Gl9ufbQcctjHYqQ07d4oJzUqv8v1mRIv/xnEt2k+prYoIhU/7NHhaKcs0YVaM05j7JXM 9bzziqYXlH697Ymp1oJrpjhitSuNzN7oWI0Ahl02Ci2m6j6BjKCu8nT7t+hkUtpnH504 1obbLMmfrEMqhP0lr57fXMDOlA5Y+IpWo3k67oEhqnNO27AZ00wDW7n87/bRQrnEV0C2 E2rQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=uR+1tXCxiEXlDbvoQfnhOVD+BSiSIKtbKjWtieAe0SI=; b=jeGvwU+jf3V37FKtKo4pEZtHB4mcrpMmcb/F/QJ52PHOy/o8Z1Gn4sPs8ezI8NQj5y vq+g03xNwAtFaT39B/6ffIhQgIS0ZG9U0PIMDqYYfJEDy/vYz89QdQq0QdXw8BpjO3c+ o9URYRs6/y7tMFGbcfCF05UTm6E6qVRSH4kG3kO+Fgviv2F/PVPkjfU0jgWnsVWuk/8i KGpfZA3MWZcwL85x6ajzQmL+eECbSVthE5Z8VyDUIoA5kWBsf+39xefq8+aJZy51ZpRl 1psDloXORw7FXCCr992COZWpCVaVyKMF83QQbPOq7DtlpJu2xGWRaYVFWxXTRsx1YgSi tAxw== X-Gm-Message-State: AOAM5320eqpjumHoS3DObHKs8khNhdLf/WSeGX0CmMBwwj+aarVbeYZ9 uN9rLJqFow03HEJuEKDp90xUJcH7G5tvGxN9U54q7g== X-Google-Smtp-Source: ABdhPJx/0KTyEvuZNko+IM7T6XhGNmjZnLOOjJq1+uoLgKjAZ/f3jR9CzDs0GXm7iyLEpVZEGoH5mBSgiKJ2l9JMoXM= X-Received: by 2002:a2e:8997:: with SMTP id c23mr10803301lji.207.1607448919420; Tue, 08 Dec 2020 09:35:19 -0800 (PST) MIME-Version: 1.0 References: In-Reply-To: From: Anthony Green Date: Tue, 8 Dec 2020 12:35:08 -0500 Message-ID: Subject: Re: How to force the AIX build to output libffi.a instead of libffi.so? To: Randy Geyer Cc: libffi-discuss X-Spam-Status: No, score=-2.2 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, HTML_MESSAGE, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_NONE, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.29 X-BeenThere: libffi-discuss@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libffi-discuss mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Dec 2020 17:35:21 -0000 Are you trying to build a statically linked library? Why not configure with --disable-shared? AG On Tue, Dec 8, 2020 at 11:10 AM Randy Geyer via Libffi-discuss < libffi-discuss@sourceware.org> wrote: > We are attempting to upgrade libffi from 3.2.1 to 3.3. In all our past > installs we have been able to control the output name by modifying > configure to set shrext_cmds=.a under the aix[4-9]* specs: > > aix[4-9]*) > version_type=linux # correct to gnu/linux during the next big refactor > shrext_cmds=.a > need_lib_prefix=no > > This setting no longer seems to succeed in controlling the output name. >