From 7d968da82e22d641591682c356ae8fc6c4db00c5 Mon Sep 17 00:00:00 2001 From: Marc Khouzam Date: Sat, 29 May 2010 10:10:38 +0000 Subject: [PATCH] Bug 314536: Hide "Use shared library symbols for debugged applications" as it makes normal launches fail. We will revisit this option when we fully support multi-exec on Linux --- .../cdt/dsf/gdb/internal/ui/launching/GDBSolibBlock.java | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/dsf-gdb/org.eclipse.cdt.dsf.gdb.ui/src/org/eclipse/cdt/dsf/gdb/internal/ui/launching/GDBSolibBlock.java b/dsf-gdb/org.eclipse.cdt.dsf.gdb.ui/src/org/eclipse/cdt/dsf/gdb/internal/ui/launching/GDBSolibBlock.java index 6a5bd6a1023..aefc269a9b8 100644 --- a/dsf-gdb/org.eclipse.cdt.dsf.gdb.ui/src/org/eclipse/cdt/dsf/gdb/internal/ui/launching/GDBSolibBlock.java +++ b/dsf-gdb/org.eclipse.cdt.dsf.gdb.ui/src/org/eclipse/cdt/dsf/gdb/internal/ui/launching/GDBSolibBlock.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2000, 2006 QNX Software Systems and others. + * Copyright (c) 2000, 2010 QNX Software Systems and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at @@ -43,7 +43,10 @@ public class GDBSolibBlock extends Observable implements IMILaunchConfigurationC private boolean fAutoSolib = false; - private boolean fUseSolibForApp = true; + // Bug 314536 and Bug 314554 + // This option will make the DSF-GDB launch fail, and on Linux we have a problem where it will hand + // Since this option was added for multi-process but it has not been completed for Linux yet, just hide it completely for now + private boolean fUseSolibForApp = false; public GDBSolibBlock( IMILaunchConfigurationComponent solibSearchBlock, boolean autoSolib, boolean stopOnSolibEvents ) { super();