# HG changeset patch
# User fturovic
- The Symbian OS plug-ins for the Eclipse environment help provide support
- for developers to create and build C++ programs that run on Symbian OS.
+ The Symbian plug-ins for the Eclipse environment help provide support
+ for developers to create and build C++ programs that run on Symbian.
- The plug-ins provide the following support to Symbian OS developers:
+ The plug-ins provide the following support to Symbian developers:
- Project Support: developers can create new Symbian OS
+ Project Support: developers can create new Symbian
projects based on provided templates. Projects can also be
imported from the traditional bld.inf file formats.
- Build Support: The Symbian OS plug-ins eliminate the
- need to use command line build tools to ease Symbian OS development.
+ Build Support: The Symbian plug-ins eliminate the
+ need to use command line build tools to ease Symbian development.
Programs can be built and run from within the IDE. The developer can
also choose to build the binary automatically while saving the project.
- Documentation is available in the C/C++ Development Toolkit User Guide (CDT) for the Symbian OS plug-ins that work with the C/C++ Development Toolkit (CDT). Programming for Symbian OS based platforms is described in the
+ Documentation is available in the C/C++ Development Toolkit User Guide (CDT) for the Symbian plug-ins that work with the C/C++ Development Toolkit (CDT). Programming for Symbian based platforms is described in the
documentation supplied with the development kit that you use. Please consult
- that documentation for further information on Symbian OS concepts and
+ that documentation for further information on Symbian concepts and
development processes.
- MBM, or multi-bitmap, is a Symbian OS-specific bitmap file format. This
+ MBM, or multi-bitmap, is a Symbian-specific bitmap file format. This
file contains multiple bitmaps and can contain bitmaps with masks and
bitmaps without masks. It optimizes the bitmap handling capability of Symbian
- OS. The MMP Editor (in Sources tab > Resources > Bitmaps) and Symbian Project Navigator view provide support for creating and editing MBM
- files. In the Symbian Project Navigator view you can right-click on a scalable icon makefile (for example, Icons_scalable_dc.mk) and select Add MBM/MIF Entry... to open the Edit MBM/MIF Contents window.Getting Started
MBM File
The following information is required to add a bitmap without a mask:
diff -r 16e8bfa397ad -r ff0156b93599 core/com.nokia.carbide.cpp.doc.user/html/concepts/Modify.html --- a/core/com.nokia.carbide.cpp.doc.user/html/concepts/Modify.html Sat Oct 02 12:36:21 2010 -0500 +++ b/core/com.nokia.carbide.cpp.doc.user/html/concepts/Modify.html Wed Oct 06 10:31:32 2010 -0500 @@ -12,8 +12,8 @@ This section explains the changes that can be done to an existing project and the tools provided to make those changes. Once you have created a new project or imported an existing project, you can make changes to that project. - The tools provided to support this task are specific to Symbian OS development - and are there to support the Symbian OS developers using the Eclipse IDE. + The tools provided to support this task are specific to Symbian development + and are there to support the Symbian developers using the Eclipse IDE.The tools that are available to support modification of existing project diff -r 16e8bfa397ad -r ff0156b93599 core/com.nokia.carbide.cpp.doc.user/html/concepts/SampleExampleProjectCreate.html --- a/core/com.nokia.carbide.cpp.doc.user/html/concepts/SampleExampleProjectCreate.html Sat Oct 02 12:36:21 2010 -0500 +++ b/core/com.nokia.carbide.cpp.doc.user/html/concepts/SampleExampleProjectCreate.html Wed Oct 06 10:31:32 2010 -0500 @@ -15,14 +15,14 @@
Figure 1. Select Basic DLL template
Figure 2. Project name and location information
-Figure 3. SDK selection for project
One common debugging DLL use case is when the developer doesn't know which process calls the DLL. This makes it difficult to debug the DLL because you doesn't know which process to attach to nor start. Carbide enables DLL debugging by simply attaching the DLL to any running process as long as the DLL is included in the Executables view. See Attaching to a Process for more details.
+One common debugging DLL use case is when the developer doesn't know which process calls the DLL. This makes it difficult to debug the DLL because you doesn't know which process to attach to nor start. Carbide enables DLL debugging by simply attaching the DLL to any running process as long as the DLL is included in the Executables view. See Attaching to a Process for more details.
A breakpoint is a marker set on a specific line of source code and is designed to halt program execution when encountered by the debugger. After you set a breakpoint at a key point in the program, you can halt its execution, examine its current state, and check register and variable values. You can also change values and alter the flow of normal program execution. Setting breakpoints helps you debug your program and verify its efficiency.
A project can have multiple breakpoints set in the source code files. All breakpoints in a project are shown in the Breakpoints view. Breakpoints are enabled or disabled on the currently selected line within a source code editor by selecting the Run > Toggle Breakpoint menu option, right-clicking the marker bar in the editor and selecting Toggle Breakpoint, or by pressing CTRL-SHIFT-B.
-You can set a breakpoint on any executable line of code that the debugger can resolve. Lines containing comments and other non executable code cannot be assigned a breakpoint as they are normally stripped from the compiled binary. The debugger must load the symbols for a module before it can attempt to resolve breakpoints within the module. This is most easily done using the Executables view to import a binary file, especially if the binary is not in the workspace.
+You can set a breakpoint on any executable line of code that the debugger can resolve. Lines containing comments and other non executable code cannot be assigned a breakpoint as they are normally stripped from the compiled binary. The debugger must load the symbols for a module before it can attempt to resolve breakpoints within the module. This is most easily done using the Executables view to import a binary file, especially if the binary is not in the workspace.
When the debugger attempts to resolve a breakpoint it will result in:
Other references
Build configurations are defined when the project is created. A project can have any number of build configurations and more can be added as necessary. Each build configuration can have its own combination of tool settings to precisely control how it is defined and built. Build configurations are maintained in the project Properties window in the Carbide Build Configurations panel. To open the panel, select a project in the Project Explorer or Symbian Project Navigator view and select Project > Properties or right-click and select Properties.
+Build configurations are defined when the project is created. A project can have any number of build configurations and more can be added as necessary. Each build configuration can have its own combination of tool settings to precisely control how it is defined and built. Build configurations are maintained in the project Properties window in the Carbide Build Configurations panel. To open the panel, select a project in the Project Explorer or Symbian Project Navigator view and select Project > Properties or right-click and select Properties.
You can select a build configuration in the Active Configuration group or use the Project > Active Configuration menu option to set which build configuration to launch when running or debugging a program. The currently selected project can be launched by clicking the Run () or Debug (
) control on the tool bar to launch the project with the currently active build configuration. When no project is selected the last project debugged will be launched.
If no launch configuration is present in the project, one is created on initial launch. Subsequent launches of the project will use either the last launch configuration or if more than one launch configuration exists, it uses the most correct one.
diff -r 16e8bfa397ad -r ff0156b93599 core/com.nokia.carbide.cpp.doc.user/html/concepts/build_system.htm --- a/core/com.nokia.carbide.cpp.doc.user/html/concepts/build_system.htm Sat Oct 02 12:36:21 2010 -0500 +++ b/core/com.nokia.carbide.cpp.doc.user/html/concepts/build_system.htm Wed Oct 06 10:31:32 2010 -0500 @@ -9,10 +9,10 @@The Carbide.c++ build system provides a wrapper around the standard Symbian OS build process utilizing component description files (bld.inf) and project definition files (.mmp files). Because the Carbide.++ build system provides a visual view into this system, it will be useful for new developers to the Symbian OS to become familiar with the basic Symbian OS build process. Further information on the Symbian OS build system can be found in the Symbian Developer Library under the Build Tools Guide and Build Tools Reference sections. If you are already familiar with the Symbian OS build system then you should feel right at home with the Carbide.c++ builder user interface.
-In Carbide.c++, as in the Symbian OS, a project is described by a bld.inf file. Hence, all projects must start with a bld.inf file. Carbide.c++ supports either building all components of a project (including extension makefiles) or only building selected sub-components. This gives the developer the granularity to either build all of a project’s dependencies or, if you are working on very large projects, only building a small sub-component of a larger project.
+The Carbide.c++ build system provides a wrapper around the standard Symbian build process utilizing component description files (bld.inf) and project definition files (.mmp files). Because the Carbide.++ build system provides a visual view into this system, it will be useful for new developers to the Symbian to become familiar with the basic Symbian build process. Further information on the Symbian build system can be found in the Symbian Developer Library under the Build Tools Guide and Build Tools Reference sections. If you are already familiar with the Symbian build system then you should feel right at home with the Carbide.c++ builder user interface.
+In Carbide.c++, as in the Symbian, a project is described by a bld.inf file. Hence, all projects must start with a bld.inf file. Carbide.c++ supports either building all components of a project (including extension makefiles) or only building selected sub-components. This gives the developer the granularity to either build all of a project’s dependencies or, if you are working on very large projects, only building a small sub-component of a larger project.
There are several methods of invoking the Symbian OS build tools on a project or source file.
+There are several methods of invoking the Symbian build tools on a project or source file.
NOTE The debugger has a setting under the Run/Debug > Launching preference page which performs a full build before the start of each debug session. If you prefer to do your own target build only you will want to turn the “Build (if required) before launching” setting off.
The Carbide build system supports the use of command-line arguments for all stages of the build system. You can add these arguments in the Arguments pane of the +
The Carbide build system supports the use of command-line arguments for all stages of the build system. You can add these arguments in the Arguments pane of the Carbide Build Configurations panel in the Properties for <project> window.
For example, to generate a SYM file for UREL build you need to add the -debug argument to the abld makefile stage of the build process.
Always refer to the Symbian Developer Library to learn which arguments are supported by the SDK used by the project.
diff -r 16e8bfa397ad -r ff0156b93599 core/com.nokia.carbide.cpp.doc.user/html/concepts/concepts.htm --- a/core/com.nokia.carbide.cpp.doc.user/html/concepts/concepts.htm Sat Oct 02 12:36:21 2010 -0500 +++ b/core/com.nokia.carbide.cpp.doc.user/html/concepts/concepts.htm Wed Oct 06 10:31:32 2010 -0500 @@ -10,14 +10,14 @@This section of the User Guide provides an overview of the main concepts in -Carbide to create and build programs for Symbian OS.
-The Symbian OS plug-ins are a set of Eclipse plug-ins that provide project, - SDK and build support for Symbian OS developers. The plug-ins extend the +Carbide to create and build programs for Symbian.
+The Symbian plug-ins are a set of Eclipse plug-ins that provide project, + SDK and build support for Symbian developers. The plug-ins extend the functionality provided by Eclipse and the C/C++ Development Toolkit (CDT).
-The plug-ins simplify Symbian OS development by removing the need to use - command line build tools, and provide a graphical interface to Symbian OS +
The plug-ins simplify Symbian development by removing the need to use + command line build tools, and provide a graphical interface to Symbian specific file formats, such as MBM.
-The plug-ins provide a new perspective, called the Carbide.c++ Perspective, on +
The plug-ins provide a new perspective, called the Carbide.c++ Perspective, on the Eclipse workbench. This perspective enhances the standard CDT C/C++ perspective by allowing you to select easily the SDKs and build target types that you want to use for each project.
diff -r 16e8bfa397ad -r ff0156b93599 core/com.nokia.carbide.cpp.doc.user/html/concepts/contextual_menus.htm --- a/core/com.nokia.carbide.cpp.doc.user/html/concepts/contextual_menus.htm Sat Oct 02 12:36:21 2010 -0500 +++ b/core/com.nokia.carbide.cpp.doc.user/html/concepts/contextual_menus.htm Wed Oct 06 10:31:32 2010 -0500 @@ -16,7 +16,7 @@TIP Experiment using the context menu in various views to discover additional capabilities.
diff -r 16e8bfa397ad -r ff0156b93599 core/com.nokia.carbide.cpp.doc.user/html/concepts/cvs.htm --- a/core/com.nokia.carbide.cpp.doc.user/html/concepts/cvs.htm Sat Oct 02 12:36:21 2010 -0500 +++ b/core/com.nokia.carbide.cpp.doc.user/html/concepts/cvs.htm Wed Oct 06 10:31:32 2010 -0500 @@ -20,7 +20,7 @@Other revision systems are also supported but require the downloading of an Eclipse plug-in to add that capability to Carbide. Visit the eclipse-plugins.2y.net sites to locate the plug-ins you need.
The SCM you install normally adds its commands to the Team sub-menu in the Project Explorer view's context menu (Figure 1). Some SCM's install their own menu to Carbide. If this is the case, refer to the documentation included with the plug-in for details.
+The SCM you install normally adds its commands to the Team sub-menu in the Project Explorer view's context menu (Figure 1). Some SCM's install their own menu to Carbide. If this is the case, refer to the documentation included with the plug-in for details.
Figure 1. Team sub-menu
Symbian SDKs include an emulator that runs Symbian OS on a - Microsoft Windows host computer. The emulator provides the full range of Symbian OS +
Symbian SDKs include an emulator that runs Symbian on a + Microsoft Windows host computer. The emulator provides the full range of Symbian functionality, letting you do most development tasks on a single desktop computer. The emulator and the software you build for it with the Carbide.c++ software run natively on the Intel x86 family of processors.
In many cases, you can build and debug a complete application using the emulator, then test the application on the actual device. There are cases however, where you cannot use @@ -21,7 +21,7 @@
-C:\Symbian\<version>\<sdk>\Epoc32\release\winscw\udeb
where Symbian is the path containing the subdirectories and version number of the Symbian OS SDK.
+where Symbian is the path containing the subdirectories and version number of the Symbian SDK.
NOTE The first time you launch an emulator it may take some time to appear. Remember that it is implementing the operating system on the target device and that some setup time is required.
Symbian projects are defined by an .mmp
file which specifies the essential elements of the project. All details of the project lifecycle are handled by the IDE. There is no editable makefile the user can edit to modify the build behavior of the project.
Once the game project has been imported, use these steps to create an N-GAGE game file:
@@ -54,14 +54,14 @@Figure 4 - Builder dialog with new N-Gage Builder defined
The Console view shows information as the project and it's SISX file are built and then the build of the installation file (N-GAGE).
+The Console view shows information as the project and it's SISX file are built and then the build of the installation file (N-GAGE).
Once you have an .N-GAGE game file, you need to deploy it on the target device:
Precompiled header support is available for Symbian OS projects that use the Nokia x86 +
Precompiled header support is available for Symbian projects that use the Nokia x86 compiler. Precompiled header files use the .pch++ extension and are only supported by emulator targets.
By default, the x86 compiler compiles the .pch++ file before compiling any .cpp files in a project.
A precompiled header file (.pch++) outputs to a new identically named file with the .mch extension. For example, HelloWorld.pch++ outputs as HelloWorld.mch. C++ source files must use the .pch++ extension.
diff -r 16e8bfa397ad -r ff0156b93599 core/com.nokia.carbide.cpp.doc.user/html/concepts/registers.htm --- a/core/com.nokia.carbide.cpp.doc.user/html/concepts/registers.htm Sat Oct 02 12:36:21 2010 -0500 +++ b/core/com.nokia.carbide.cpp.doc.user/html/concepts/registers.htm Wed Oct 06 10:31:32 2010 -0500 @@ -16,7 +16,7 @@Registers are the register contents of the central processing unit (CPU) of the host computer or the targeted device. When debugging projects using the emulator, only the host computer x86 registers are visible in the Registers view. When debugging projects on a device, only the target device registers are visible.
-In most cases, the contents of all the registers can be modified. However, when debugging applications on a target device with Symbian OS Device (Install SIS), you cannot change the LR and SP registers.
+In most cases, the contents of all the registers can be modified. However, when debugging applications on a target device with Symbian Device (Install SIS), you cannot change the LR and SP registers.
Figure 1. Registers view with possible register types
The types of registers can include:
diff -r 16e8bfa397ad -r ff0156b93599 core/com.nokia.carbide.cpp.doc.user/html/concepts/templates.htm --- a/core/com.nokia.carbide.cpp.doc.user/html/concepts/templates.htm Sat Oct 02 12:36:21 2010 -0500 +++ b/core/com.nokia.carbide.cpp.doc.user/html/concepts/templates.htm Wed Oct 06 10:31:32 2010 -0500 @@ -17,7 +17,7 @@Eclipse and the C/C++ Development Toolkit (CDT) provides a rich collection of views, editors, wizards and preference windows for performing C++ - development. The Symbian OS plug-ins for Eclipse extend this user interface so - that you can perform the tasks involved in Symbian OS development from the - Eclipse workbench, instead of needing to use the Symbian OS command-line + development. The Symbian plug-ins for Eclipse extend this user interface so + that you can perform the tasks involved in Symbian development from the + Eclipse workbench, instead of needing to use the Symbian command-line toolchain.
- When you work with a Symbian OS C++ project, the workbench uses the Carbide C/C++ perspective, which will look + When you work with a Symbian C++ project, the workbench uses the Carbide C/C++ perspective, which will look something like this:
- The Symbian OS plug-ins also add new wizards and editors. You can use + The Symbian plug-ins also add new wizards and editors. You can use these to:
- Create new Symbian OS projects using the New command, which is available on the File menu, and on the - pop-up menus of the Project Explorer and Symbian Project Navigator views.
+ Create new Symbian projects using the New command, which is available on the File menu, and on the + pop-up menus of the Project Explorer and Symbian Project Navigator views.For more information, see Creating New Projects.
- Import existing projects from Symbian OS bld.inf files using the Import command, which is + Import existing projects from Symbian bld.inf files using the Import command, which is available on the File menu, and on the pop-up menus of the Project Explorer and Symbian Project Navigator views.
For more information, see Importing Projects from a Bld.Inf File. @@ -52,7 +52,7 @@
- Add scalable graphics (MIF) and Symbian OS bitmaps (MBM) to projects, and edit these resources. You can add these using the New command, which is available on the File menu, and on the pop-up menus of the Project Explorer and Symbian Project Navigator views. MBM and MIF editors are provided to modify + Add scalable graphics (MIF) and Symbian bitmaps (MBM) to projects, and edit these resources. You can add these using the New command, which is available on the File menu, and on the pop-up menus of the Project Explorer and Symbian Project Navigator views. MBM and MIF editors are provided to modify the resources.
For more information, see Creating an MBM File.
diff -r 16e8bfa397ad -r ff0156b93599 core/com.nokia.carbide.cpp.doc.user/html/concepts/trk.htm --- a/core/com.nokia.carbide.cpp.doc.user/html/concepts/trk.htm Sat Oct 02 12:36:21 2010 -0500 +++ b/core/com.nokia.carbide.cpp.doc.user/html/concepts/trk.htm Wed Oct 06 10:31:32 2010 -0500 @@ -11,13 +11,13 @@The Carbide On-device Debug Agent (CODA) is a program that enables on-device debugging of phone prototypes, reference boards, and retail phones. An on-device debug agent is a program that is installed on a phone or reference board. It communicates with the debugger using a serial-over-Bluetooth or serial-over-USB connection. Through this serial communication, the on-device debug agent acts as the interface between the Carbide.c++ debugger and the target device. The CODA provides:
Using the on-device remote agent, one can use the Carbide.c++ IDE to debug programs running on phone hardware, making the debugging process much easier. The on-device debug agent works on all Nokia Qt SDK, Symbian^3, and Symbian TechView devkits.
-The Symbian OS Device (Install SIS) is stored online and available for download and installation using the On-Device Connections > New Connection Wizard > Install remote agents pane.
+The Symbian Device (Install SIS) is stored online and available for download and installation using the On-Device Connections > New Connection Wizard > Install remote agents pane.
Some of the key benefits to using an on-device debug agent include:
There are two variations of the on-device debug agent, they are:
This section explains how to work with data that the Carbide.c++ debugger generates. The following windows show various types of debugger data.
-A workspace is the default place to store and create resources like projects, folders, and files. These are then presented to the user in a perspective which enables the presentation and manipulation of the stored resources.
-When Carbide is launched it asks for a workspace to open (Figure 1). As you can have multiple workspaces, all independent from each other, choosing the workspace containing the projects to work on is important. Projects within a workspace are shown in the Carbide workbench within the Project Explorer and C/C++ Project views. When you create a new project it is automatically added to the currently open workspace. You can import existing projects into a workspace from INF files.
+When Carbide is launched it asks for a workspace to open (Figure 1). As you can have multiple workspaces, all independent from each other, choosing the workspace containing the projects to work on is important. Projects within a workspace are shown in the Carbide workbench within the Project Explorer and C/C++ Project views. When you create a new project it is automatically added to the currently open workspace. You can import existing projects into a workspace from INF files.
Figure 1. Workspace Launcher dialog
WARNING Bld.inf imported projects are not copied, so do not delete the contents when deleting the project.
@@ -27,7 +27,7 @@Carbide generates project support files, such as .project and .cproject and a .metadata folder, which stores preferences. Metadata files like ".project" are placed in the source tree. If adding these files to CVS causes a problem, these files may be excluded from CVS using Team > Ignored Resources preference panel to specify name patterns to exclude from version control.
-
![]() |
- - Copyright © 2010 Nokia Corporation and/or its subsidiary(-ies). All rights reserved. |
-
Carbide.c++ User Guide
-
- Version 3.0.0, Sept, 2010 |
-
+ +
+
![]() |
+
+ + + Copyright © 2010 Nokia Corporation and/or its subsidiary(-ies). All rights reserved. |
+
+
+ Carbide.c++ User Guide
+
+ Version 3.0.0, Sept, 2010 + |
+
- \ No newline at end of file + diff -r 16e8bfa397ad -r ff0156b93599 core/com.nokia.carbide.cpp.doc.user/html/debugger/breakpoints/resolving_breakpoints.htm --- a/core/com.nokia.carbide.cpp.doc.user/html/debugger/breakpoints/resolving_breakpoints.htm Sat Oct 02 12:36:21 2010 -0500 +++ b/core/com.nokia.carbide.cpp.doc.user/html/debugger/breakpoints/resolving_breakpoints.htm Wed Oct 06 10:31:32 2010 -0500 @@ -10,7 +10,7 @@
Breakpoints must be located and resolved by the debugger before they can be hit. When a breakpoint is hit in the module, the debugger halts program execution and displays the state of the program in the Debug perspective.
-To hit a breakpoint during a debug session, the debugger must first load the symbols for an executable module and then attempt to resolve the breakpoints within the loaded module. Any module listed into the Executables view is available for loading by a debug session. If a module is not present in the Executable view you'll need to import it before the debugger to load and resolve any breakpoints within that module.
+To hit a breakpoint during a debug session, the debugger must first load the symbols for an executable module and then attempt to resolve the breakpoints within the loaded module. Any module listed into the Executables view is available for loading by a debug session. If a module is not present in the Executable view you'll need to import it before the debugger to load and resolve any breakpoints within that module.
You set a breakpoint on any executable line of code that the debugger can resolve. Lines containing comments and other non executable code cannot be assigned a breakpoint as they are normally stripped from the compiled binary. Carbide helps by preventing you from setting a breakpoint on a non-compilable line of code.
When the debugger attempts to resolve a breakpoint the possible results are shown in Table 1.
NOTE Once a breakpoint is removed from the Breakpoints view it cannot be recovered using the Breakpoints view, it must be set in an editor or disassembly view.
Breakpoints must first be loaded and resolved before they can be hit during a debug session. See Resolving Breakpoint States for more information on the various states a breakpoint can exhibit.
See Saving and importing breakpoints for information on storing breakpoint data sets for sharing or re-use.
-TIP If you find that a breakpoint is not being hit during a debug session, verify that the EXE or DLL is listed in the Executables view.
-TIP If debugging a server launched by a client, you must attach to the server process using the Symbian OS Data view in order to hit the breakpoints in the server. Alternately, you can launch the server and client as two independent EXEs using the same COM port and debug them that way.
+TIP If you find that a breakpoint is not being hit during a debug session, verify that the EXE or DLL is listed in the Executables view.
+TIP If debugging a server launched by a client, you must attach to the server process using the Symbian Data view in order to hit the breakpoints in the server. Alternately, you can launch the server and client as two independent EXEs using the same COM port and debug them that way.
Use the Terminate command () to stop or halt a program based on the type of debugging session underway. Terminate behavior includes:
This behavior differs from suspending a program, as this temporarily suspends execution.
@@ -41,9 +41,9 @@Use the Step Into command () to execute one source-code statement at a time and follow execution into a routine call.
When stepping through a program in a debug session the IDE attempts to match the program counter (PC) location in the executable with a known project source file. If there is no source file associated with the PC the debugger displays in the Debug view the current PC address of the thread (e.g. 0x6002CC11(EUSER.DLL)()) instead of the function name. At this point you can open the Disassembly view to step through the assembler code. This most commonly happens when trying to step into Symbian OS code. We recommend that you Step Return out of the OS code and back into your project to continue debugging.
+When stepping through a program in a debug session the IDE attempts to match the program counter (PC) location in the executable with a known project source file. If there is no source file associated with the PC the debugger displays in the Debug view the current PC address of the thread (e.g. 0x6002CC11(EUSER.DLL)()) instead of the function name. At this point you can open the Disassembly view to step through the assembler code. This most commonly happens when trying to step into Symbian code. We recommend that you Step Return out of the OS code and back into your project to continue debugging.
In any of the above are missing or incorrect, Carbide.c++ can not build a Symbian OS program.
+In any of the above are missing or incorrect, Carbide.c++ can not build a Symbian program.
diff -r 16e8bfa397ad -r ff0156b93599 core/com.nokia.carbide.cpp.doc.user/html/index.xml --- a/core/com.nokia.carbide.cpp.doc.user/html/index.xml Sat Oct 02 12:36:21 2010 -0500 +++ b/core/com.nokia.carbide.cpp.doc.user/html/index.xml Wed Oct 06 10:31:32 2010 -0500 @@ -25,7 +25,7 @@- + @@ -47,7 +47,7 @@ --> - + @@ -174,13 +174,13 @@ - + - + @@ -192,7 +192,7 @@ - + @@ -238,14 +238,14 @@ + - + - - + @@ -385,7 +385,7 @@ - + @@ -393,14 +393,14 @@ - + - - + + - + @@ -420,7 +420,7 @@ @@ -640,7 +640,7 @@ - + diff -r 16e8bfa397ad -r ff0156b93599 core/com.nokia.carbide.cpp.doc.user/html/legal.htm --- a/core/com.nokia.carbide.cpp.doc.user/html/legal.htm Sat Oct 02 12:36:21 2010 -0500 +++ b/core/com.nokia.carbide.cpp.doc.user/html/legal.htm Wed Oct 06 10:31:32 2010 -0500 @@ -1,36 +1,34 @@ - - - Legal - + +Legal + - -License Information
-COPYRIGHTS
-Copyright © 2010 Nokia Corporation and/or its subsidiary(-ies). All rights reserved. This component and the accompanying materials are made available under the terms of the License "Symbian Foundation License v1.0" which accompanies this distribution, and is available at the URL "http://www.symbianfoundation.org/legal/sfl-v10.html".
-Initial Contributors:
-Nokia Corporation - initial contribution
-NOTICES
-Portions of this product are covered by the following licenses:
--
-- Eclipse 3.6 (available at http://www.eclipse.org/legal/epl/notice.php)
-- Eclipse CDT 7.0 (available at http://www.eclipse.org/legal/epl/notice.php)
-- Eclipse EMF 2.5 (available at http://www.eclipse.org/legal/epl/notice.php)
-- Eclipse GEF 3.5 (available at http://www.eclipse.org/legal/epl/notice.php)
-- Eclipse Remote System Explorer-1.0 (available at http://www.eclipse.org/legal/epl-v10.html)
-- Eclipse System Search (available at http://www.eclipse.org/legal/epl/notice.php)
-- Apache Xerces-2.2.0 (available at http://www.apache.org/licenses/LICENSE-2.0)
-- Apache Batick-1.6 (available at http://www.apache.org/licenses/LICENSE-2.0)
-- Apache HttpClient-3.1.0 (available at http://www.apache.org/licenses/LICENSE-2.0)
-- Mozilla Rhino 1.5r2 (available at http://www.mozilla.org/NPL/)
-- OmniORB-4.0.4 (available at http://www.gnu.org/licenses/)
-- GNU Binutils (available at http://sources.redhat.com/binutils/)
-- Python 2.5.1 (available from http://www.python.org/download/releases/2.5/license/)
-- Psyco 1.5.2 (available from http://www.opensource.org/licenses/mit-license.php)
-+
License Information
+COPYRIGHTS
+Copyright © 2010 Nokia Corporation and/or its subsidiary(-ies). All rights reserved. This component and the accompanying materials are made available under the terms of the License "Symbian Foundation License v1.0" which accompanies this distribution, and is available at the URL "http://www.symbianfoundation.org/legal/sfl-v10.html".
+Initial Contributors:
+Nokia Corporation - initial contribution
+NOTICES
+Portions of this product are covered by the following licenses:
++
+- Eclipse 3.6 (available at http://www.eclipse.org/legal/epl/notice.php)
+- Eclipse CDT 7.0 (available at http://www.eclipse.org/legal/epl/notice.php)
+- Eclipse EMF 2.5 (available at http://www.eclipse.org/legal/epl/notice.php)
+- Eclipse GEF 3.5 (available at http://www.eclipse.org/legal/epl/notice.php)
+- Eclipse Remote System Explorer-1.0 (available at http://www.eclipse.org/legal/epl-v10.html)
+- Eclipse System Search (available at http://www.eclipse.org/legal/epl/notice.php)
+- Apache Xerces-2.2.0 (available at http://www.apache.org/licenses/LICENSE-2.0)
+- Apache Batick-1.6 (available at http://www.apache.org/licenses/LICENSE-2.0)
+- Apache HttpClient-3.1.0 (available at http://www.apache.org/licenses/LICENSE-2.0)
+- Mozilla Rhino 1.5r2 (available at http://www.mozilla.org/NPL/)
+- OmniORB-4.0.4 (available at http://www.gnu.org/licenses/)
+- GNU Binutils (available at http://sources.redhat.com/binutils/)
+- Python 2.5.1 (available from http://www.python.org/download/releases/2.5/license/)
+- Psyco 1.5.2 (available from http://www.opensource.org/licenses/mit-license.php)
+- \ No newline at end of file + diff -r 16e8bfa397ad -r ff0156b93599 core/com.nokia.carbide.cpp.doc.user/html/projects/images/perspective_carbide.png Binary file core/com.nokia.carbide.cpp.doc.user/html/projects/images/perspective_carbide.png has changed diff -r 16e8bfa397ad -r ff0156b93599 core/com.nokia.carbide.cpp.doc.user/html/projects/inf/INF_Editor.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/core/com.nokia.carbide.cpp.doc.user/html/projects/inf/INF_Editor.html Wed Oct 06 10:31:32 2010 -0500 @@ -0,0 +1,53 @@ + + +
INF Editor + + + +INF Editor - Overview Tab
+ ++ The INF Editor allows you to view and modify Symbian project files and export files to be included in building your application. The settings displayed are those active for the active build configuration. However, changes made in the INF editor can be applied globally to all build configurations. Changes made in the INF editor are automatically written to the project's .INF file. You can view the .INF file by selecting the bld.inf tab located along the bottom of the INF editor.
++ The INF Editor is shown when an INF file is + opened from the Project Explorer view or Symbian Project Navigator view by double-clicking on the file. The INF Editor is shown in Figure 1.
++
Figure 1 - INF Editor
+ ++
+Name Function + + Components
+ + Add components such as MMP and make files to be part of the normal build process.
++
- Create New MMP File - creates a new MMP file at the bottom of the Component list.
+- Add Existing MMP File - imports a MMP file at the bottom of the Component list.
+- Add Existing Makefile - adds a smake file to the bottom of the Component list.
+- Edit - Select a component and click Edit to apply the Tidy attribute or specify the Build as ARM option.
+- Open - Select a component and click Open to open the component in an editor window.
+- Up - Select a component and click Up to move the component up in the list.
+- Down - Select a component and click Down to move the component down in the list.
+- Remove - Select a component and click Remove to remove the component from the build process.
++ + + Test Components +
+ + Create, import, edit, open, move, or remove MMP and make files that are part of a test build process.
Other references
+ + + + + + + + \ No newline at end of file diff -r 16e8bfa397ad -r ff0156b93599 core/com.nokia.carbide.cpp.doc.user/html/projects/inf/INF_Editor_addedit_make.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/core/com.nokia.carbide.cpp.doc.user/html/projects/inf/INF_Editor_addedit_make.html Wed Oct 06 10:31:32 2010 -0500 @@ -0,0 +1,47 @@ + + +INF Editor - Create/Edit Make + + + +INF Editor - Create / Edit Makefile Entry
+ +The Add Makefile entry dialog (figure 1) is used to add a makefile to the build process. Enter or browse to the make file in the File path field and, if desired, apply the Tidy attribute or specify the Build as ARM option to the make file.
++
Figure 1 - Add/Edit makefile entry
+Table 1. Add/Edit Makefile entry — items
++
++ +Name +Function ++ ++ File path
+ Type the path and filename for the makefile to create or click Browse to set a path.
+ ++ Tidy
+ Specify the tidy attribute if the release that an .mmp file defines is internal to your component and not required by other components or for your component to execute.
+ +Build as ARM +Specifies the build_as_arm statement, which instructs an ARMV5 or later build to build the project for the ARM instruction set and not the THUMB instruction set. ++ +Makefile format +Set the format of the makefile to be created. +Other references
+ + + + + + + + \ No newline at end of file diff -r 16e8bfa397ad -r ff0156b93599 core/com.nokia.carbide.cpp.doc.user/html/projects/inf/INF_Editor_addedit_mmp.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/core/com.nokia.carbide.cpp.doc.user/html/projects/inf/INF_Editor_addedit_mmp.html Wed Oct 06 10:31:32 2010 -0500 @@ -0,0 +1,47 @@ + + +INF Editor - Add/Edit MMP + + + +INF Editor - Add / Edit MMP File Entry
+ + The Add MMP File Entry dialog (figure 1) is used to add a mmp file and apply the Tidy, Manual, and Support attributes. ++
Figure 1 - Add MMP File Entry
+Table 1. Add MMP file entry — items
++
++ +Name +Function ++ ++ File path
+ Type the path and filename for the MMP file to create or click Browse to set a path.
+ ++ Tidy
+ Specify the tidy attribute if the release that an .mmp file defines is internal to your component and not required by other components or for your component to execute.
+ +Manual +Checkmark to indicate a test that requires manual interaction to complete. ++ +Support +Checkmark to not include the test in a batch file. +Other references
+ + + + + + + + \ No newline at end of file diff -r 16e8bfa397ad -r ff0156b93599 core/com.nokia.carbide.cpp.doc.user/html/projects/inf/INF_Editor_exports.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/core/com.nokia.carbide.cpp.doc.user/html/projects/inf/INF_Editor_exports.html Wed Oct 06 10:31:32 2010 -0500 @@ -0,0 +1,97 @@ + + +INF Editor Exports + + + +INF Editor - Exports Tab
+ ++ The INF Editor Exports pane lists files to be copied to the indicated destination path that are part of the normal build process. You can add files, edit paths, move files up or down in the list, or remove files from the list.
++
Figure 1 - INF Editor - Exports Pane
+Table 1. Export tab — items
++
+ ++ +Name +Function ++ ++ Exports
+ Add, edit, arrange order, or remove files that will be part of the build process.
++
- Add - Click to add a file to the list of files to be exported as part of the build process.
+- Edit - Select a file and click Edit to change the source and destination paths for the file.
+- Up - Select a file and click Up to move the file up in the list.
+- Down - Select a file and click Down to move the file down in the list.
+- Remove - Select a file and click Remove to remove the file from the build process.
++ ++ Test Exports
+ Add, edit paths, arrange order, or remove files that will be part of the test build process.
Add Export dialog
+Click the Add control to open the Add Export dialog (figure 2) to add a file to be exported to the destination path when the project is built.
++
Figure 2 - Add Export dialog
+ +Table 2. Add Export — items
++
++ +Name +Function ++ ++ Source path
+ Path and name of file to be exported.
+ ++ Destination path
+ Path location where file is to be exported.
+ +Export is a zip file +Check this option if the export is a zip file and you want to extract it on the destination path. +Edit Export dialog
+Click the Edit control to open the Edit Export dialog (figure 3) to edit the source and destination path of the selected file.
++
Figure 3 - Edit Export dialog
+Table 3. Edit Export — items
++
++ +Name +Function ++ ++ Source path
+ Path and name of file to be exported.
+ ++ Destination path
+ Path location where file is to be exported.
+ +Export is a zip file +Check this option if the export is a zip file and you want to extract it on the destination path. +Other references
+ + + + + + + + \ No newline at end of file diff -r 16e8bfa397ad -r ff0156b93599 core/com.nokia.carbide.cpp.doc.user/html/projects/inf/INF_Editor_file.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/core/com.nokia.carbide.cpp.doc.user/html/projects/inf/INF_Editor_file.html Wed Oct 06 10:31:32 2010 -0500 @@ -0,0 +1,25 @@ + + +BLD.INF File + + + +INF Editor - BLD.INF Tab
+ ++ The bld.inf pane shows the source text of the bld.inf file. This file is automatically updated with changes made in the INF editor Overview and Exports panes or changes can be made manually in this pane. Validation is provided in this window. For example, an error mark is displayed next to the line where an error occurs, as shown in Figure 1. Hover your mouse pointer over the error mark or red error markers in upper right column to display helpful error information.
++
Figure 1 - INF Editor - bld.inf Pane
+ +Related references
+ + + + + + + + \ No newline at end of file diff -r 16e8bfa397ad -r ff0156b93599 core/com.nokia.carbide.cpp.doc.user/html/projects/launch/applications.htm --- a/core/com.nokia.carbide.cpp.doc.user/html/projects/launch/applications.htm Sat Oct 02 12:36:21 2010 -0500 +++ b/core/com.nokia.carbide.cpp.doc.user/html/projects/launch/applications.htm Wed Oct 06 10:31:32 2010 -0500 @@ -9,7 +9,7 @@Applications Launch Configuration
-Use the Symbian OS Device launch configuration to launch projects using the best launch configuration match. When chosen, Carbide examines the project and determines which specific launch configuration works best for the project, then launches it with the selected launch configuration. It is essentially identical to clicking the Debug icon (
+) in the toolbar.
Use the Symbian Device launch configuration to launch projects using the best launch configuration match. When chosen, Carbide examines the project and determines which specific launch configuration works best for the project, then launches it with the selected launch configuration. It is essentially identical to clicking the Debug icon (
) in the toolbar.
Other references
- Launch Configuration Overview
diff -r 16e8bfa397ad -r ff0156b93599 core/com.nokia.carbide.cpp.doc.user/html/projects/launch/attach_process.htm --- a/core/com.nokia.carbide.cpp.doc.user/html/projects/launch/attach_process.htm Sat Oct 02 12:36:21 2010 -0500 +++ b/core/com.nokia.carbide.cpp.doc.user/html/projects/launch/attach_process.htm Wed Oct 06 10:31:32 2010 -0500 @@ -9,19 +9,19 @@Attach to Process Launch Configuration
-Use the Symbian OS Device (Attach to Process) launch configuration to attach the debugger to an already running Symbian OS process or thread on a target device from within any project. This is useful for debugging servers running in RAM in a client-server relationship where the client relies on the presence of the server process to operate as one example.
-Attaching to a process requires a both target device running the Symbian OS and the presence of CODA on the device. You can also use the Symbian OS Data view to attach to a process while debugging. However, you can not attach to a process running on an emulator.
-If the New Launch Configuration Wizard created the Attach to Process launch configuration no changes are usually needed. The Attach to Process options match those of Symbian OS Device with one additional step, selection of the process to debug in the Attach to Process dialog.
+Use the Symbian Device (Attach to Process) launch configuration to attach the debugger to an already running Symbian process or thread on a target device from within any project. This is useful for debugging servers running in RAM in a client-server relationship where the client relies on the presence of the server process to operate as one example.
+Attaching to a process requires a both target device running the Symbian and the presence of CODA on the device. You can also use the Symbian Data view to attach to a process while debugging. However, you can not attach to a process running on an emulator.
+If the New Launch Configuration Wizard created the Attach to Process launch configuration no changes are usually needed. The Attach to Process options match those of Symbian Device with one additional step, selection of the process to debug in the Attach to Process dialog.
To modify the launch configuration settings, select the Run > Debug As menu option to open the Debug dialog. Select the Attach to Process configuration and click a tab to set specific options. Click Apply to save any option modifications. Click Debug to launch a debugging session using the new settings.
Figure 1. Attach to Process launch configuration in the Debug dialog
-The Symbian OS Device (Attach to Process) launch configuration panes include:
+The Symbian Device (Attach to Process) launch configuration panes include:
- The Main tab defines the project to be launched. Enter the name of the project in the Project field, and the executable name in the Executable field.
- The Debugger tab defines debug configurations, such as entry point to begin debugging, target options, and instruction set.
- The ROM Log tab allows you to specify where the ROM log file is stored and the Epoc32 directory.
- The Executables tab allows you to specify which executables that you want to debug that are part of the project.
-- The Source tab (standard CDT page) defines the location of source files used to display source when debugging an application. By default, these settings are derived from the associated project's build path. You may override these settings here.
+- The Source tab (standard CDT page) defines the location of source files used to display source when debugging an application. By default, these settings are derived from the associated project's build path. You may override these settings here.
- The Common tab (standard CDT page) defines general information about the launch configuration. You may choose to store the launch configuration in a specific file.
Other references
diff -r 16e8bfa397ad -r ff0156b93599 core/com.nokia.carbide.cpp.doc.user/html/projects/launch/customizing_launch_configs.htm --- a/core/com.nokia.carbide.cpp.doc.user/html/projects/launch/customizing_launch_configs.htm Sat Oct 02 12:36:21 2010 -0500 +++ b/core/com.nokia.carbide.cpp.doc.user/html/projects/launch/customizing_launch_configs.htm Wed Oct 06 10:31:32 2010 -0500 @@ -32,7 +32,7 @@
![]()
Figure 1 - Initial blank Debug launch configuration window
A new configuration appears in the Configuration list under the appropriate section using the project name and target to create the configuration name.
@@ -63,7 +63,7 @@To debug something outside of the workspace, be sure to import the binary into the Executables view.
+To debug something outside of the workspace, be sure to import the binary into the Executables view.
The IDE launches the executable. If the launch configuration is set to change perspective, it switches to the specified perspective.
diff -r 16e8bfa397ad -r ff0156b93599 core/com.nokia.carbide.cpp.doc.user/html/projects/launch/emulation.htm --- a/core/com.nokia.carbide.cpp.doc.user/html/projects/launch/emulation.htm Sat Oct 02 12:36:21 2010 -0500 +++ b/core/com.nokia.carbide.cpp.doc.user/html/projects/launch/emulation.htm Wed Oct 06 10:31:32 2010 -0500 @@ -9,11 +9,11 @@Select the Symbian OS Emulator launch configuration to run or debug executables using an emulator.
-If the New Launch Configuration Wizard was used to create a emulator launch configuration no changes are usually needed. To modify the launch configuration settings, select the Run > Debug As menu option to open the Debug dialog. Select the Symbian OS Emulation launch configuration and click a tab to set specific options. Click Apply to save any option modifications. Click Debug to launch a debugging session using the new settings.
+Select the Symbian Emulator launch configuration to run or debug executables using an emulator.
+If the New Launch Configuration Wizard was used to create a emulator launch configuration no changes are usually needed. To modify the launch configuration settings, select the Run > Debug As menu option to open the Debug dialog. Select the Symbian Emulation launch configuration and click a tab to set specific options. Click Apply to save any option modifications. Click Debug to launch a debugging session using the new settings.
Figure 1 - Emulator launch configuration in Debug dialog
-The Debug window provides C/C++ emulator debug options when a Symbian OS Emulation launch configuration is created. The settings included in the Symbian OS Emulation launch configuration are a combination of Carbide, CDT, and Eclipse options. The tabs in the window include:
+The Debug window provides C/C++ emulator debug options when a Symbian Emulation launch configuration is created. The settings included in the Symbian Emulation launch configuration are a combination of Carbide, CDT, and Eclipse options. The tabs in the window include:
Use the Debug As dialog to select the New Launch Configuration Wizard to create a launch configuration for a development board or reference hardware using a JTAG connection. Currently there are two choices of debugger:
Figure 1. Debug As dialog
@@ -21,7 +21,7 @@Launch configurations come in several varieties, each designed for a specific purpose. You must choose one at the very start of the New Launch Configuration Wizard, so knowing the differences between them is important. Currently, the types to choose from include:
Use the Debug As dialog to select the New Launch Configuration Wizard that will create a launch configuration for the project. Currently there are two choices of debugger:
Figure 1. Debug As dialog
@@ -21,7 +21,7 @@Use the Debug As dialog to select the New Launch Configuration Wizard that will create a launch configuration for the project. Currently there are two choices of debugger:
Figure 1. Debug As dialog
@@ -37,8 +37,8 @@The following launch configuration types are available:
-The Symbian OS Emulator launch configurations the Debugger page to specify entry point breaks and which logs to output to the Console view.
+The Symbian Emulator launch configurations the Debugger page to specify entry point breaks and which logs to output to the Console view.
Figure 1 - Debugger page showing emulation options
Enable to direct standard output messages to the Emulation Program Output Console in the Console view.
+Enable to direct standard output messages to the Emulation Program Output Console in the Console view.
NOTE In the epoc.ini file the option LogToFile must also be set to 1.
In a run-mode launch configuration like Symbian OS Device (Install SIS), you can specify an entry break point and how messages are handled as well as define the default instruction set.
+In a run-mode launch configuration like Symbian Device (Install SIS), you can specify an entry break point and how messages are handled as well as define the default instruction set.
Figure 2 - Debugger page showing run-mode options
Enable to direct standard output messages to the CODA Program Output Console in the Console view.
+Enable to direct standard output messages to the CODA Program Output Console in the Console view.
NOTE In the epoc.ini file the option LogToFile must also be set to 1.
In stop-mode launch configurations like Symbian OS Device, and Symbian OS Device (Attach to Process), use the Startup Options to attach to a target and debug or run from the specified start address. Then use Target Options to specify the target's processor type, and set which initialization and memory configuration files to use in the debug session.
+In stop-mode launch configurations like Symbian Device, and Symbian Device (Attach to Process), use the Startup Options to attach to a target and debug or run from the specified start address. Then use Target Options to specify the target's processor type, and set which initialization and memory configuration files to use in the debug session.
Figure 3 - Debugger page showing stop-mode options
The Executables page specifies the executables available to debug with your project based on the chosen rule. The Executables page gives you project level control over the executables associated with it. The page shows all the executables in the workspace or those imported into the Executables view from outside the workspace that can be debugged by this project. See the Executables view for information on controlling executables from the workspace.
+The Executables page specifies the executables available to debug with your project based on the chosen rule. The Executables page gives you project level control over the executables associated with it. The page shows all the executables in the workspace or those imported into the Executables view from outside the workspace that can be debugged by this project. See the Executables view for information on controlling executables from the workspace.
Figure 1 - Executables page (Device example)
The File Transfer page displays an auto-populated list of files for Symbian OS Device that the IDE transfers to the target device at the start of each launch. For RnD device images, the target location for files is normally c:\sys\bin or another protected area. For production device images Symbian OS Device (Install SIS) does not support the transfer of files to c:\sys\bin or other protected areas.
+The File Transfer page displays an auto-populated list of files for Symbian Device that the IDE transfers to the target device at the start of each launch. For RnD device images, the target location for files is normally c:\sys\bin or another protected area. For production device images Symbian Device (Install SIS) does not support the transfer of files to c:\sys\bin or other protected areas.
Users can add, edit, or delete files in the list and sort by clicking on a column header. By default, any file added is automatically checked for downloading to the device. Users can uncheck a file to remove it from the download list without removing the file itself. CODA (Carbide On-device Debug Agent) users can use this panel to download any type of file, like bitmaps, HTML, sounds, and more, to the phone and applicable to CODA for transfering any files outside of the installation file.
Figure 1. File Transfer page
@@ -30,8 +30,8 @@diff -r 16e8bfa397ad -r ff0156b93599 core/com.nokia.carbide.cpp.doc.user/html/projects/launch/page_installation.htm --- a/core/com.nokia.carbide.cpp.doc.user/html/projects/launch/page_installation.htm Sat Oct 02 12:36:21 2010 -0500 +++ b/core/com.nokia.carbide.cpp.doc.user/html/projects/launch/page_installation.htm Wed Oct 06 10:31:32 2010 -0500 @@ -9,7 +9,7 @@The target directories where files can be installed depends upon the type of device image you have on the device and which version of CODA you are using.
-
- Symbian OS Device (Install SIS) - public folders only on production device images
-- Symbian OS Device - public and protected folders, like c:\sys\bin, on RnD device images
+- Symbian Device (Install SIS) - public folders only on production device images
+- Symbian Device - public and protected folders, like c:\sys\bin, on RnD device images
The Installation page specifies the .sis file to install on the target device when using Symbian OS Device (Install SIS). This is required when using CODA with 9.x based SDK’s.
+The Installation page specifies the .sis file to install on the target device when using Symbian Device (Install SIS). This is required when using CODA with 9.x based SDK’s.
Figure 1. Installation page
The Symbian OS Emulator launch configuration uses the Main page to define the process to be launched by the emulator.
+The Symbian Emulator launch configuration uses the Main page to define the process to be launched by the emulator.
The behavior that occurs when launching a debug session varies based upon the SDK. Normally, starting a debug session launches the emulator (epoc.exe) and you must then navigate to your application and open it. However, starting a debug session for an .exe file will, in most cases, launch the .exe directly. This starts the emulator and then opens your application automatically. Note that some SDKs do not support this behavior. In those cases you must still open your application in the emulator manually.
Figure 1. Main page (Emulation shown)
@@ -31,7 +31,7 @@The Symbian OS Device (Install SIS) launch configuration uses the Main page to defines the project and the process to launch on the target device.
+The Symbian Device (Install SIS) launch configuration uses the Main page to defines the project and the process to launch on the target device.
Figure 2 - Main page (Device (Install SIS) shown)
The Symbian OS Device launch configurations uses the Main page to defines the project and the executable to launch on the target device.
+The Symbian Device launch configurations uses the Main page to defines the project and the executable to launch on the target device.
Figure 3. Main page
Use the ROM Image page in a Symbian OS Device launch configuration to define startup options and ROM image download information.
+Use the ROM Image page in a Symbian Device launch configuration to define startup options and ROM image download information.
Figure 1 - ROM Image page in launch configuration
Enter or browse to the epoc32 directory for the Symbian OS kit that is being targeted for debugging. This is necessary for the debugger to resolve the full paths for each module in the log file since the log file does not contain the full paths.
Enter or browse to the epoc32 directory for the Symbian kit that is being targeted for debugging. This is necessary for the debugger to resolve the full paths for each module in the log file since the log file does not contain the full paths.
Use the ROM Log page in a Symbian OS Device launch configuration to specify where the ROM log file is stored and the Epoc32 directory.
+Use the ROM Log page in a Symbian Device launch configuration to specify where the ROM log file is stored and the Epoc32 directory.
Figure 1. ROM Log page
Use the x86 Exceptions page in the Symbian OS Emulator launch configuration to set the x86 exceptions the debugger should catch. If you want the debugger to catch all the exceptions, enable all of the options in this page. However, if you prefer to handle only certain exceptions, enable only those options that reflect the exceptions you want to handle.
+Use the x86 Exceptions page in the Symbian Emulator launch configuration to set the x86 exceptions the debugger should catch. If you want the debugger to catch all the exceptions, enable all of the options in this page. However, if you prefer to handle only certain exceptions, enable only those options that reflect the exceptions you want to handle.
Figure 1 - x86 Exceptions page
Select the Symbian OS Device (Install SIS) launch configuration to debug or run applications on a target device using the CODA (Carbide On-Device Debug Agent). CODA is an application that runs on released phones and allows you to debug your executables. The debugger will download a Symbian OS installation file to the phone and install it prior to launching.
-If the New Launch Configuration Wizard was used to create the CODA launch configuration no changes are usually needed. To modify the launch configuration settings, select the Run > Debug As menu option to open the Debug dialog. Select the Symbian OS Device (Install SIS) configuration and click a tab to set specific options. Click Apply to save any option modifications. Click Debug to launch a debugging session using the new settings.
+Select the Symbian Device (Install SIS) launch configuration to debug or run applications on a target device using the CODA (Carbide On-Device Debug Agent). CODA is an application that runs on released phones and allows you to debug your executables. The debugger will download a Symbian installation file to the phone and install it prior to launching.
+If the New Launch Configuration Wizard was used to create the CODA launch configuration no changes are usually needed. To modify the launch configuration settings, select the Run > Debug As menu option to open the Debug dialog. Select the Symbian Device (Install SIS) configuration and click a tab to set specific options. Click Apply to save any option modifications. Click Debug to launch a debugging session using the new settings.
Figure 1. Device launch configuration in the Debug dialog
-The Symbian OS Device (Install SIS) launch configuration panes include:
+The Symbian Device (Install SIS) launch configuration panes include:
Select the Symbian OS Device launch configuration provides C/C++ stop-mode debug options. The settings included in these launch configuration are a combination of Carbide, CDT, and Eclipse options.
-If the New Launch Configuration Wizard was used to create the Symbian OS Device launch configuration no changes are usually needed. To modify the launch configuration settings, select the Run > Debug As menu option to open the Debug dialog. Select the Symbian OS Device or Symbian OS Device (Attach to Process) configuration and click a tab to set specific options. Click Apply to save any option modifications. Click Debug to launch a debugging session using the new settings.
+Select the Symbian Device launch configuration provides C/C++ stop-mode debug options. The settings included in these launch configuration are a combination of Carbide, CDT, and Eclipse options.
+If the New Launch Configuration Wizard was used to create the Symbian Device launch configuration no changes are usually needed. To modify the launch configuration settings, select the Run > Debug As menu option to open the Debug dialog. Select the Symbian Device or Symbian Device (Attach to Process) configuration and click a tab to set specific options. Click Apply to save any option modifications. Click Debug to launch a debugging session using the new settings.
Figure 1. Symbian OS Device launch configuration in the Debug dialog
-The Symbian OS Device launch configuration panes include:
+Figure 1. Symbian Device launch configuration in the Debug dialog
+The Symbian Device launch configuration panes include:
The New Launch Configuration Wizard launches when no launch configuration exists for a build configuration in a project. Wherever possible the New Launch Configuration wizard gathers the information from the project and asks additional questions based on the type of launch configuration chosen. For example, a launch configuration using Symbian OS Device (Install SIS) requires different information than one targeted for Symbian OS Device.
+The New Launch Configuration Wizard launches when no launch configuration exists for a build configuration in a project. Wherever possible the New Launch Configuration wizard gathers the information from the project and asks additional questions based on the type of launch configuration chosen. For example, a launch configuration using Symbian Device (Install SIS) requires different information than one targeted for Symbian Device.
Every project consists of one or more build configurations as listed under the Build project icon () of the toolbar or in the Add/Remove Carbide Build Configuration dialog. Every build configuration needs a launch configuration to enable debugging. Launch configurations can be shared between build configurations. The New Launch Configuration Wizard detects when a build configuration doesn't have an associated launch configuration and guides you through the setup process.
Figure 1. Build configurations for the chosen project appear under the Build icon
diff -r 16e8bfa397ad -r ff0156b93599 core/com.nokia.carbide.cpp.doc.user/html/projects/launch/wnd_change_connection.htm --- a/core/com.nokia.carbide.cpp.doc.user/html/projects/launch/wnd_change_connection.htm Sat Oct 02 12:36:21 2010 -0500 +++ b/core/com.nokia.carbide.cpp.doc.user/html/projects/launch/wnd_change_connection.htm Wed Oct 06 10:31:32 2010 -0500 @@ -34,7 +34,7 @@Shows the current remote connection setting used to communicate with the Symbian OS phone or device. Click Change... to open the Change Connection page of the New Launch Configuration Wizard to modify the connection settings.
Shows the current remote connection setting used to communicate with the Symbian phone or device. Click Change... to open the Change Connection page of the New Launch Configuration Wizard to modify the connection settings.
By default, Carbide creates a debug launch configuration the first time you launch the debugger based on current project settings. If additional information is required, like a port ID, the New Launch Configuration Wizard appears asking for the additional information.
The tabs in the window vary depending upon the currently selected launch configuration.
Figure 1 - Debug or launch configuration window (Symbian OS Emulator view)
+Figure 1 - Debug or launch configuration window (Symbian Emulator view)
Name | Function |
---|---|
+ + Target name |
+ + Enter the name of the target file. |
+ + Target type |
+ + Select the type of target file from the dropdown list. The list of supported target types are provided by SBSv2 build system. The number and type of targets may change depending upon the chosen SDK. |
+ + UID 2 |
+ UID 2 is a unique identifier number that identifies the type of interface that the project implements. The values are defined by Symbian: +
|
+ + UID 3 |
+ + Application UID (or UID3) is used to uniquely identify the binary (EXE or DLL) within the system. The purpose of UID 3 is to prevent one executable from interfering the operation of another executable. |
Common tasks |
+ This group provides links to the User and System include path options located in the Options window. |
+
+ + Project definition |
+ + The Project definition group provides links to the Sources, Libraries, and Options windows. You can also select the Sources, Libraries, and Options tabs to open the related window. |
Any changes made to the MMP file either in Carbide or using an external editor are detected. If the build is for emulation, these changes are detected and used automatically.
+For other build types like GCCE you are presented with the Modified MMP Files Detected dialog (Figure 2) and asked which build action to take for each MMP file that has changed. Set the build option for each listed MMP file and click OK.
+Figure 2 - Modified MMP Files Detected dialog
+The options are identical to the workspace setting Default action to take when MMP files are modified option in the Build preference panel. Click the Configure Workspace Settings... to open the Build preference panel to set the default build options for the workspace. The options can also be modified at the project level in the Properties for <project> > Carbide Project Settings panel.
++ The MMP editor libraries window lists the libraries used by the currently selected build configuration in the selected project. The MMP editor libraries window is shown in Figure 1. Click on a library group to expand the list of libraries and show the related control buttons. You can add, remove or edit the list of libraries for each group. You can also move libraries up or down in the list.
+Figure 1 - MMP Editor Libraries window
+ +Name | Function |
---|---|
+ + Libraries |
+ + Specify import libraries to be included in all builds. |
+ + Static libraries |
+ + Specify additional static libraries to be used in all builds. |
Debug libraries | +Specify additional libraries to be used for debug builds only. | +
Win32 libraries | +Specify additional libraries for Win32 builds only. | +
ASSP libraries | +Specify libraries for ASSP builds. If you are not linking to the Symbian kernel you can ignore this section. | +
+ The MMP file tab in the MMP editor window shows the source text of the mmp file. Changes made directly in the mmp file are reflected in related tabs of the MMP editor and changes made in editor tabs are written to the mmp file. Errors are identified in red and markers are placed in mmp files at the locations errors exist.
+Figure 1 - MMP Editor MMP File
+ ++ The MMP editor options window allows you to edit compiler, linker, and runtime settings. The MMP editor options window is shown in Figure 1.
+Figure 1 - MMP Editor Options window
+ +Name | Function |
---|---|
+ + Runtime |
+ + This group allows you to define various runtime options. +Capabilities - Click the Choose... button to select Capabilities. A capability is an access token that corresponds to permission to access sensitive system resources. Platform security permits access to sensitive APIs according to capabilities. Capabilities are used to specify what functionality an application is trusted to use; they are allocated to the application at build time and are policed at run time. Once the capabilities are assigned to the application, they cannot be changed. Thus an application has a set of unalterable capabilities that describe what access the application has to the APIs. +There are three suggested ways to establish which capabilities an application requires. +
Minimum heap size - Set the heap size that you need. +Maximum heap size - Set the heap size that you need. +Stack size - Set the stack size that you need. +Process priority - Select the process priority from the dropdown list. +Secure ID - Enter the Secure ID. The SID is used to determine which private directory a process can access. It is also used to identify the caller applications. An application's SID is defined within its .mmp file, and is used to uniquely identify the application. SID values are requested from the Symbian Signed Web site (www.symbiansigned.com). The Software Installer (SWI) is responsible for ensuring that SIDs are locally unique, i.e., that no two applications have the same SID value on a particular target device. +Vendor ID - Enter the Vendor ID. This ID uniquely identifies the source of the application. If an application needs a VID, it must be certified. Noncertified applications must use a VID of 0 (KNullUid), which is the value applied by default. +Enable debugging (Symbian 9.4+) - Activate to enable on-device debugging for Symbian 9.4 and later. When activated, the DEBUGGABLE_UDEBONLY flag is added to the project .MMP file. +Paging Mode (Symbian 9.3+) - specify the paging mode to: not specified, paged, or unpaged. |
+
+ + Compiler Settings |
+ + User includes - Use the Add, Edit, and Remove buttons to add, edit, or remove the paths to the user header files used to compile source files. Use the Up and Down buttons to arrange the list of paths. +System includes - Use the Add, Edit, and Remove buttons to add, edit, or remove the paths to the system header files used to compile source files. Use the Up and Down buttons to arrange the list of paths. +Macros - Use the Add, Edit, and Remove buttons to add, edit, or remove a macro identifier. Use the Up and Down buttons to arrange the list of macro identifiers. +Compiler options - Use the Add, Edit, and Remove buttons to add, edit, or remove compiler options. In the Edit Compiler Options dialog, select the tool chain (for example: ARMCC, CW, GCC, GCCE, or MSVC) and enter your custom options. +Linker options - Use the Add, Edit, and Remove buttons to add, edit, or remove linker options. In the Edit Linker Options dialog, select the tool chain (for example: ARMCC, CW, GCC, GCCE, or MSVC) and enter your custom options. +Per-variant include dependencies - Check this option to include dependencies for a specific variant when building a target. For example build a release variant with optimized code, a debug variant with debugging info and a profiling variant with timing hooks. +Disable optimizations in debug builds - Check this option to disable optimizations when building a debug version of your application. Since optimization changes the code created by the compiler, it is best to optimize your code after you have fully tested and debugged it. If a program works in a debug build, but fails in a release build, it is likely that one of the compiler optimizations is exposing a defect in your source code. To isolate the problem, you should disable selected optimizations for each source code file, until you locate the file and the optimization that is causing the problem. |
+
Linker | +Linker definition file - Select a linker definition file or click Browse... to locate a definition file. +Export unfrozen - Check this option to tell the build process that exports are not yet frozen. +Don't export library - Check this option to not export a copy of the library. +No strict .def file - Check this option to specify no strict linker definition file. +Compress target executable - Check this option to compress the target executable. +Link as internal name - Specify an internal name. +Win32 base address - Specify the Win32 base address. |
+
Kernel | +ASSP ABI - Check this option to build the ASSP application binary interface. +ASSP exports - Check this option to enable ASSP exports. |
+
+ The MMP editor resource block dialog allows you to add or remove resource files to your project. The Edit Resource Block dialog is shown in Figure 1. You can add, remove or edit resource files to be included with your project.
+Figure 1 - MMP Editor Resource Block Dialog
+ +Name | Function |
---|---|
+ + Project RSS files |
+ + Select or browse to the resource file to be included in all builds. |
+ + RSS file path |
+ + Enter the path to the resource file. |
Target file name | +Enter the target file name. | +
Target file path | +Select the target file path, such as the executable directory or /resource directory on the target device. | +
UID 2 | +Enter the unique identifier. UID2 may need to be a specific value for some kinds of DLLs, especially those used by plug-in frameworks. | +
UID 3 | +Enter the unique identifier. In the current implementation of platform security, UID3 is used as the Secure ID if SECUREID is not specified in the .mmp file. If it is specified, UID3 will be used to identify the application as its original purpose. +However, the SID is used to determine which private directory a process can access as well as to identify the caller applications, whereas the UID is used to uniquely identify an application. It is theoretically possible that these two identifiers could have different values, but to avoid confusion Symbian recommends that a SECUREID not be specified in the application's MMP file; UID3 should always be specified instead. |
+
Generate header file | +Check this option to generate a header file for the resource files. | +
+ The MMP editor sources window lists the C++ and resource files that you can select to be compiled. The MMP editor sources window is shown in Figure 1.
+Figure 1 - MMP Editor Sources window
+ +Name | +Function | +
---|---|
+ + C/C++ sources |
+ + Select the C/C++ files to be compiled with your project. |
Missing C/C++ sources | +Shows a list of missing source files referenced by project MMP files. | +
+ + Resources |
+ + Add, remove, or edit resources, bitmaps, and languages to compile with your project. |
+ The MMP Selection dialog displays a list of mmp project files that your source files should be added to for debugging specific components.
+Figure 1 - MMP Selection Dialog
+ + + + + + \ No newline at end of file diff -r 16e8bfa397ad -r ff0156b93599 core/com.nokia.carbide.cpp.doc.user/html/projects/mmp/NewMMP_wizard.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/core/com.nokia.carbide.cpp.doc.user/html/projects/mmp/NewMMP_wizard.html Wed Oct 06 10:31:32 2010 -0500 @@ -0,0 +1,51 @@ + + +
+ Use the Symbian MMP File wizard (figure 1) to create a new MMP project file for the currently selected project. Symbian projects are defined by an .mmp
file which specifies the essential project elements of a Symbian project. All details of the project lifecycle are handled by the IDE. There is no editable makefile the user can edit to modify the build behavior of the project.
+++
Figure 1 - Select a wizard page in the New window
+OR
+
+++
Figure 2 - MMP File page in the New MMP File window
+
The new MMP file is created in the destination folder and shown in the MMP editor.
+You can export remote connection settings for sharing and import settings created by others using the Import/Export commands.
+To export one or more remote connections:
+Figure 1. Select page showing Remote Connections Data wizard
+Figure 2. Enable remote connections to export to chosen file
+You can export remote connection settings for sharing and import settings created by others using the Import/Export commands.
+To import one or more remote connections:
+Figure 1. Select page showing Remote Connections Data wizard
+Figure 2. Enable remote connections to import
+Use the Remote Connections view to monitor, create, edit, or remove common connection settings for remote agents. Remote agents provide support for debugging, profiling, trace, and more. The connection types currently supported include:
+The columns in the Remote Connections view include:
+Figure 1 - Remote Connections view
+When the view is closed or another perspective opened, a small display appears in the trim area in the lower-right corner of the workspace showing the current active remote connection. Click the connection name to open the drop-down menu where you can open the Remote Connections view or switch between connections.
+Figure 2. Available remote connection trim indicator
+The following commands appear on the toolbar within the Remote Connections view:
+Item | +Icon | +Explanation | +
---|---|---|
Toggle periodic service testing | +![]() |
+ Toggles service testing on or off. | +
Refresh Connections | +![]() |
+ Click to update the connection list status. |
+
New Connection | +![]() |
+ Click to open the New Connection wizard to add a connection. | +
Edit Connection | +![]() |
+ Click to edit the selected remote connection. |
+
View menu | +![]() |
+ Select the connection types to monitor for remote connections. | +
The following status indicators appear in the Remote Connections view:
+Item | +Icon | +Explanation | +
---|---|---|
Connection | +![]() |
+ Indicates an inactive remote connection setting. |
+
Not Active | +![]() |
+ Indicates an inactive connection type. | +
Ready / Available | +![]() |
+ Indicates an active remote connection is ready or that a particular connection type is available. |
+
Not Accessible | +![]() |
+ Cannot access the connection type within the connection setup. This could be due to one of the following conditions: +
If all the above is setup the remote device should automatically appear when it is connected to the PC. The Description field contains useful debug information that can help solve the issue as well. |
+
Based on the current selection, one or more of the following commands appear on the context menu when you right-click within the Remote Connections view. For example, if no connections are defined, only the New Connection command is available on the context menu.
+Figure 3 - Remote Connections context menu
+Item | +Icon | +Explanation | +
---|---|---|
New Connection... | +![]() |
+ Select to open the New Connection wizard to add a connection. | +
Rename | ++ | Select to rename the currently selected connection. | +
Edit Settings... | +![]() |
+ Select to edit the selected remote connection settings. |
+
Delete | +![]() |
+ Select to delete the selected connection from the connection list. |
+
Help for... | +![]() |
+ Select to open the Help view for connection information. | +
Make Current | ++ | Make the selected connection the current connection. | +
Use the Install Remote Agents pane to select the latest remote agent version to download and install to the device.
+Figure 2 - New Connection wizard Install remote agents page
+Table 1. Install Remote Agents pane
+Item | +Explanation | +
---|---|
Install remote agents | +A list of the most current versions of remote agents sorted by SDK and version. Select the version most compatable with the device. For example, a device running S60 5.0 needs a version of the CODA software compiled for that SDK. +Additional information about the selected entry is displayed to the right to help you choose the correct version of CODA for the target device. |
+
Save | +Click Save to store a local copy of the currently selected CODA to disk. You can then manually install the file to your devices using the method of your choice. | +
Install | +Click Install to download and install the CODA selected in the Install remote agents list. A progress bar is shown if the install operation requires more than a few seconds to complete. +NOTE Drivers installed by PC Suite or Ovi Suite are required in order for Install to download a remote agent onto the target device. +NOTE The SIS and SISX file types must be associated with an installer application like Nokia PC Suite or Ovi Suite in order to install them onto the device. Use the Save command above to perform a manual install to the device if you don't have an installer application. |
+
Use the Install Remote Agents pane to select the latest remote agent version to download and install to the device.
+Figure 2 - New Connection wizard Serial Connection Settings page
+Table 3. Serial Connection Setting page - Install Remote Agents tab
+Item | +Explanation | +
---|---|
Install Remote Agents | +A list of the most current versions of remote agents sorted by SDK and version. Select the version most compatable with the device. For example, a device running S60 3.1.0 needs a version of the CODA software compiled for that SDK. +Additional information about the selected entry is displayed to the right to help you choose the correct version of CODA for the target device. |
+
Save | +Click Save to store a local copy of the currently selected CODA to disk. You can then manually install the file to your devices using the method of your choice. | +
Install | +Click Install to download and install the CODA selected in the Install latest CODA list. A progress bar is shown if the install operation requires more than a few seconds to complete. +NOTE The SIS and SISX file types must be associated with an installer application like Nokia PC Suite in order to install them onto the device. Use the Save command above to perform a manual install to the device if you don't have an installer application. |
+
Use the Remote Connections view to monitor, create, edit, or remove common remote connection settings.
+ +Use the Edit connection name and type page to assign a name and connection type to the new connection setup.
+Figure 1 - New Connection wizard Edit connection name and type page
+Table 1. Edit connection name and type page - options
+Item | +Explanation | +
---|---|
Connection Type | +Select the type of connection this setup will use. | +
Connection Name | +Enter a name for the connection. |
+
Connection Settings | +Select the connection port to use for this connection setting. |
+
Use the Set Connection Settings pane to compare the version of remote agent installed on the device with the latest version available for Carbide. In this pane you can:
+Figure 2 - New Connection wizard Serial Connection Settings page
+Table 2. Serial Connection Setting page - Set Connection Settings tab
+Item | +Explanation | +
---|---|
Device OS (used to determine installer version) | +Select the OS used on the device. | +
Select a service to test | +Click to select a listed service for testing. | +
Initiate Service Testing | +Click Initiate Service Testing to query the remote agent software on the device for its version number. It then compares the version number found with the latest version available for Carbide. A progress bar will appear should the Check CODA version operation requires more than a few seconds. +NOTE The PC must have an internet connection to perform a remote agent version check. +Once the comparison is complete the Status text is updated with the result and further instructions as required. +If a connection fails, the errors normally fall into these two categories: +
|
+
Use the Install Remote Agents pane to select the latest remote agent version to download and install to the device.
+Figure 2 - New Connection wizard Serial Connection Settings page
+Table 3. Serial Connection Setting page - Install Remote Agents tab
+Item | +Explanation | +
---|---|
Install Remote Agents | +A list of the most current versions of remote agents sorted by SDK and version. Select the version most compatable with the device. For example, a device running S60 5.x needs a version of the CODA software compiled for that SDK. +Additional information about the selected entry is displayed to the right to help you choose the correct version of CODA for the target device. |
+
Save | +Click Save to store a local copy of the currently selected CODA to disk. You can then manually install the file to your devices using the method of your choice. | +
Install | +Click Install to download and install the CODA selected in the Install latest CODA list. A progress bar is shown if the install operation requires more than a few seconds to complete. +NOTE The SIS and SISX file types must be associated with an installer application like Nokia PC Suite in order to install them onto the device. Use the Save command above to perform a manual install to the device if you don't have an installer application. |
+
+
Use the Remote Connections view to monitor, create, edit, or remove common remote connection settings.
+ +Use the Edit connection name and type page to assign a name and connection type to the new connection setup.
+Figure 1 - New Connection wizard Edit connection name and type page
+Table 1. Edit connection name and type page - options
+Item | +Explanation | +
---|---|
Conection Type | +Select the type of connection this setup will use. | +
Connetion name | +Enter a name for the connection. |
+
Supported Services | +Shows a list of services supported by the connection type chosen. |
+
Use the Set Connection Settings pane to compare the version of remote agent installed on the device with the latest version available for Carbide. In this pane you can:
+Figure 2 - New Connection wizard Set Connection Settings tab
+Table 2. Bluetooth Setting page - Set Connection Settings tab
+Item | +Explanation | +
---|---|
Serial Port | +A dropdown list of serial ports with known identifiers for selecting the communication port used by the PC to communicate with the device. A named COM port (COM4 - BthModem0) indicates an active port. Unnamed port numbers have usually not been opened and assigned by the PC. | +
Baud Rate | +a dropdown list of baud rates common to serial connections. | +
Device OS | +A dropdown list of device OSes that are supported by the remote agent software. Select the OS used by the device before running a check. |
+
Select a service to test | +Click to select a listed service for testing. | +
Test Service Status | +Click Initiate service testing to query the remote agent software on the device for its version number. It then compares the version number found with the latest version available for Carbide. A progress bar will appear should the Check CODA version operation requires more than a few seconds. +NOTE The PC must have an internet connection to perform a remote agent version check. +Once the comparison is complete the Status text is updated with the result and further instructions as required. +If a connection fails, the errors normally fall into these two categories: +
|
+
Use the Install Remote Agents pane to select the latest remote agent version to download and install to the device.
+Figure 2 - New Connection wizard Install remote agents tab
+Table 3. Bluetooth Setting page - Install Remote Agents tab
+Item | +Explanation | +
---|---|
Install remote agents | +A list of the most current versions of remote agents sorted by SDK and version. Select the version most compatable with the device. For example, a device running S60 3.1.0 needs a version of the CODA software compiled for that SDK. +Additional information about the selected entry is displayed to the right to help you choose the correct version of CODA for the target device. |
+
Save | +Click Save to store a local copy of the currently selected CODA to disk. You can then manually install the file to your devices using the method of your choice. | +
Install | +Click Install to download and install the CODA selected in the Install latest CODA list. A progress bar is shown if the install operation requires more than a few seconds to complete. +NOTE The SIS and SISX file types must be associated with an installer application like Nokia PC Suite in order to install them onto the device. Use the Save command above to perform a manual install to the device if you don't have an installer application. |
+
+
Use the Edit Connection page to assign a connection type, name, and connection settings to the new connection setup.
+Figure 1 - New Connection wizard Setup Connection tab
+Table 1. Setup Connection page - options
+Item | +Explanation | +
---|---|
Connection Type | +Select the type of connection and its supported services from the drop down list of options. The types of connections include: +
And the supported services may include: +
|
+
Connection Name | +Enter a name for the connection. |
+
Connection Settings | +Shows a list of services supported by the connection type chosen. +
|
+
Use the Set Connection Settings pane to compare the version of remote service installed on the device with the latest version available for Carbide. A remote service is any software on the device that can communicate with Carbide. This includes CODA (Carbide On-device Debug Agent), Trace, Performance Investigator, and other services. In this pane you can:
+Options presented may differ based on the type of connection setting chosen.
+Figure 1 - Test Connection pane in the New Connection dialog
+Item | +Explanation | +
---|---|
Device OS (used to determine installer version) | +A dropdown list of device OSes that are supported by CODA. Select the OS used by the device before running a check. |
+
Select a service to test | +Select the remote service type to query on the remote device. | +
Initiate service testing | +Click Initiate service testing to query the remote software on the device for its version number. It then compares the version number found with the latest version available for Carbide. A progress bar will appear when the operation requires more than a few seconds. +NOTE The PC must have an internet connection to perform a remote service version check. +Once the comparison is complete the Status text is updated with the result and further instructions as required. +If a connection fails, the errors normally fall into these two categories: +
|
+
Use the New Connection wizard to verify and update Carbide software services on a device. Click the New Connection... icon () in the Remote Connections view toolbar to open. Current services available include CODA, Tracing, and others. The following tabs are present:
Figure 1 - New Connection dialog
+NOTE There must be at least one recognized SDK installed before you can create a project. See the Symbian SDKs preference panel to determine if the installed SDKs are recognized by Carbide.c++ IDE. If the SDK you have installed is not recognized, you may still be able to add it to the Discovered Symbian OS SDK list.
+NOTE There must be at least one recognized SDK installed before you can create a project. See the Symbian SDKs preference panel to determine if the installed SDKs are recognized by Carbide.c++ IDE. If the SDK you have installed is not recognized, you may still be able to add it to the Discovered Symbian SDK list.
NOTE There must be at least one recognized SDK installed before you can create a project. See the Symbian SDKspreference panel to determine if the installed SDKs are recognized by Carbide.c++ IDE. If the SDK you have installed is not recognized, you may still be able to add it to the Discovered Symbian OS SDK list.
+NOTE There must be at least one recognized SDK installed before you can create a project. See the Symbian SDKspreference panel to determine if the installed SDKs are recognized by Carbide.c++ IDE. If the SDK you have installed is not recognized, you may still be able to add it to the Discovered Symbian SDK list.
In this tutorial you'll create a simple DLL project using the New Symbian OS C++ Project wizard, attach it to the HelloWorld project created here, then debug it.
+In this tutorial you'll create a simple DLL project using the New Symbian C++ Project wizard, attach it to the HelloWorld project created here, then debug it.
The New Symbian OS C++ Project window appears to guide you through project creation process.
+The New Symbian C++ Project window appears to guide you through project creation process.
Select the template for the type of project you want to create. For this example we chose the Generic Symbian OS > Baisc dynamically linked library (DLL) template. Note that as you select a template a brief description appears below the list explaining it attributes.
+Select the template for the type of project you want to create. For this example we chose the Generic Symbian > Baisc dynamically linked library (DLL) template. Note that as you select a template a brief description appears below the list explaining it attributes.
Here you can select from any SDK that is both installed and recognized by Carbide. If the SDK supports several build configurations (GCCE, RVCT, etc.) then you can pick and choose among them for your project.
Carbide uses the selected project template and your settings to create the DLL project in the Project Explorer view.
+Carbide uses the selected project template and your settings to create the DLL project in the Project Explorer view.
-Once compiling is complete use the Project Explorer, Problems, Console, and Executables views to locate and resolve any problems generated during the build. See Step 2 here for more details.
+Once compiling is complete use the Project Explorer, Problems, Console, and Executables views to locate and resolve any problems generated during the build. See Step 2 here for more details.
NOTE There must be at least one recognized SDK installed before you can create a project. See the Symbian SDKspreference panel to determine if the installed SDKs are recognized by Carbide.c++ IDE. If the SDK you have installed is not recognized, you may still be able to add it to the Discovered Symbian OS SDK list.
+NOTE There must be at least one recognized SDK installed before you can create a project. See the Symbian SDKspreference panel to determine if the installed SDKs are recognized by Carbide.c++ IDE. If the SDK you have installed is not recognized, you may still be able to add it to the Discovered Symbian SDK list.
The New Symbian OS C++ Project window appears to guide you through project creation process.
+The New Symbian C++ Project window appears to guide you through project creation process.
Select the template for the type of project you want to create. For this example we chose the S60 > GUI Application template. Note that as you select a template a brief description appears below the list explaining it attributes.
Here you can select from any SDK that is both installed and recognized by Carbide. If the SDK supports several build configurations (GCCE, RVCT, etc.) then you can pick and choose among them for your project.
Carbide uses the selected project template and your settings to create a new project in the Project Explorer view.
+Carbide uses the selected project template and your settings to create a new project in the Project Explorer view.
Once you have a project in hand, the next thing to do is compile or build it into object code.
Building projects consists of a sbs or abld-based build system that wraps build functionality around existing SDK build tools that invoke makmake commands (e.g. makmake bldfiles and sbs build).
-The plug-ins provide extra functionality to set up suitable build configurations for Symbian OS C++ projects. The initial selection of a build configuration is done when you create a project, as described in Creating New Projects from Templates. You can later change the Active Build Configuration. The Build Configurations also provides a command (Project > Build All Configurations) to build all the selected build configurations in a batch.
-Building Symbian OS C++ projects can involve the use of Symbian OS specific tools, such as the Symbian OS resource compiler. For detailed information on such tools, see the documentation for the SDK that you are using.
+The plug-ins provide extra functionality to set up suitable build configurations for Symbian C++ projects. The initial selection of a build configuration is done when you create a project, as described in Creating New Projects from Templates. You can later change the Active Build Configuration. The Build Configurations also provides a command (Project > Build All Configurations) to build all the selected build configurations in a batch.
+Building Symbian C++ projects can involve the use of Symbian specific tools, such as the Symbian resource compiler. For detailed information on such tools, see the documentation for the SDK that you are using.
You build projects to process the source files that comprise a program and generate object code. The compiler flags syntax errors in the source files. Use the Properties for <project_name> window to control how the project is built. The following methods build a project:
-@@ -73,11 +73,11 @@Choosing any of the above actions causes Carbide to build the selected project. A Build Project dialog (below) and a progress bar appear during a lengthy build operation. All build output is shown in a Console view while build errors and warnings appear in the Problems view.
+Choosing any of the above actions causes Carbide to build the selected project. A Build Project dialog (below) and a progress bar appear during a lengthy build operation. All build output is shown in a Console view while build errors and warnings appear in the Problems view.
Whether a full build or incremental build is requested, Carbide forwards the request to the SDK make system. The SDK make system determines if anything needs to be built. Carbide always checks that makefiles are up-to-date and dependencies present.
The project is also built if you make a change to it and then click Debug. It may be useful to automatically save modified resources before a manual build process by enabling the Save automatically before build option in the Window > Preferences > General >
Workspace preference panel.
NOTE If you want to turn off building before launching, uncheck the Build (if required) before launching option in the Window > Preferences > Run/Debug >
-Launching preference panel.
When performing a build, output is displayed in the Console view. If you do not want to clear the console before each build you need to uncheck the option Always clear console before building in the Console panel. This option is enabled by default. You can access this panel by selecting Window > Preferences > C/C++ > Build >
+Console preference panel (below).
When performing a build, output is displayed in the Console view. If you do not want to clear the console before each build you need to uncheck the option Always clear console before building in the Console panel. This option is enabled by default. You can access this panel by selecting Window > Preferences > C/C++ > Build >
Console preference panel (below).
Not clearing the console is useful when you are performing multiple builds, such as a regular project build, building a project package (.pkg) file, and building a ROM image. For example, if you do not clear the console before each build, then a subsequent build will not overwrite information from a previous build.
Use the Console view to see where a specific problem occured during the build.
+Use the Console view to see where a specific problem occured during the build.
Use the Executables view to see what source files were used during the build. Sources shown in gray are those Carbide cannot find. Missing sources in an SDK not built on your machine are common, but missing sources that you created can be resolved.
+Use the Executables view to see what source files were used during the build. Sources shown in gray are those Carbide cannot find. Missing sources in an SDK not built on your machine are common, but missing sources that you created can be resolved.
In this example we demonstrate how to debug applications on a remote device using the Symbian OS Device (Install SIS) remote debug agent. This enables you to test programs on the actual device it will operate on while observing its behavior using the Carbide debugger. The steps to do this include:
+In this example we demonstrate how to debug applications on a remote device using the Symbian Device (Install SIS) remote debug agent. This enables you to test programs on the actual device it will operate on while observing its behavior using the Carbide debugger. The steps to do this include:
In this example we demonstrate how to debug applications on a remote device using the Symbian OS Device (Install SIS) remote debug agent. This enables you to test programs on the actual device it will operate on while observing its behavior using the Carbide debugger. The steps to do this include:
+In this example we demonstrate how to debug applications on a remote device using the Symbian Device (Install SIS) remote debug agent. This enables you to test programs on the actual device it will operate on while observing its behavior using the Carbide debugger. The steps to do this include:
+ The Carbide C/C++ perspective is a set of tools and layout of views provided for Symbian development. This perspective is designed to work with Symbian C++ projects. The commonly used views include:
Figure 1 - Carbide C/C++ perspective
+NOTE Click the icon to show additional options that may not be visible in the perspective view.
For more information on perspectives see Workbench User Guide > Concepts > Perspectives, and for views see C/C++ Development User Guide > Reference + > C/C++ Views and Editors.
++ For more details on the Symbian Build Configurations, see + Active Configurations.
+The Carbide.c++ Portal view provides a single point of information on Carbide news, new releases, additional extensions, and support. The Carbide.c++ Portal view is shown by clicking Help > Carbide.c++ Portal.
+Figure 1. Customize page in the Carbide.c++ Portal view
+If the Show Installed option is checkmarked, the list only shows the extensions currently installed. To show more information on a specific extension click the (Show Overview) icon (Figure 2).
Figure 2. Extension information popup
+The Install section provides options for installing additional Carbide extensions.
+Item | +Explanation | +
---|---|
Install... | +Installs only the checked items in the extension list. | +
Refresh | +Refreshes the plug-in list. |
+
Select all | +Marks all extensions for installation. | +
Deselect all | +Unchecks all extensions to prevent installation. | +
Advanced install... | +Launches the Install New Software wizard. | +
The Migrate section provides options for saving or restoring the custom settings.
+Item | +Explanation | +
---|---|
Export... | +Click to export the current feature configuration. | +
Import... | +Click to import a saved feature configuration settings file. |
+
The Settings section provides access to several common ways to customize the Carbide program.
+Item | +Explanation | +
---|---|
Capabilities | +Click to open the Capabilities preference panel where you can control which product components. | +
Code Style | +Click to open the Code Style preference panel to customize the C/C++ editor appearance and behavior. | +
Key Bindings | +Click to open the Keys preference panel to customize program key bindings. | +
Proxies | +Click to open the Network Connections preference panel to change proxy settings. | +
The Console view displays the output of a process and allows you to provide keyboard input to a process. There are numerous consoles available, see the Open Console dropdown list for those available to you. Most are enabled from various project panels in Carbide.
+Figure 1 - Console view showing build console information
+To view RDebug::Printf output in the Console view when targeting devices, ensure that the following Debugger options are matched with settings in the epoc.ini file.
+Item | +Icon | +Explanation | +
---|---|---|
Scroll Lock | +![]() |
+ Toggles the scrolling of the console view contents. | +
Clear Console | +![]() |
+ Clears all content in the Console view. | +
Pin Console | +![]() |
+ Toggles the behavior of the console. When enabled the current console content is fixed all the time instead of scrolling out of sight. When disabled, the console changes according to the action. + |
+
Display Selected Console | +![]() |
+ Changes the contents of the current console view to show the selected console output. | +
Open Console | +![]() |
+ Opens a new console to display the log for: +
Remember that program output is console output from the running binary and communications log is the messages sent between CODA and the on-device debug agent. +NOTE You can pin any message log view so that it does not lose focus. |
+
+ + + + diff -r 16e8bfa397ad -r ff0156b93599 core/com.nokia.carbide.cpp.doc.user/html/projects/views/view_executables.htm --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/core/com.nokia.carbide.cpp.doc.user/html/projects/views/view_executables.htm Wed Oct 06 10:31:32 2010 -0500 @@ -0,0 +1,105 @@ + + + + + + +
The Executables view provides a dynamic list of executables and their related source files. The Executables view makes it easy to:
+In addition, an Executables project is created in the Project Explorer view. The binaries shown in the Executables project can be deleted which also removes them from the Executables view. For binaries outside the workspace you must import them into the Executables view so their symbolics can be used during the debug session. You can also drag and drop executables into the view.
+NOTE To debug ROM DLLs with Symbian Device or in stop mode, always specify the ROM Log file in the project's launch configuration.
+Figure 1 - Executables view
+The Executables view consists of the Executable Name and Source File Name panes describled in the table below. Use the Columns button in the toolbar to show or hide specific columns in each pane. Columns can be sorted and rearranged in the order desired.
+Pane | +Explanation | +
---|---|
Executable Name | +Displays a list of executables in the workspace as well as other files added by the user. Select an executable to update the Source File Name pane with related files. The executable information shown can include: +
Click the Columns icon ( |
+
Source File Name | +Displays a list of source files for the selected executable as extracted from the symbol table. The source file information shown can include: +
Expand a file′s tree control to view the functions and header files used by the file. Double-click to open the source file for editing or to set breakpoints. +Click the Columns icon ( |
+
The table below lists the unique icons displayed in the Executables view toolbar.
+Command | +Name | +Description | +
---|---|---|
![]() |
+ Refresh the list of executables |
+ Click to refresh the executables list. | +
![]() |
+ Import an executable file | +Click to select and import an executable not in the workspace into the executables list. | +
![]() |
+ Remove the selected executables | +Click to remove one or more selected executables from the executables list. You will see a alert if the executable cannot be removed. | +
![]() |
+ Columns | +Opens the Configure Columns dialog for configuring which columns appear in the Executable and Source File panes. | +
The MIF Editor allows you to create or edit the .mif files list of scalable icons (.svg) + included in a S60 v3.0 and later GUI projects as well as standard .bmp files. A .mif file is a MSX Interchange Format (MIF) file that should be built by the project.
+NOTE This editor is only supported by the S60 3.0 and later SDKs.
+NOTE For resources that are included after creating a project, you should ensure that the output location is set correctly by viewing the file properties. The output location is set to "{EPOCROOT}\epoc32\include" by default, so if an alternate location is required you can set this in the file properties.
+Figure 1 - MIF File in the Symbian Project Navigator view
+The MIF Editor appears when a MIF file is + opened for editing. To open the editor double-click on a .mif file in the Symbian Project Navigator view (figure 1), or select a scalable icon makefile (for example, Icons_scalable_dc.mk), right-click and select the Add MBM/MIF Entry command.
+
Figure 2 - MBM/MIF Editor
+Item | +Explanation | +
---|---|
Target File | +Specifies the EPOCROOT relative path for the compiled images. Click the Default button to set the target file based on the SDK and project name. |
+
Header File | +Shows the generated header file. Select the Header option in the Header Generation group to create a default .mbg file. The path cannot be edited in this field. | +
Header Generation | +Options include: +
|
+
Up | +Select an image in the list and click Up to move the selection one position up in the list. | +
Down | +Select an image in the list and click Down to move the selection one position down in the list. |
+
Pair Image and Mask | +Select two adjacent unpaired BMP image entries in the list and click this button to combine the images together into image/mask pairs. | +
Split Image and Mask | +Select a paired BMP image in the list and click this button to split the image into image and mask entries. | +
Swap Image and Mask | +Select a paired BMP image in the list and click this button to swap the image and mask files and format information in paired image entries. | +
Add From Project | +Click this button to open the Add Images from Project dialog to reference available images in the project. | +
Add From Filesystem | +Click this button to open the Add Images From Filesystem dialog to locate and reference existing images in the filesystem or copy images to the project. | +
Remove | +Select an image and click Remove to remove image entry from the list. This does not delete file from directory. | +
Color depth | +Select the bit depth used to encode the image at build time. | +
Mask depth | +Select the bit depth used to encode the mask at build time. Options include: +
|
+
Color format | +Select Color to encode the image(s) as color or select Grayscale to encode the image(s) as grayscale. | +
Set from image | +Click this button to auto-detect the image depth, mask depth, and color/grayscale setting from the image contents. | +
Preview | +A preview of the image as it will appear at runtime. | +
+ + + + + \ No newline at end of file diff -r 16e8bfa397ad -r ff0156b93599 core/com.nokia.carbide.cpp.doc.user/html/projects/views/view_proj_explorer.htm --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/core/com.nokia.carbide.cpp.doc.user/html/projects/views/view_proj_explorer.htm Wed Oct 06 10:31:32 2010 -0500 @@ -0,0 +1,39 @@ + + + + + + +
The Project Explorer view (Figure 1) displays relevant C/C++ projects located in the current workspace using a tree structure. Use this view to manage all the projects located in the current workspace. The view is customizable and takes advantage of working sets.
+The content of a project is dependent upon how it was created in the workspace.
+Figure 1 - Project Explorer view showing projects in the current workspace
+The directories that appear in the project include:
+++NOTE Only the directories specified by the mmp file are created during import.
+
The files that appear in the project directories can be either:
+See C/C++ Development User Guide > Reference > C/C++ Views and Editors > Project Explorer view for more info.
+The Symbian Project Navigator view shows all files that belong to the
+current build configuration. This view lists the Symbian projects in your current workspace and their corresponding *.inf file (typically bld.inf). The *.inf file contains the related MMP project files, which are also listed in a tree structure. You can collapse or expand the list for each MMP to see which sources belong to each MMP.
To open this view select Window > Show View > Symbian Project Navigator, or select Window > Show View > Other ... and expand the Carbide.c++ folder then choose Symbian Project Navigator.
+Figure 1 shows the Symbian Project Navigator view.
+Figure 1 - Symbian Project Navigator view
+Item | +Icon | +Explanation | +
---|---|---|
Toggle SOURCEPATH | +![]() |
+ Toggles the display between showing the SOURCEPATH folders contained in the MMP file and showing the Bld.inf structure. | +
Toggle MMPs | +![]() |
+ Toggle the display to show all MMP files or the MMP files associated with the current build configuration. | +
Toggle MMP Order | +![]() |
+ Toggle to show the MMPs list in alphabetical or build order. The default setting is build order. | +
NOTE There must be at least one recognized SDK installed before you can create a project. See the Symbian SDKs panel to determine if the installed SDKs are recognized by Carbide.c++ IDE. If the SDK you have is not recognized, you may still be able to it to the Discovered Symbian OS SDK list.
+NOTE There must be at least one recognized SDK installed before you can create a project. See the Symbian SDKs panel to determine if the installed SDKs are recognized by Carbide.c++ IDE. If the SDK you have is not recognized, you may still be able to it to the Discovered Symbian SDK list.
Select the File > New > New Qt Project menu item to open the New Qt Symbian OS C++ Project dialog.
+Select the File > New > New Qt Project menu item to open the New Qt Symbian C++ Project dialog.
Figure 1. Qt project wizard - New Qt Symbian OS C++ Project page
+Figure 1. Qt project wizard - New Qt Symbian C++ Project page
NOTE There must be at least one recognized SDK installed before you can create a project. See the Symbian SDKs panel to determine if the installed SDKs are recognized by Carbide.c++ IDE. If the SDK you have is not recognized, you may still be able to add it to the Discovered Symbian OS SDK list.
+NOTE There must be at least one recognized SDK installed before you can create a project. See the Symbian SDKs panel to determine if the installed SDKs are recognized by Carbide.c++ IDE. If the SDK you have is not recognized, you may still be able to add it to the Discovered Symbian SDK list.
Use the Select a type of project page in the New Qt Project Wizard to choose a Qt project template that will be used to generate the new project, then click Next. Note that the templates shown are filtered to
Figure 1. Qt project wizard - New Qt Symbian OS C++ Project page
+Figure 1. Qt project wizard - New Qt Symbian C++ Project page
NOTE There must be at least one recognized SDK installed before you can create a project. See the Symbian SDKs panel to determine if the installed SDKs are recognized by Carbide.c++ IDE. If the SDK you have is not recognized, you may still be able to add it to the Discovered Symbian OS SDK list.
+NOTE There must be at least one recognized SDK installed before you can create a project. See the Symbian SDKs panel to determine if the installed SDKs are recognized by Carbide.c++ IDE. If the SDK you have is not recognized, you may still be able to add it to the Discovered Symbian SDK list.
Use the New Qt Symbian OS C++ Project page in the Qt Project Wizard to define the projects name and where it should be saved, then click Next. In Qt projects, the name of the project folder must match the project name.
+Use the New Qt Symbian C++ Project page in the Qt Project Wizard to define the projects name and where it should be saved, then click Next. In Qt projects, the name of the project folder must match the project name.
Figure 1. Qt project wizard - New Qt Symbian OS C++ Project page
+Figure 1. Qt project wizard - New Qt Symbian C++ Project page
Item | diff -r 16e8bfa397ad -r ff0156b93599 core/com.nokia.carbide.cpp.doc.user/html/qt_help/qt_creating_projs_04.htm --- a/core/com.nokia.carbide.cpp.doc.user/html/qt_help/qt_creating_projs_04.htm Sat Oct 02 12:36:21 2010 -0500 +++ b/core/com.nokia.carbide.cpp.doc.user/html/qt_help/qt_creating_projs_04.htm Wed Oct 06 10:31:32 2010 -0500 @@ -20,7 +20,7 @@
---|
Appears for projects that require a 32-bit unique ID to identify the vendor of the - executable. In versions of Symbian OS with platform security, a program can + executable. In versions of Symbian with platform security, a program can read a VID at runtime to check that a binary comes from a particular source. In most cases, the VID should be zero, meaning that source of the executable is not required for any security checks. diff -r 16e8bfa397ad -r ff0156b93599 core/com.nokia.carbide.cpp.doc.user/html/reference/MBMEditor.html --- a/core/com.nokia.carbide.cpp.doc.user/html/reference/MBMEditor.html Sat Oct 02 12:36:21 2010 -0500 +++ b/core/com.nokia.carbide.cpp.doc.user/html/reference/MBMEditor.html Wed Oct 06 10:31:32 2010 -0500 @@ -7,7 +7,7 @@ The MBM Editor allows you to specify the bitmaps that - should be included in a Symbian OS multi-bitmap (MBM) file. Use of MBM files for general purpose graphics is restricted to using .bmp files and works for versions 2.x and later releases of the Symbian OS SDKs. For more + should be included in a Symbian multi-bitmap (MBM) file. Use of MBM files for general purpose graphics is restricted to using .bmp files and works for versions 2.x and later releases of the Symbian SDKs. For more information, see MBM File and Creating a MBM File. The MBM Editor is shown when an MBM file is diff -r 16e8bfa397ad -r ff0156b93599 core/com.nokia.carbide.cpp.doc.user/html/reference/MenusToc.htm --- a/core/com.nokia.carbide.cpp.doc.user/html/reference/MenusToc.htm Sat Oct 02 12:36:21 2010 -0500 +++ b/core/com.nokia.carbide.cpp.doc.user/html/reference/MenusToc.htm Wed Oct 06 10:31:32 2010 -0500 @@ -10,8 +10,8 @@ The New C++ Class wizard allows a developer to add a new C++ class to existing or new header and source files. This wizard is supplied by the C/C++ - Development Toolkit (CDT), and is not customised for Symbian OS development. + Development Toolkit (CDT), and is not customised for Symbian development. However, as it is not currently described in the C/C++ Development Toolkit User Guide, you may find this extra information about it useful. -See Adding a Symbian OS Class for information on adding Symbian-based classes to a project. +See Adding a Symbian Class for information on adding Symbian-based classes to a project. To invoke the wizard, click File > New > Class from the menu bar. The New C++ Class window appears.
@@ -92,7 +92,7 @@
Related tasksdiff -r 16e8bfa397ad -r ff0156b93599 core/com.nokia.carbide.cpp.doc.user/html/reference/ProjectPreferences.html --- a/core/com.nokia.carbide.cpp.doc.user/html/reference/ProjectPreferences.html Sat Oct 02 12:36:21 2010 -0500 +++ b/core/com.nokia.carbide.cpp.doc.user/html/reference/ProjectPreferences.html Wed Oct 06 10:31:32 2010 -0500 @@ -9,7 +9,7 @@TheProperties for <project_name> window allows you to change a project's build configurations, macros, and other project settings. - To change the settings for a project, right-click the project from the Project Explorer or Symbian Project Navigator views, and choose Properties from the context menu. The Properties for <project_name> window then show all the project settings. If + To change the settings for a project, right-click the project from the Project Explorer or Symbian Project Navigator views, and choose Properties from the context menu. The Properties for <project_name> window then show all the project settings. If you alter the settings, then the settings are applied as defaults for all files in the project. The Carbide.c++ panels include: diff -r 16e8bfa397ad -r ff0156b93599 core/com.nokia.carbide.cpp.doc.user/html/reference/ProjectTypeandSDK.html --- a/core/com.nokia.carbide.cpp.doc.user/html/reference/ProjectTypeandSDK.html Sat Oct 02 12:36:21 2010 -0500 +++ b/core/com.nokia.carbide.cpp.doc.user/html/reference/ProjectTypeandSDK.html Wed Oct 06 10:31:32 2010 -0500 @@ -6,7 +6,7 @@
-
Symbian OS SDKs+Symbian SDKsYou can set the SDKs and Build Configurations in this page. The available SDKs shown are determined by the settings in the SDK Preferences page. @@ -33,7 +33,7 @@Filter SDKs based on selected template |
- By default, the Symbian OS SDKs page only displays the templates related to the SDKs used by the project. Uncheck to view all available templates. |
+ By default, the Symbian SDKs page only displays the templates related to the SDKs used by the project. Uncheck to view all available templates. |
|
Use the ROM Builder pane to specify commands and a working directory for building a GUI ROM Image. The tool used to build GUI ROM images is called buildrom and can typically be found in your SDK path, for example in the \Symbian\9.4\S60_5rd\Epoc32\tools directory. The tool used to build text shell images is called ROM. The ROM image generated from the ROM build process specifies a base address for the image to run at. This might be an address in RAM or ROM. The image must be downloaded to the device at this address.
Building a ROM requires that the following are available, or have been successfully created:
Enter arguments into the various text boxes to customize the bldmake process. See the Symbian OS documentation for a complete list of arguments for these commands.
+Enter arguments into the various text boxes to customize the bldmake process. See the Symbian documentation for a complete list of arguments for these commands.
Enter arguments into the various text boxes to customize the abld process. See the Symbian OS documentation for a complete list of arguments for these commands.
+Enter arguments into the various text boxes to customize the abld process. See the Symbian documentation for a complete list of arguments for these commands.
NOTE To create a SYM file for UREL builds, enter -debug into the makefile text box in the Abld Arguments group.
The Paths and Symbols pane shows the paths and symbols used to the build the project index. This is a read-only list based on the setting of the Build configuration for the indexer option in the C/C++ General > Indexer panel. Carbide now caches the paths and symbols which persist between debug sessions. If any of the files like bld.inf, MMP, or any of their include files change, the list is automatically recalculated and CDT notified.
To change what appears in the list:
You can also specify a macro file using the Macro Settings page in the Properties for project dialog.
diff -r 16e8bfa397ad -r ff0156b93599 core/com.nokia.carbide.cpp.doc.user/html/reference/build_properties/pane_build_config_sis.htm --- a/core/com.nokia.carbide.cpp.doc.user/html/reference/build_properties/pane_build_config_sis.htm Sat Oct 02 12:36:21 2010 -0500 +++ b/core/com.nokia.carbide.cpp.doc.user/html/reference/build_properties/pane_build_config_sis.htm Wed Oct 06 10:31:32 2010 -0500 @@ -47,8 +47,8 @@The SIS Builder supports the generation of partial upgrade .SIS files. A dialog appears when a SIS file exceeds 250k in size that describes the partial upgrade feature with a link to the SIS Builder page. Partial upgrade files enable Carbide to generate and download to the device only those portions of the application that have changed, enabling faster debug cycles. It does this using the SIS partial upgrade (PU) flag to mark the SIS file as a replacement or addition to the original SIS file. Debugging of large applications using Symbian OS Device (Install SIS) is enhanced as the entire application no longer needs to be installed on the device each time a change is made.
-When the Partial update option is checked for a SIS file, both a complete and partial SIS files are generated. This ensures that the full SIS file is kept in sync with the partial upgrade SIS file. The partial upgrade SIS files are placed in the same folder as the full SIS file when stored in a project directory, or in the root of the project directory when the SIS file exists outside of the project. You can see where a partial upgrade file is created by examining the Partial upgrade sis/sisx path in the Installation tab of the launch configuration. Links to the partial upgrade files are added to the project within the Project Explorer view.
+The SIS Builder supports the generation of partial upgrade .SIS files. A dialog appears when a SIS file exceeds 250k in size that describes the partial upgrade feature with a link to the SIS Builder page. Partial upgrade files enable Carbide to generate and download to the device only those portions of the application that have changed, enabling faster debug cycles. It does this using the SIS partial upgrade (PU) flag to mark the SIS file as a replacement or addition to the original SIS file. Debugging of large applications using Symbian Device (Install SIS) is enhanced as the entire application no longer needs to be installed on the device each time a change is made.
+When the Partial update option is checked for a SIS file, both a complete and partial SIS files are generated. This ensures that the full SIS file is kept in sync with the partial upgrade SIS file. The partial upgrade SIS files are placed in the same folder as the full SIS file when stored in a project directory, or in the root of the project directory when the SIS file exists outside of the project. You can see where a partial upgrade file is created by examining the Partial upgrade sis/sisx path in the Installation tab of the launch configuration. Links to the partial upgrade files are added to the project within the Project Explorer view.
NOTE Internally, the .PKG file format of a partial upgrade file is identical to a complete .PKG file with two exceptions, 1) the file list only includes the names of files changed, and 2) the PU flag is set.
Partial upgrade files are deleted and only full SIS/SISX files are generated when:
The Set PKG File for Build Configuration dialog appears when an Symbian OS Device (Install SIS) build configuration does not include a PKG file. Use it to assign a PKG file to the project's current build configuration that will be used to create a project's SIS installation file. If you define a launch configuration used for on-device debugging with the CODA debug agent, you will need to specify a PKG file for the project. A PKG file primarily provides a list of program and resource files to install on the device.
+The Set PKG File for Build Configuration dialog appears when an Symbian Device (Install SIS) build configuration does not include a PKG file. Use it to assign a PKG file to the project's current build configuration that will be used to create a project's SIS installation file. If you define a launch configuration used for on-device debugging with the CODA debug agent, you will need to specify a PKG file for the project. A PKG file primarily provides a list of program and resource files to install on the device.
Figure 1 - Set PKG File for Build Configuration
Enter or browse to certificate.
-NOTE On Symbian OS 9.x builds, if the key/cert pair are not defined, makekeys will be called and temporary ones will be generated for you to "self-sign" the application. Self-signed applications should be in the +
NOTE On Symbian 9.x builds, if the key/cert pair are not defined, makekeys will be called and temporary ones will be generated for you to "self-sign" the application. Self-signed applications should be in the 0xE0000000-0xEFFFFFFF range.
NOTE On Symbian OS 9.x builds, if the key/cert pair are not defined, makekeys will be called and temporary ones will be generated for you to "self-sign" the application. Self-signed applications should be in the +
NOTE On Symbian 9.x builds, if the key/cert pair are not defined, makekeys will be called and temporary ones will be generated for you to "self-sign" the application. Self-signed applications should be in the 0xE0000000-0xEFFFFFFF range.
-NOTE All Symbian OS Device (Install SIS) build configuration require a PKG file. If none is found in the active project then you will be asked to choose one.
+NOTE All Symbian Device (Install SIS) build configuration require a PKG file. If none is found in the active project then you will be asked to choose one.
NOTE You can also rebuild a project's index by selecting a project, then right-click and select the Rebuild Index menu item.
Figure 1 - C/C++ Indexer in Preferences
-The project indexer is accessed by selecting a project in the Project Explorer or Symbian Project Navigator view and selecting Project > Properties > C/C++ General > Indexer (figure 2).
+The project indexer is accessed by selecting a project in the Project Explorer or Symbian Project Navigator view and selecting Project > Properties > C/C++ General > Indexer (figure 2).
Figure 2 - Indexer panel in Properties for project_name
Manage dependency tracking (improves build speed) |
Enable to have Carbide manage the dependency tracking for source and resource files. Carbide does this by separating out the generation of dependency information from the makefile and managing the entire process. All builds now can quickly compare whether new dependency information is required due to changes in a source file and only build those that need updating. -If not enabled, the Symbian OS command line build system handles all dependency tracking by generating the dependency information in the makefiles. Because it does this for all project files, regardless of the number of changes, it can result in a performance penalty. A single edit in a MMP file forces a complete regeneration of the makefile dependency information for all project files. |
+ |
Show a dialog to modify build actions when modified MMPs are detected |
diff -r 16e8bfa397ad -r ff0156b93599 core/com.nokia.carbide.cpp.doc.user/html/reference/pref_carb_cpp.htm
--- a/core/com.nokia.carbide.cpp.doc.user/html/reference/pref_carb_cpp.htm Sat Oct 02 12:36:21 2010 -0500
+++ b/core/com.nokia.carbide.cpp.doc.user/html/reference/pref_carb_cpp.htm Wed Oct 06 10:31:32 2010 -0500
@@ -21,7 +21,7 @@
Explanation | |
---|---|---|
Keep Symbian OS project files (bld.inf/mmp) in sync with project changes | +Keep Symbian project files (bld.inf/mmp) in sync with project changes | Select this option to update project files (bld.inf and mmp) when you add, remove, rename or move files and directories in your current workspace. |
Time interval for auto-refreshing OS View | -Determines how often to refresh data in the Symbian OS Data view which is available to the developer when using CODA or stop-mode debugging. | +Determines how often to refresh data in the Symbian Data view which is available to the developer when using CODA or stop-mode debugging. |
One thing to note is that Carbde.c++ no longer requires the devices.xml file to recognize and use SDKs. Insteads it now caches this information for later use. If the SDK contains an entry for the devices.xml Carbide will use it.
To access Symbian SDKs preferences preference panel, select Window > Preferences > Carbide.c++ > Symbian SDKs.
-NOTE There must be at least one recognized SDK installed before you can create a project. If the SDK you have installed is not recognized, you may still be able to add it to the Discovered Symbian OS SDK list. See Carbide.c++ Requirements for a list of supported SDKs.
+NOTE There must be at least one recognized SDK installed before you can create a project. If the SDK you have installed is not recognized, you may still be able to add it to the Discovered Symbian SDK list. See Carbide.c++ Requirements for a list of supported SDKs.
Figure 1. Symbian SDKs preference panel
Symbian SDK's | Lists all the installed and recognized SDKs that are supported by the IDE. SDKs no longer supported by Carbide are not shown. You can double-click the SDK ID or Location entry to edit them directly. Checked SDKs indicate build configurations available for creating projects. Unchecked SDKs are not displayed when creating new projects. -SDKs shown in RED indicate a problem, usually no EPOCROOT or unsupported Symbian OS version. +SDKs shown in RED indicate a problem, usually no EPOCROOT or unsupported Symbian version. If you see a BAD_SDK_ROOT error message in the Location column, it indicates you have a build configuration with an SDK ID unknown to Carbide. To correct this you can either 1) remove the bad configurations from all the projects in your current workspace or 2) fix the location with the proper path and rescan your SDKs. If you delete an SDK with BAD_SDK_ROOT before removing it's configuration the SDK will continue to appear in the Symbian SDKs until the configurations are fixed or removed. Click on a SDK name to see its EPOCROOT location and build configuration status in the SDK Information area. |
diff -r 16e8bfa397ad -r ff0156b93599 core/com.nokia.carbide.cpp.doc.user/html/reference/pref_cpp_code_style.htm
--- a/core/com.nokia.carbide.cpp.doc.user/html/reference/pref_cpp_code_style.htm Sat Oct 02 12:36:21 2010 -0500
+++ b/core/com.nokia.carbide.cpp.doc.user/html/reference/pref_cpp_code_style.htm Wed Oct 06 10:31:32 2010 -0500
@@ -9,7 +9,7 @@