From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 62350 invoked by alias); 4 Jan 2020 20:20:40 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 62342 invoked by uid 89); 4 Jan 2020 20:20:39 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-1.6 required=5.0 tests=BAYES_00,FREEMAIL_ENVFROM_END_DIGIT,FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=no version=3.3.1 spammy=HContent-Transfer-Encoding:8bit X-HELO: mail-wm1-f53.google.com Received: from mail-wm1-f53.google.com (HELO mail-wm1-f53.google.com) (209.85.128.53) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 04 Jan 2020 20:20:38 +0000 Received: by mail-wm1-f53.google.com with SMTP id p17so11469852wma.1 for ; Sat, 04 Jan 2020 12:20:38 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:subject:date:message-id:mime-version :content-transfer-encoding; bh=JoI0qyMr960rPdkAqFl7vtc0YAOiHOzTH5PQe7ZWbh4=; b=bEwNpb6cY9rdhv9wLHYvyfNvajoAJ8wVieXt+QH7YbjZ3PkHKcLxwxNN4+Rwoi5zou aZuU75n2zWdsUTZTBCVt9CuqW2QikM0aWDfBaRgqn3F6XhlsquTeIXwcJpbcG1JTgKfT 2mMVBzRsEoqX8tGO/FH7cl/HZ/L+vrbXrCxMJyG8E3wNrntbzpJmnCH185f7u5lJgdB+ o6dx6T7tKhG9ee7h5yAKC6QroVG5GbTWmA8CKYM9AefFlCgwzoaXEcTtyiFKvFCTsYUI GfhWXS60x1LA59dfGDwjoaFrxaPgY/RYFgK4aKKPuEh1sq1HDmePb+Y8rxAXRt8S3kAt C64g== Return-Path: Received: from localhost.localdomain (84-114-45-16.cable.dynamic.surfer.at. [84.114.45.16]) by smtp.gmail.com with ESMTPSA id x26sm16652386wmc.30.2020.01.04.12.20.35 for (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Sat, 04 Jan 2020 12:20:35 -0800 (PST) From: Norbert Lange To: gdb-patches@sourceware.org Subject: [PATCH][PR build/24805] Explicitly export symbols from gdb_proc_service Date: Sat, 04 Jan 2020 20:20:00 -0000 Message-Id: <20200104202004.83439-1-nolange79@gmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SW-Source: 2020-01/txt/msg00083.txt.bz2 Compiling GDB with '-fvisibility=hidden' will remove the symbols that should be exported. This patch explicitly marks them as visible. gdb/ChangeLog 2020-01-04 Norbert Lange PR build/24805 * gdbsupport/gdb_proc_service.h: push/pop visibility attribute for exported functions.