Chrome Native Debugger For Visual Studio
Written by Mike James   
Thursday, 18 October 2012

NaCl is one of the many things that makes Chrome stand out amongst browsers. Now Google has released a debugger addin for Visual Studio in an effort to make it even easier to create native applications.

NaCl, or Native Client, allows you to run C or C++ code under Chrome. This means that you can achieve much higher speeds than are attainable with just JavaScript. However, running code in Chrome isn't quite the same as running under Linux or Windows and so you can expect to spend some time rewriting.

 

chromeIcon

 

Until now debugging NaCl apps has required manual setup of a suitable tool. Google has taken the open source GNU Debugger GDB and customized it for operation with NaCL You can install it manually for use with IDEs such as Eclipse, but Google has made it available as a Visual Studio plugin. The plugin also offers some additional advantages:

  • Iteratively write and test the application more easily. Visual Studio handles the details of launching a web server to serve your module and run the module in Chrome with a debugger attached.
  • Compile a module into a DLL and run it as a Pepper plugin. This allows you to develop code incrementally, coding and/or porting one feature at a time into the Pepper APIs while continuing to use native Windows APIs that would otherwise be unavailable in an actual Native Client module.
  • Use Visual Studio's built-in debugger to debug your code while it’s running as a Pepper plugin.
  • Compile your module into a .nexe file using the Native Client SDK tools and run it as a Native Client module.
  • Use the Native Client debugger, nacl-gdb, to test your code when it’s running as a Native Client object.

 

Click to enlarge

vsnacldebuggersmall

 

Overall this puts Visual Studio way ahead as an IDE in which to develop NaCl code. Given that Visual Studio is considered to be a standard implementation of C++ this leads to a surprising situation - Microsoft's IDE being the best for creating Google Chrome NaCL code.

Does this increase the chance that Microsoft might support NaCl? No way.

chromeIcon

More Information

Native Client

nacl-gdb

gdb

Visual Studio add-in

Related Articles

Chrome OS - Now A Real Alternative?

Chrome native apps split the browser world

Native client in the Chrome Web App store

 

 

raspberry pi books

 

Comments




or email your comment to: comments@i-programmer.info

 

To be informed about new articles on I Programmer, install the I Programmer Toolbar, subscribe to the RSS feed, follow us on, Twitter, Facebook, Google+ or Linkedin,  or sign up for our weekly newsletter.

 

Banner


Couchbase's Coding Assistant Goes GA
11/03/2024

Capella iQ, the AI coding assistant for developers that makes interacting with Couchbase using natural language possible, has gone from private beta to being generally available.



GitHub Introduces Code Scanning
26/03/2024

GitHub has announced a public beta of a code scanner that automatically fixes problems. The new feature was announced back in November, but has now moved to public beta status.  


More News

Last Updated ( Thursday, 18 October 2012 )