<?xml version="1.0" encoding="utf-8" ?>
<rdf:RDF
  xmlns="http://purl.org/rss/1.0/"
  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  xmlns:content="http://purl.org/rss/1.0/modules/content/"
  xmlns:dc="http://purl.org/dc/elements/1.1/"
 >

  <channel rdf:about="http://sourceforge.jp/projects/ginkgo/wiki/!feeds/list">
    <title>CDT gcov plugin Wiki</title>
    <link>http://sourceforge.jp/projects/ginkgo/wiki/!feeds/list</link>
    <description>
      SourceForge.jp Wiki pages for CDT gcov plugin project.    </description>
        <dc:date>2010-02-16T16:36:23+09:00</dc:date>
        <items>
      <rdf:Seq>
                <rdf:li rdf:resource="http://sourceforge.jp/projects/ginkgo/wiki/HowToUse_EN" />
                <rdf:li rdf:resource="http://sourceforge.jp/projects/ginkgo/wiki/FeaturePlan" />
                <rdf:li rdf:resource="http://sourceforge.jp/projects/ginkgo/wiki/EnglishPage" />
                <rdf:li rdf:resource="http://sourceforge.jp/projects/ginkgo/wiki/ForDeveloper" />
                <rdf:li rdf:resource="http://sourceforge.jp/projects/ginkgo/wiki/SandBox" />
                <rdf:li rdf:resource="http://sourceforge.jp/projects/ginkgo/wiki/InternalRelease" />
                <rdf:li rdf:resource="http://sourceforge.jp/projects/ginkgo/wiki/JapanesePage" />
                <rdf:li rdf:resource="http://sourceforge.jp/projects/ginkgo/wiki/FrontPage" />
                <rdf:li rdf:resource="http://sourceforge.jp/projects/ginkgo/wiki/HowToUse" />
              </rdf:Seq>
    </items>
  </channel>

      <item rdf:about="http://sourceforge.jp/projects/ginkgo/wiki/HowToUse_EN">
    <title>HowToUse_EN</title>
    <link>http://sourceforge.jp/projects/ginkgo/wiki/HowToUse_EN</link>
    <dc:identifier>HowToUse_EN</dc:identifier>
    <dc:date>2010-02-16T16:36:23+09:00</dc:date>
        <description>
      <![CDATA[= flow =
== activate ==
Right click project and select properties[[BR]]
[[Embed(projectproperty.jpg)]]

Select C Coverage category and turn on the Activate nature checkbox[[BR]]
[[Embed(activate]]>
    </description>
    <content:encoded>
      <![CDATA[<h1 id="h1-flow">flow</h1><h2 id="h2-activate">activate</h2><p>Right click project and select properties<br />
<img src="http://sourceforge.jp/projects/ginkgo/wiki/HowToUse_EN/attach/projectproperty.jpg" alt="projectproperty.jpg" id="emb-projectproperty.jpg-1" title="projectproperty.jpg" class="embed-image" width="823" height="797">
</p><p>Select C Coverage category and turn on the Activate nature checkbox<br />
<img src="http://sourceforge.jp/projects/ginkgo/wiki/HowToUse_EN/attach/activate.jpg" alt="activate.jpg" id="emb-activate.jpg-1" title="activate.jpg" class="embed-image" width="627" height="543">
</p><h2 id="h2-compiler.20option.20settings">compiler option settings</h2><p>Select C/C++ Build Setting and add &quot;-fprofile-arcs -ftest-coverage -std=c99 &quot; compiler option
<img src="http://sourceforge.jp/projects/ginkgo/wiki/HowToUse_EN/attach/option.jpg" alt="option.jpg" id="emb-option.jpg-1" title="option.jpg" class="embed-image" width="885" height="543">
</p><h2 id="h2-linker.20option.20settings">linker option settings</h2><p>Select C/C++ Build Setting and add &quot;-fprofile-arcs -ftest-coverage -std=c99 &quot; linker option
<img src="http://sourceforge.jp/projects/ginkgo/wiki/HowToUse_EN/attach/linkoption.jpg" alt="linkoption.jpg" id="emb-linkoption.jpg-1" title="linkoption.jpg" class="embed-image" width="885" height="543">
</p><p>Rebuild your project.
</p><h2 id="h2-run">run</h2><p>Run the binary and executed lines and never executed lines are highlighted as can be seen in below screenshot.
* Note: if the high lighted code does not show, you should select refresh project
<img src="http://sourceforge.jp/projects/ginkgo/wiki/HowToUse_EN/attach/screenshot.jpg" alt="screenshot.jpg" id="emb-screenshot.jpg-1" title="screenshot.jpg" class="embed-image" width="823" height="680">
</p>]]>
    </content:encoded>
      </item>
        <item rdf:about="http://sourceforge.jp/projects/ginkgo/wiki/FeaturePlan">
    <title>FeaturePlan</title>
    <link>http://sourceforge.jp/projects/ginkgo/wiki/FeaturePlan</link>
    <dc:identifier>FeaturePlan</dc:identifier>
    <dc:date>2009-10-18T23:00:57+09:00</dc:date>
        <description>
      <![CDATA[= Design

== Problems
Possibility to use an external tools (for me it&#039;s an external make target) that will execute gcov.
(http://sourceforge.jp/projects/ginkgo/lists/archive/dev/2008-December]]>
    </description>
    <content:encoded>
      <![CDATA[<h1 id="h1-Design">Design</h1><h2 id="h2-Problems">Problems</h2><p>Possibility to use an external tools (for me it's an external make target) that will execute gcov.
(<a href="http://sourceforge.jp/projects/ginkgo/lists/archive/dev/2008-December/000004.html)">http://sourceforge.jp/projects/ginkgo/lists/archive/dev/2008-December/000004.html)</a>
</p><h2 id="h2-Solutions">Solutions</h2><p>Coverage builder and the coverage result extraction should be separated using Builder for gcov execution and Error parser to retrieve result of coverage.
Error parser can start retrieve result of coverage by external tools' gcov execution, like external make target or lcov(<a href="http://ltp.sourceforge.net/coverage/lcov.php)." class="external" rel="nofollow">http://ltp.sourceforge.net/coverage/lcov.php).</a>
Gcov execution of Builder should be switch between enable and disable.
Error parser can retrieve result of coverage alone,when Builder is set to disable.
</p><h1 id="h1-Performance">Performance</h1><h2 id="h2-Problems-2">Problems</h2><p>In a Project with a lot of files, coverage calculation can takes a lot of time.
Eclipse cannot be used until gcov builder is finished.
(<a href="http://sourceforge.jp/projects/ginkgo/lists/archive/dev/2008-December/000004.html)">http://sourceforge.jp/projects/ginkgo/lists/archive/dev/2008-December/000004.html)</a>
</p><h2 id="h2-Solutions-2">Solutions</h2><ul><li>Add a stop operation that can stop Builder and Error parser.
</li><li>Add a mode that enable to start Builder and Error parser only by manually.
</li><li>Builder and Error parser should be background task not to effect GUI.
</li><li>To save gcov execution time, parsing *.gcno and *.gcda files directory.
</li><li>Make a enable Builder and Error parser per folder or source file
</li></ul><p>(<a href="http://sourceforge.jp/forum/forum.php?thread_id=22157&amp;forum_id=13644)">http://sourceforge.jp/forum/forum.php?thread_id=22157&amp;forum_id=13644)</a>
</p><h2 id="h2-Problems-3">Problems</h2><p>The Builder file search is too slow, an other method should be used.
(<a href="http://sourceforge.jp/projects/ginkgo/lists/archive/dev/2008-December/000004.html)">http://sourceforge.jp/projects/ginkgo/lists/archive/dev/2008-December/000004.html)</a>
</p><h2 id="h2-Solutions-3">Solutions</h2><ul><li>Find source file's path from *.gcno or *.gcda file
</li></ul><h1 id="h1-User.20Interface">User Interface</h1><h2 id="h2-Solutions-4">Solutions</h2><p>Like for subversion plug-in it should be good to have coverage information display directly on Project Explorer view (not in an other view).
</p><h1 id="h1-Others">Others</h1><ul><li>support branch coverage
</li><li>coverage history 
</li></ul>]]>
    </content:encoded>
      </item>
        <item rdf:about="http://sourceforge.jp/projects/ginkgo/wiki/EnglishPage">
    <title>EnglishPage</title>
    <link>http://sourceforge.jp/projects/ginkgo/wiki/EnglishPage</link>
    <dc:identifier>EnglishPage</dc:identifier>
    <dc:date>2009-10-17T09:07:22+09:00</dc:date>
        <description>
      <![CDATA[= CDT gcov plugin project Wiki =

Welcome to the &quot;CDT gcov plugin&quot; project Wiki Pages.

&#039;&#039;&#039;This Wiki is intended for users &amp; developers&#039;&#039;&#039;. All pages ca]]>
    </description>
    <content:encoded>
      <![CDATA[<h1 id="h1-CDT.20gcov.20plugin.20project.20Wiki">CDT gcov plugin project Wiki</h1><p>Welcome to the &quot;CDT gcov plugin&quot; project Wiki Pages.
</p><p><strong>This Wiki is intended for users &amp; developers</strong>. All pages can be edited by anyone.
You can try out in <a href="http://sourceforge.jp/projects/ginkgo/wiki/SandBox">SandBox</a>.
</p><h2 id="h2-Project.20Summary">Project Summary</h2><p>The &quot;CDT gcov plugin&quot; is a free C/C++ code coverage tool for Eclipse, available under the Eclipse Public License. At the moment, it supports statement coverage. Requirements include the Eclipse CDT and gnu gcov.
</p><h2 id="h2-Download">Download</h2><p>Archived version：
</p><p><a href="https://sourceforge.jp/projects/ginkgo/files/">https://sourceforge.jp/projects/ginkgo/files/</a>
</p><p>Eclipse update site:
</p><p><a href="http://svn.sourceforge.jp/svnroot/ginkgo/trunk/org.ginko.gcov.update/" class="external" rel="nofollow">http://svn.sourceforge.jp/svnroot/ginkgo/trunk/org.ginko.gcov.update/</a>
</p><h2 id="h2-Screenshots">Screenshots</h2><h3 id="h3-C.20project">C project</h3><img src="http://sourceforge.jp/projects/ginkgo/wiki/EnglishPage/attach/screenshot.jpg" alt="screenshot.jpg" id="emb-screenshot.jpg-1" title="screenshot.jpg" class="embed-image" width="823" height="680"><p>
</p><h3 id="h3-C.2B.2B.20project">C++ project</h3><img src="http://sourceforge.jp/projects/ginkgo/wiki/EnglishPage/attach/screenshot_cpp.jpg" alt="screenshot_cpp.jpg" id="emb-screenshot_cpp.jpg-1" title="screenshot_cpp.jpg" class="embed-image" width="951" height="737"><p>
</p><h2 id="h2-Usage">Usage</h2><p>Information on setting up the plug-in can be found in this short <a href="http://sourceforge.jp/projects/ginkgo/wiki/HowToUse_EN">guide</a>.
</p><h2 id="h2-License">License</h2><p>Eclipse Public License, see:
</p><p><a href="http://www.eclipse.org/legal/epl-v10.html" class="external" rel="nofollow">http://www.eclipse.org/legal/epl-v10.html</a>
</p><h2 id="h2-Tested.20Programming.20Environments">Tested Programming Environments</h2><h3 id="h3-OK">OK</h3><ul><li>centOS 4.4
</li><li>windows xp(cygwin gcc)
</li><li>unbutu 7.4
</li><li>unbutu 7.4 on VMWare
</li></ul><h3 id="h3-NG">NG</h3><ul><li>windows xp(cygwin gcc -mno-cygwin option)
</li></ul><p>The problem is that -mno-cygwin does not work with gcov<br />
reference
<a href="http://www.cygwin.com/ml/cygwin/2007-11/msg00180.html" class="external" rel="nofollow">http://www.cygwin.com/ml/cygwin/2007-11/msg00180.html</a>
</p><h2 id="h2-Feature.20Plan">Feature Plan</h2><ul><li><a href="http://sourceforge.jp/projects/ginkgo/wiki/FeaturePlan">Feature Plan</a>
</li><li>support for branch coverage
</li><li>coverage history
</li></ul><h2 id="h2-Pages.20For.20Developers">Pages For Developers</h2><ul><li><a href="http://sourceforge.jp/projects/ginkgo/wiki/ForDeveloper">subversion access</a>
</li><li><a href="http://sourceforge.jp/projects/ginkgo/wiki/InternalRelease">internal release</a>
</li></ul>]]>
    </content:encoded>
      </item>
        <item rdf:about="http://sourceforge.jp/projects/ginkgo/wiki/ForDeveloper">
    <title>ForDeveloper</title>
    <link>http://sourceforge.jp/projects/ginkgo/wiki/ForDeveloper</link>
    <dc:identifier>ForDeveloper</dc:identifier>
    <dc:date>2008-12-20T12:23:23+09:00</dc:date>
        <description>
      <![CDATA[== checkout ==
~~svn+ssh://svn.sourceforge.jp/svnroot/ginkgo~~


== 1. Upload your ssh&#039;s public key to the sourceforge. ==

For details,refer to the following address.
https://sourceforge.]]>
    </description>
    <content:encoded>
      <![CDATA[<h2 id="h2-checkout">checkout</h2><p><del>svn+ssh://svn.sourceforge.jp/svnroot/ginkgo</del>
</p><h2 id="h2-1..20Upload.20your.20ssh.27s.20public.20key.20to.20the.20sourceforge.">1. Upload your ssh's public key to the sourceforge.</h2><p>For details,refer to the following address.
<a href="https://sourceforge.jp/account/editsshkeys.php">https://sourceforge.jp/account/editsshkeys.php</a>
</p><h2 id="h2-2..20Test.20your.20ssh.20connection.">2. Test your ssh connection.</h2><p>$ ssh <em>loginname</em>@shell.sourceforge.jp
</p><h2 id="h2-3..20Configure.20git.20setting.20and.20clone.20the.20git.20repository.20at.20first.20time.">3. Configure git setting and clone the git repository at first time.</h2><p>$ git config --global user.name &quot;Your Name Comes Here&quot;
</p><p>$ git config --global user.email loginname@yourdomain.example.com
</p><p>$ git clone <em>loginname</em>@git.sourceforge.jp:/gitroot/ginkgo/master.git
</p><p>For details,refer to the following address.
</p><p><a href="https://sourceforge.jp/projects/ginkgo/info">https://sourceforge.jp/projects/ginkgo/info</a>
</p><h2 id="h2-4..20Switch.20to.20the.20master.20branch.">4. Switch to the master branch.</h2><p>$ cd master
</p><p>$ git checkout master
</p><h2 id="h2-5..20Fetch.20from.20master.20repository.27s.20changes.20every.20time.20before.20you.20start.20tasks.">5. Fetch from master repository's changes every time before you start tasks.</h2><p>$ git-pull --rebase
</p><h2 id="h2-6..20Edit.20source.20code.20and.20commit.20to.20your.20local.20repository.20several.20times.">6. Edit source code and commit to your local repository several times.</h2><p>$ git commit -a -m &quot;some commit message&quot;
</p><h2 id="h2-7..20If.20your.20source.20code.20works.20well.2Ccommit.20to.20master.20repository.">7. If your source code works well,commit to master repository.</h2><p>$ git-pull --rebase
</p><p>$ git push</p>]]>
    </content:encoded>
      </item>
        <item rdf:about="http://sourceforge.jp/projects/ginkgo/wiki/SandBox">
    <title>SandBox</title>
    <link>http://sourceforge.jp/projects/ginkgo/wiki/SandBox</link>
    <dc:identifier>SandBox</dc:identifier>
    <dc:date>2008-12-18T18:48:03+09:00</dc:date>
        <description>
      <![CDATA[This page allows you to carry out experiments.

oh ok ... check check]]>
    </description>
    <content:encoded>
      <![CDATA[<p>This page allows you to carry out experiments.
</p><p>oh ok ... check check</p>]]>
    </content:encoded>
      </item>
        <item rdf:about="http://sourceforge.jp/projects/ginkgo/wiki/InternalRelease">
    <title>InternalRelease</title>
    <link>http://sourceforge.jp/projects/ginkgo/wiki/InternalRelease</link>
    <dc:identifier>InternalRelease</dc:identifier>
    <dc:date>2008-10-15T21:13:49+09:00</dc:date>
        <description>
      <![CDATA[This is internal release page.
]]>
    </description>
    <content:encoded>
      <![CDATA[<p>This is internal release page.
</p>]]>
    </content:encoded>
      </item>
        <item rdf:about="http://sourceforge.jp/projects/ginkgo/wiki/JapanesePage">
    <title>JapanesePage</title>
    <link>http://sourceforge.jp/projects/ginkgo/wiki/JapanesePage</link>
    <dc:identifier>JapanesePage</dc:identifier>
    <dc:date>2008-07-17T20:19:16+09:00</dc:date>
        <description>
      <![CDATA[= CDT gcov plugin プロジェクト Wiki =

CDT gcov plugin のプロジェクト Wiki ページへようこそ。

&#039;&#039;&#039;ユーザー、開発者どなたでも自由に使って下さい&#039;&#039;&#039;。(どなたでも編集できます)

Wiki ってなに？という方は、
[http://ja.wikipedia.org/wiki]]>
    </description>
    <content:encoded>
      <![CDATA[<h1 id="h1-CDT.20gcov.20plugin.20.E3.83.97.E3.83.AD.E3.82.B8.E3.82.A7.E3.82.AF.E3.83.88.20Wiki">CDT gcov plugin プロジェクト Wiki</h1><p>CDT gcov plugin のプロジェクト Wiki ページへようこそ。
</p><p><strong>ユーザー、開発者どなたでも自由に使って下さい</strong>。(どなたでも編集できます)
</p><p>Wiki ってなに？という方は、
<a href="http://ja.wikipedia.org/wiki/%E3%82%A6%E3%82%A3%E3%82%AD" class="external" rel="nofollow">Wikipedia の「ウィキ」のページ</a>
を参考にしてください。
</p><p>文法などのドキュメントは、サイドバーに標準で入っているリンクか、
SourceForge.jp プロジェクト内の <a href="http://sourceforge.jp/projects/sourceforge/wiki/WikiGuide" class="external-wiki">Wikiガイド</a> を
参照してください。
</p><h2 id="h2-.E6.A6.82.E8.A6.81">概要</h2><p>CDT gcov pluginはEclipse 上で c 言語で書かれたコードのカバレッジを表示するオープンソースソフトウェアです。gcovとcdtを用い、行カバレッジをサポートします。
</p><h2 id="h2-.E3.83.80.E3.82.A6.E3.83.B3.E3.83.AD.E3.83.BC.E3.83.89.28download.29">ダウンロード(download)</h2><p>アーカイブ一覧：
</p><p><a href="https://sourceforge.jp/projects/ginkgo/files/">https://sourceforge.jp/projects/ginkgo/files/</a>
</p><p>update site:
</p><p><a href="http://svn.sourceforge.jp/svnroot/ginkgo/trunk/org.ginko.gcov.update/" class="external" rel="nofollow">http://svn.sourceforge.jp/svnroot/ginkgo/trunk/org.ginko.gcov.update/</a>
</p><h2 id="h2-.E3.82.B9.E3.82.AF.E3.83.AA.E3.83.BC.E3.83.B3.E3.82.B7.E3.83.A7.E3.83.83.E3.83.88.28screen.20shot.29">スクリーンショット(screen shot)</h2><img src="http://sourceforge.jp/projects/ginkgo/wiki/JapanesePage/attach/screenshot.jpg" alt="screenshot.jpg" id="emb-screenshot.jpg-1" title="screenshot.jpg" class="embed-image" width="823" height="680"><p>
</p><h2 id="h2-.E4.BD.BF.E7.94.A8.E6.96.B9.E6.B3.95.28How.20to.20use.29">使用方法(How to use)</h2><p><a href="http://sourceforge.jp/projects/ginkgo/wiki/HowToUse">HowToUse</a>
</p><h2 id="h2-.E3.83.A9.E3.82.A4.E3.82.BB.E3.83.B3.E3.82.B9.28license.29">ライセンス(license)</h2><p>eclipse public license
</p><p><a href="http://www.eclipse.org/legal/epl-v10.html" class="external" rel="nofollow">http://www.eclipse.org/legal/epl-v10.html</a>
</p><h2 id="h2-.E5.8B.95.E4.BD.9C.E7.92.B0.E5.A2.83.28environment.29">動作環境(environment)</h2><h3 id="h3-OK">OK</h3><ul><li>centOS 4.4
</li><li>windows xp(cygwin)
</li><li>unbutu 7.4
</li><li>unbutu 7.4 on VMWare
</li></ul><h3 id="h3-NG">NG</h3><ul><li>windows xp(cygwin -mno-cygwin オプション)
</li></ul><p>cygwin上でのgcc -mno-cygwin オプションがgcovに対応していないため<br />
<a href="http://www.cygwin.com/ml/cygwin/2007-11/msg00180.html" class="external" rel="nofollow">http://www.cygwin.com/ml/cygwin/2007-11/msg00180.html</a>
を参照
</p><h2 id="h2-.E8.A8.88.E7.94.BB.28plan.29">計画(plan)</h2><ul><li>分岐網羅への対応(support for branch coverage)
</li><li>実行履歴(coverage history)
</li></ul><h2 id="h2-.E9.96.8B.E7.99.BA.E8.80.85.E5.90.91.E3.81.91.28for.20developer.29">開発者向け(for developer)</h2><p><a href="http://sourceforge.jp/projects/ginkgo/wiki/ForDeveloper">ForDeveloper</a></p>]]>
    </content:encoded>
      </item>
        <item rdf:about="http://sourceforge.jp/projects/ginkgo/wiki/FrontPage">
    <title>FrontPage</title>
    <link>http://sourceforge.jp/projects/ginkgo/wiki/FrontPage</link>
    <dc:identifier>FrontPage</dc:identifier>
    <dc:date>2008-07-17T20:17:42+09:00</dc:date>
        <description>
      <![CDATA[= CDT gcov plugin Project Wiki =
[wiki:EnglishPage English]

[wiki:JapanesePage 日本語]

]]>
    </description>
    <content:encoded>
      <![CDATA[<h1 id="h1-CDT.20gcov.20plugin.20Project.20Wiki">CDT gcov plugin Project Wiki</h1><p><a href="http://sourceforge.jp/projects/ginkgo/wiki/EnglishPage">English</a>
</p><p><a href="http://sourceforge.jp/projects/ginkgo/wiki/JapanesePage">日本語</a>
</p>]]>
    </content:encoded>
      </item>
        <item rdf:about="http://sourceforge.jp/projects/ginkgo/wiki/HowToUse">
    <title>HowToUse</title>
    <link>http://sourceforge.jp/projects/ginkgo/wiki/HowToUse</link>
    <dc:identifier>HowToUse</dc:identifier>
    <dc:date>2008-05-07T22:07:38+09:00</dc:date>
        <description>
      <![CDATA[= 手順 =
== 活性化 ==
プロジェクト(project)からプロパティ(property)を選択[[BR]]
[[Embed(projectproperty.jpg)]]
C CoverageからActivate natureのチェックボックスをオンに[[BR]]
[[Embed(activate.jpg)]]
== コンパイラオプション設定 ==
CDTのビルドセッティング]]>
    </description>
    <content:encoded>
      <![CDATA[<h1 id="h1-.E6.89.8B.E9.A0.86">手順</h1><h2 id="h2-.E6.B4.BB.E6.80.A7.E5.8C.96">活性化</h2><p>プロジェクト(project)からプロパティ(property)を選択<br />
<img src="http://sourceforge.jp/projects/ginkgo/wiki/HowToUse/attach/projectproperty.jpg" alt="projectproperty.jpg" id="emb-projectproperty.jpg-1" title="projectproperty.jpg" class="embed-image" width="823" height="797">
C CoverageからActivate natureのチェックボックスをオンに<br />
<img src="http://sourceforge.jp/projects/ginkgo/wiki/HowToUse/attach/activate.jpg" alt="activate.jpg" id="emb-activate.jpg-1" title="activate.jpg" class="embed-image" width="627" height="543">
</p><h2 id="h2-.E3.82.B3.E3.83.B3.E3.83.91.E3.82.A4.E3.83.A9.E3.82.AA.E3.83.97.E3.82.B7.E3.83.A7.E3.83.B3.E8.A8.AD.E5.AE.9A">コンパイラオプション設定</h2><p>CDTのビルドセッティングのうちコンパイラのオプションに-fprofile-arcs -ftest-coverageを追加
<img src="http://sourceforge.jp/projects/ginkgo/wiki/HowToUse/attach/option.jpg" alt="option.jpg" id="emb-option.jpg-1" title="option.jpg" class="embed-image" width="885" height="543">
</p><h2 id="h2-.E3.83.AA.E3.83.B3.E3.82.AB.E3.82.AA.E3.83.97.E3.82.B7.E3.83.A7.E3.83.B3.E8.A8.AD.E5.AE.9A">リンカオプション設定</h2><p>CDTのビルドセッティングのうちリンカのオプションに-fprofile-arcs -ftest-coverageを追加
<img src="http://sourceforge.jp/projects/ginkgo/wiki/HowToUse/attach/linkoption.jpg" alt="linkoption.jpg" id="emb-linkoption.jpg-1" title="linkoption.jpg" class="embed-image" width="885" height="543">
</p><h2 id="h2-.E5.AE.9F.E8.A1.8C">実行</h2><p>対象を実行するとカバレッジに応じた色が表示される<br />
※更新されない場合はプロジェクトの更新(refresh)
<img src="http://sourceforge.jp/projects/ginkgo/wiki/HowToUse/attach/screenshot.jpg" alt="screenshot.jpg" id="emb-screenshot.jpg-1" title="screenshot.jpg" class="embed-image" width="823" height="680">
</p>]]>
    </content:encoded>
      </item>
    </rdf:RDF>

