Use compiler-agnostic defines to silence warning
[lttng-tools.git] / .vscode / libtool_gdb_wrapper.sh
CommitLineData
a881d7c9
JG
1#!/usr/bin/env sh
2# Copyright (C) 2024 Jérémie Galarneau <jeremie.galarneau@efficios.com>
3#
4# SPDX-License-Identifier: LGPL-2.1-only
5#
6# Wrapper script to setup the environment before invoking gdb
7# on the in-tree binaries (under `.libs`)
8
503cc7c2
JG
9CURDIR=$(dirname "$0")/
10export LD_LIBRARY_PATH="$CURDIR/../src/lib/lttng-ctl/.libs:$LD_LIBRARY_PATH"
11
a881d7c9 12libtool --mode=execute gdb "$@"
This page took 0.024752 seconds and 4 git commands to generate.