From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wr1-x435.google.com (mail-wr1-x435.google.com [IPv6:2a00:1450:4864:20::435]) by sourceware.org (Postfix) with ESMTPS id 45CE23856DFC for ; Fri, 20 May 2022 09:53:49 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 45CE23856DFC Received: by mail-wr1-x435.google.com with SMTP id t6so10768281wra.4 for ; Fri, 20 May 2022 02:53:49 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=+KpZtatyquGRWC5bOMa32pUJT3ZGKTXSVIEKcXJtuSo=; b=C/spraiI4t5OTaHeO/PS0vHr1NUGSo7FKSai2Yo2UskrXNKwQMgf9MffZ1Bsk9His6 WanL57GlnMUMJJF2ZLO6NJWfCAMfJ2QDk0YtZQORRzJfRpFgwozwxd62CHGFNnXJ6nna T2MMk9I4zwJaDWyXUlEk3M63KmmWdvnkFjIyvPF0JxHzGp7/OqQG508gaRU4kkhsGhD2 2sduY/ek3S44i8nrkkaebhWtiNeH9/dc9//D7s6U1XlnlvtvNHxsTz3AFDbFXgboxEhc DMe7fG2swXTHkLKBauCqIxRJDdyg5/XZxeCHjGKsJQ8OtOh56CXhLnKujZNTFwgLmcPm yOrA== X-Gm-Message-State: AOAM531f8AtPoOv+EJ+UgVWG0U7WVryo+VRySJpdRA+2xMzw5GgGp+ND g5/YqJNp8q2VSCwW0rwTrco6rf6gL6iEppc4Dis= X-Google-Smtp-Source: ABdhPJzFFFbKPwAMmCm3DEjgXQHzB95R0Y9f/rve2fW/dG8aAO6rddoCGdVlvcHpvaZKkUCzK0SDjUQTl28ix16Elrw= X-Received: by 2002:a05:6000:1c03:b0:20e:5cac:1eb5 with SMTP id ba3-20020a0560001c0300b0020e5cac1eb5mr7694973wrb.422.1653040428005; Fri, 20 May 2022 02:53:48 -0700 (PDT) MIME-Version: 1.0 References: In-Reply-To: From: Mohamed Atef Date: Fri, 20 May 2022 11:53:36 +0200 Message-ID: Subject: Re: problem with Makefile.in generation in lingomp To: Jakub Jelinek Cc: gcc@gcc.gnu.org X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, FREEMAIL_ENVFROM_END_DIGIT, FREEMAIL_FROM, HTML_MESSAGE, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP, T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.29 X-BeenThere: gcc@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 May 2022 09:53:51 -0000 I use 1.15.1. This is the link to the line I mentioned. https://github.com/gcc-mirror/gcc/blob/master/libgomp/plugin/Makefrag.am#L29 On Fri, May 20, 2022 at 11:40 AM Jakub Jelinek wrote: > On Fri, May 20, 2022 at 11:25:59AM +0200, Mohamed Atef wrote: > > I downloaded the last version of the repo, but when I try to > > autoreconf > > in libgomp/ > > i get this error "plugin/Makefrag.am:29: error: libgomp_la_LIBADD must be > > set with '=' before using '+='" > > line 29 in libgomp/plugin/Makefrag.am has > > "libgomp_la_LIBADD += $(DL_LIBS)" > > I removed this line and "autoreconf" worked fine. > > Do I miss some packages? > > Are you using automake 1.15.1 that should be used? > > Anyway, the error seems to be incorrect, > libgomp_la_LIBADD is set in libgomp/Makefile as > libgomp_la_LIBADD = > before > include $(top_srcdir)/plugin/Makefrag.am > a few lines later. > > Jakub > >