Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 4348a278ff3b94d9ec33266b5de50688e3ab61a6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
###############################################################################
# Copyright (c) 2012, 2014 Red Hat Inc. 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
# http://www.eclipse.org/legal/epl-v10.html
#
# Contributors:
#     Red Hat Inc. - initial API and implementation
###############################################################################
GcovCompilerOptions_msg=No Gcov Data Files Found
GcovCompileAgain_msg=Recompile at least one of your C/C++ source files with the \"-fprofile-arcs\" and \"-ftest-coverage\" \
options and link your executable with \"-lgcov\".  If you compile and link in a single gcc call, you can use the \
gcc \"--coverage\" option to imply all of the needed options.

GcovMissingFlag_Title=Gcov not enabled
GcovMissingFlag_MainMsg=\
Gcov support is not enabled for the current active build configuration. \n\n

GcovMissingFlag_CDTInfo=\
For a Managed C/C++ project, gcov support is enabled as follows: \n\
 Project Properties -> C/C++ Build -> Settings \n\
 -> GCC C++ Compiler (or GCC C Compiler for C) -> Debugging \n\
 'Generate gcov information '\n\n

GcovMissingFlag_AutotoolsInfo=\
For an Autotools project, gcov support is enabled as follows: \n\
 Project Properties -> Autotools -> Configure Settings \n\
 -> configure -> Advanced \n\
 'Gcov Support'\n\n

GcovMissingFlag_PostQuestion=\
Would you like to retry with gcov support automatically enabled for you and a rebuild of the project performed?

Back to the top