See into S60
» Subscribe
» Favorite Links
» What is S60?
» Freeware & Trials
» S60 devices
» Hints and tips

» About this blog
» Blognotes (15)
» Bugs and Workarounds (4)
» Build tools (5)
» Carbide.c++ 1.1 (4)
» Carbide.c++ 1.2 (8)
» Carbide.c++ 1.3.x (8)
» Carbide.c++ 2.0.x (9)
» Carbide Plug-Ins (4)
» CodeWarrior (2)
» FAQ (6)
» Future directions (24)
» General (47)
» Off-topic (4)
» On-device debugging (13)
» Performance Investigator (2)
» Product features (18)
» Product releases (16)
» Screencast (13)
» Support (35)
» Tool setup (6)
» UI Designer (8)
» Usability (17)
» Work in Progress (14)
» Write-build-debug (4)
» Tommi's Reports from Wonderland
» Voice of S60
» Creating Carbide C++
» S60 Multimedia Blog
» The Convergence Zone
» Web Browser for S60 Blog
» Consumed by S60
» Java for S60
» Mobile Web Server
» Mobile Security
» See into S60
» Business2GO
» Nokia Podcasting Application Blog
» Executables
» Regular Expressions Help
» License for v2.0 M1 downloads
» View Memory on Variables
» Build frenzy for v2.0M1 release
» August 2008
» July 2008
» June 2008
» May 2008
» April 2008
» March 2008
» February 2008
» August 2007
» May 2007
» April 2007
» March 2007
» February 2007
» January 2007
» December 2006
» November 2006
» October 2006
» September 2006
» August 2006
» July 2006
» June 2006
Subscribe
Links
August 15, 2008 Executables Posted by Ken Ryall at 10:51 PM | Categories: Carbide.c++ 2.0.x

My work this week on Carbide 2.0 was focused on cleaning up problems dealing with executable files. Several people had reported cases where their executables remained locked after a debug session. I was able to reproduce at least one of them and put a fix into the next nightly build.

I also cleaned up an assortment of minor issues with the Executables View and added a "Remove" button to let you easily remove executable files you import for debugging. You can only remove the ones you import since the others reflect the files generated by the projects in your workspace.

Permalink | Comments (0) |
August 11, 2008 Regular Expressions Help Posted by L. Frank Turovich at 01:27 PM | Categories: Carbide.c++ 2.0.x, Product features, Support, Usability

Eclipse contains a host of features and sometimes finding what you want is pretty obscure and simply searching the help may not be, ahem, helpful. As an example, bug #7457 describes a lack of regular expression help in the Find/Replace dialog. It's actually there but not if you look in the Keys preference panel or search the Eclipse documentation.

Here's what to look for and how it works.

Continue reading "Regular Expressions Help" »

Permalink | Comments (0) |
License for v2.0 M1 downloads Posted by Matt Salmo at 09:57 AM | Categories: Carbide.c++ 2.0.x, Support, Tool setup

With some customers already taking a look at the Milestone 1 release for v2.0, we are getting some questions about licensing errors. The Carbide.c++ Licenses folder is currently blank when you download the tool and this is what will cause the problem.

For now, the current tool will accept v1.3 licenses. We have also posted a temp license on the main page of the Google Group. Here is a link:

http://groups.google.com/group/carbide_cpp-v2-beta/web/license-PRO-Sept.lic

To install the license:

Open up the IDE,
Click Help -> Carbide Licenses -> Install License
Then paste the contents of the license file.

Permalink | Comments (0) |
August 08, 2008 View Memory on Variables Posted by Ken Ryall at 05:26 PM | Categories: Carbide.c++ 2.0.x

In Carbide 1.3 we picked up a new feature from CDT that had been missed by CodeWarrior users when moving to Carbide: the ability to right-click on a variable and view memory. This week I revisited an issue that also came up with CodeWarrior: what happens when you "View Memory" on a variable that's stored in a register?

Ordinarily we assume you want to look at the chunk of memory were the variable's value is stored. We find out where it is located and open a memory monitor on that address. This does the what you would want in most cases except when the compiler has used a register to store the variable's value. In Carbide 1.3 you get an obscure error message if you attempt to view memory on a variable in a register. For Carbide 2.0 I could have just cleaned up the error message but recalled that when we had this issue when CodeWarrior we fixed it to use the value in the register as the memory location. This isn't completely consistent with how we treat other variables but at least does something more useful than display an error.

Permalink | Comments (0) |
August 07, 2008 Build frenzy for v2.0M1 release Posted by L. Frank Turovich at 12:01 PM | Categories: Carbide.c++ 2.0.x, General, Work in Progress

Carbide_Beta.jpg
We are closing in on the release of Carbide.c++ v2.0M1 to begin public testing. As those of you in software development know this is an exciting, exhausting, and terrifying time as everyone involved works to make sure that the first public revealing of a new product release goes smoothly.

We have several exciting improvements for you to delve into, not the least of which is our update of Carbide to use the latest Eclipse 3.4 and CDT 5.0 Ganymede releases for Carbide.c++ 2.0. Lots of basic platform and C/C++ improvements should make for an exciting release.

Continue reading "Build frenzy for v2.0M1 release" »

Permalink | Comments (0) |
August 01, 2008 Upgrading the Plumbing Posted by Ken Ryall at 11:55 AM | Categories: Carbide.c++ 2.0.x

While working at home this week I got to watch a work crew digging up our street so they could put in a new sewer line. It reminded me that while most of the work going on for Carbide 2.0 will result in visible new features we are also upgrading some of the existing ones. I just finished reworking how the Executables view gets the list of source files it displays for an executable. To get the list we have to read and parse the symbol information for the executable. We had been using the light weight symbol readers built into CDT for this but saw problems in Carbide 1.3.1 with really large symbol files. So now we ask our debugger engine back-end to get the list of source files. This works faster, is more reliable, and resolves the issues we saw in 1.3.1. The only trade-off has been a brief delay when we start up the debugger engine if it isn't running already, but I think this will be OK given the other improvements we get.

Permalink | Comments (0) |
July 25, 2008 More on Moving the Program Counter Posted by Ken Ryall at 03:48 PM | Categories: Carbide.c++ 2.0.x

Here's a followup to my previous post about moving the PC while debugging: This week I've been working on integrating a new CDT contribution that will add a "Move To Line" command to compliment the existing "Run to Line" and "Resume at Line." "Move To Line" will let you move the PC to a new location without resuming execution. Look for it in a Carbide 2.0 nightly build next week.

Permalink | Comments (0) |
July 18, 2008 Help from our Friends Posted by Ken Ryall at 10:09 AM | Categories: Carbide.c++ 2.0.x

One of the things we have heard about the last couple Carbide releases is how much better the code navigation features have become. Most of those rely on the C++ code indexer built into CDT so the better the indexer gets the better all the code navigation features perform.

While our team tests these features and has fixed a few bugs most of the recent improvement is due to work by other committers on the CDT project. Markus Schorn at Wind River has lead the great improvement in the CDT indexer over the past couple releases and Andrew Ferguson at Symbian has addressed a lot of issues that effect Carbide.c++ users in particular.

The CDT C++ indexer code isn’t easy to just pick up and play around with so there aren’t a lot of people with the skills and experience to work on improvements. So we’re very happy Andrew’s work on CDT has continued: he’s fixed over a dozen bugs in CDT 5.0.x that we’ll be using in the upcoming Carbide 2.0 release. You can see the details by searching the Eclipse bugzilla. Thanks Andrew.

Permalink | Comments (2) |
July 11, 2008 Launching from the SPN View Posted by Ken Ryall at 04:16 PM | Categories: Carbide.c++ 2.0.x

This week I looked at a couple issues with contextual launching: that's what happens when you hit the Debug button and Carbide determines what to launch in the debugger. Carbide 2.0 is based on the new Eclipse 3.4 release and this includes some new APIs for contextual launching. I added support for those and now when you hover over the Debug button it will show you the exact name of the launch configuration you’ll get, not just the project name. I then looked at bug 3904 which asked that the selection in the Symbian Project Navigator View be used to determine which executable would be used by default. So now if you hit "Debug" while an mmp is selected in the SPN view it will launch the executable built by that mmp by default.

Permalink | Comments (0) |