|
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.

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

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.

WebMatrix 3 Released 03/05/2013
Microsoft has released WebMatrix 3, the next version of the free, lightweight web development tool for ASP.NET, PHP, and Node.js. The focus of the new version is integration with Windows Azure, alongs [ ... ]
|
Code Digger Finds The Values That Break Your Code 25/04/2013
Code Digger is a free extension for VS 2012 that will automatically find "interesting" input values for your program - where interesting usually means "crash" or otherwise break your code. [ ... ]
| | More News |
|