TweetFollow Us on Twitter

Apr 00 Factory Floor

Volume Number: 16 (2000)
Issue Number: 4
Column Tag: From the Factory Floor

Metrowerks Top Ten

by Richard Atwell

A monthly column of assorted news, interviews, and technical information from Metrowerks

Top Ten

It's been quite a while since we presented a top ten list of support questions so this month we'll do just that. URL addresses to useful resources mentioned in the answers are located at the end of article.

Q) I am having trouble with the CodeWarrior CD installer. It partially completes then stops citing a bad disk error. What can I do?

A) Check for these common disturbances and try running the installer again:

  • the CD is dirty or scratched
  • the correct driver for the CD-ROM drive is missing
  • disruptive third-party extensions are installed such as virus scanning software and/or Norton CrashGuard

Q) Can I use CodeWarrior to port MFC applications to Mac OS?

A) Microsoft's Foundation Classes, or MFC, is a Microsoft Windows specific application framework. CodeWarrior Professional ships with PowerPlant, our world-class application framework for Mac OS. PowerPlant is similar to MFC except there isn't a simple way to port MFC-based code to Mac OS using PowerPlant. This is due to differences between the underlying APIs that both operating systems provide.

Q) The CodeWarrior Release 5.3 Update supports AltiVec but your documentation doesn't have any detailed information on how to program AltiVec. Where can I find such information?

A) Apple's Web site has technical information for developers that describes how to utilize AltiVec instructions to enhance your programs. The CodeWarrior documentation describes the debugging features within the IDE, the compiler support for AltiVec code generation and runtime library support only.

Q) I've written a simple C++ project but somewhere along the way I added some code and now I'm getting compiler errors like this:

Link Error   : Undefined symbol:
?id@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@std@@@std@@2V0locale@2@A
(class std::locale::id std::num_put<char, class std::ostreambuf_iterator<char,
struct std::char_traits<char>>>::id) in hello.cpp

A) The problem is likely caused by having the C/C++ language setting "ARM Conformance" set to on. The MSL C++ library is built with the settings below. If your target differs in setting you may get errors at any stage of development.

	ARM Conformance						off
	Enable C++ Exceptions				on
	Enable bool Support					on
	Enable wchar_t Support				on
	Map newlines to CR					off
	Enums Always Int						off
	Use Unsigned Chars					off

Q) When I try to debug my Java application on Mac OS, I receive the following message:

	"Error setting up JDWP server socket"

A) Ensure your setup is correct:

  • Make sure that you have Apple's MRJ installed on your Mac.
  • Check your CodeWarrior installation and make sure that the RunJava application was installed and is located in the (Helper Apps) folder.
  • Check that you have TCP/IP enabled and set up correctly for your machine.

Starting with CodeWarrior Release 5, the Java debugger requires that you have TCP/IP services installed on your Mac. For information on creating this configuration read the release notes in the following location:

CodeWarrior Pro 5:
		CWPro Release Notes:
		Java Notes:
			IMPORTANT (Mac Java Debug).txt

If you have TCP/IP set up correctly, and you have the CodeWarrior Release 5.3 Update installed, try increasing the timeout value in the global Java Debugging preference panel to 30 or 60 seconds and see if this allows the debugger to launch correctly.

Q) CodeWarrior Release 5 included Apple's Universal Interfaces 3.2. How do I install a newer release like Universal Interfaces 3.3?

A) Starting with CodeWarrior Release 5, the Mac OS Support folder was re-organized in order to simplify the procedure for upgrading essential headers and libraries from Apple. Previous versions required you to hunt down the duplicate files and remove them, but now all you need to do is replace the contents of this folder:

Metrowerks CodeWarrior:MacOS Support:Universal

If you want to leave the 3.2 files in place you can add the new 3.3 files to a (shielded) folder. Then, explicitly add an access path to that folder so projects that require the older files and have an implicit access path to MacOS Support will not accidentally pick up the newer files. You may want to exchange the contents of the shielded folder with the existing Universal folder if you plan to move your projects to the newer headers and libraries.

Q) When my application is halted by the integrated debugger for the very first time, xSYM files for all loaded shared libraries are opened. Since our application has many shared libraries, opening a large number of xSYM files can slow down the debugger startup. How can I stop this from happening?

A) Turn off the "Auto Target Libraries" option in the Global debugger settings. Alternatively, you can turn off the "Auto-target Libraries" option in the debugger target settings of the project that you are debugging.

To debug a specific shared library, simply open the project for it and set a breakpoint. This can also be done by opening the library's xSYM file and setting a breakpoint from there. Doing so will stop the debugger from loading symbolics for all the shared libraries that your application loads when you start debugging.

Q) I can export a project as XML through AppleScript, but how do I create a project from an XML file through AppleScript?

A) The correct statement is:

Make new project document as "HD:Test:Test.mcp" with data "HD:Test:Test.mcp.xml"

There is a paragraph in the release notes that describes the syntax for exporting projects. Currently you must say "make new project document" instead of "make project document" or else this command won't work, even though the AppleScript documentation says that the "new" can optionally follow the "make" command.

Q) How do I setup the Mac-hosted cross-debugger to debug my Win32 apps built with Mac-hosted x86 tools?

A) To use the Mac-hosted x86 cross debugger, you'll need the following:

  • A Mac and a Windows machine networked together using the TCP/IP protocol
  • The CodeWarrior remote debugger nub, MWRemote.exe from the Pro 5 Mac Tools CD
	Metrowerks CodeWarrior:Win32-x86 Support:MWRemote.exe

Setup Procedure:

1) Copy MWRemote.exe to any folder on the Windows machine.

Preferably, you should use an empty folder since the .EXEs or .DLLs you debug will be copied to this location during debugging and may overwrite any existing files with the same names.

2) Enter the Windows machine's TCP/IP address in the x86 Debugger preferences panel within the Mac hosted IDE.

From the Edit menu, select Preferences and then select x86 Debugger panel. Enable remote debugging by checking the Remote Debugging checkbox. Then, edit the Remote IP Address field and enter the remote machine's TCP/IP address. Leave the port number in the second field to the default value of 6969. Close the preferences dialog to save the new settings.

3) Run MWRemote.exe on the Windows host.

Make sure that "TCP/IP" is selected in the Connection combo-box. Note that you can also enter an alternative port number here, otherwise leave it as the default setting of 6969. If you minimize this dialog you'll notice the nub's icon in the Windows task bar, indicating that it's running.

4) Select Debug from the Project menu.

The debugger should launch, automatically copying the target output over to the remote machine. If the application launched, you will stop at the default entry point (i.e., main() or WinMain() for applications, DLLMain() for DLLs).

Notes:

If your application uses DLLs, they must be manually copied to the remote machine. The debugger will not automatically copy DLLs over.

At the present time, it's not possible to debug Win32 DLLs using CodeView for the symbolics format since it's not possible to open the DLLs CodeView file in the Mac-hosted debugger. A workaround is to select the SYM symbolics option through the x86 linker panel for all your targets (any debug libs will also have to be rebuilt using SYM). Then, you can browse the symbolics of any of your DLLs by opening the .iSYM file generated by the linker.

Q) I want to allocate memory for many large objects in my program. To avoid heap fragmentation I have called _prealloc_newpool at the start of the main() function in several projects for many years now. With the CodeWarrior 5.3 Update (with or without patches) the linker complains that it can no longer can find this function and displays the following error:

	Link Error   : undefined 'std::_prealloc_newpool(unsigned long)' (code)

A) Metrowerks was not satisfied with the performance of our previous memory allocators so for CodeWarrior Release 5 we rewrote the malloc/free functions in our MSL C library. This resulted in large performance gains.

For Mac OS targets, operator new has always had several implementation options. In the file New.cp (Mac OS Support:Libraries:Runtime:Common Sources:), these options are implemented as conditionals:

#define NEWMODE_NONE    0		// do not define operator new/delete
#define NEWMODE_SIMPLE  1		// call NewPtr/DisposPtr
#define NEWMODE_MALLOC  2		// use malloc/free
#define NEWMODE_NORMAL  3		// regular new/delete
#define NEWMODE_FAST    4		// regular new/delete fast version

With CodeWarrior Release 4, we shipped with NEWMODE_FAST on by default, which is an allocation algorithm implemented right in New.cp, separate from the malloc/free routines of the MSL C library. This algorithm supported the method mentioned in the linker error along with NEWMODE_NORMAL.

char _prealloc_newpool(size_t size);

With the malloc/free rewrite, we switched the default implementation of new to NEWMODE_MALLOC (which has no corresponding _prealloc_newpool). NEWMODE_FAST is still there but you need to edit New.cp and rebuild your runtime libraries.

The CodeWarrior Release 5 malloc is a sophisticated and robust algorithm in terms of both CPU performance and memory usage. It avoids memory fragmentation two ways:

1. Tiny allocations are lumped together and taken from fixed sized pools. This greatly increases the speed of allocation/deallocation of small blocks and completely eliminates the unused blocks between allocated blocks.

2. Larger allocations come from traditional variably sized pools. As these larger allocations are freed, adjacent free blocks are merged into larger free blocks.

Credits

Thanks to James Lee and everyone in Metrowerks' Tech-Support group who contributed to this article.

We always welcome your feedback on any subject. Contact us through our newsgroup or send us email directly using the addresses below.

Technical Support: cw_support@metrowerks.com
Report Bugs: cw_bug@metrowerks.com
Suggestions: cw_suggestion@metrowerks.com

URLs

AltiVec programming tutorials
http://developer.apple.com/hardware/altivec/index.html

Apple's Universal Interfaces
http://developer.apple.com/sdk/


Richard Alexander David Atwell lives and works in Austin, Texas, where the Metrowerks headquarters are located. Richard attended the University of Victoria, British Columbia, Canada and graduated with a B.Sc. in Computer Science just prior to joining Metrowerks. You can reach him at ratwell@metrowerks.com.

 

Community Search:
MacTech Search:

Software Updates via MacUpdate

Latest Forum Discussions

See All

Aether Gazer unveils Chapter 16 of its m...
After a bit of maintenance, Aether Gazer has released Chapter 16 of its main storyline, titled Night Parade of the Beasts. This big update brings a new character, a special outfit, some special limited-time events, and, of course, an engaging... | Read more »
Challenge those pesky wyverns to a dance...
After recently having you do battle against your foes by wildly flailing Hello Kitty and friends at them, GungHo Online has whipped out another surprising collaboration for Puzzle & Dragons. It is now time to beat your opponents by cha-cha... | Read more »
Pack a magnifying glass and practice you...
Somehow it has already been a year since Torchlight: Infinite launched, and XD Games is celebrating by blending in what sounds like a truly fantastic new update. Fans of Cthulhu rejoice, as Whispering Mist brings some horror elements, and tests... | Read more »
Summon your guild and prepare for war in...
Netmarble is making some pretty big moves with their latest update for Seven Knights Idle Adventure, with a bunch of interesting additions. Two new heroes enter the battle, there are events and bosses abound, and perhaps most interesting, a huge... | Read more »
Make the passage of time your plaything...
While some of us are still waiting for a chance to get our hands on Ash Prime - yes, don’t remind me I could currently buy him this month I’m barely hanging on - Digital Extremes has announced its next anticipated Prime Form for Warframe. Starting... | Read more »
If you can find it and fit through the d...
The holy trinity of amazing company names have come together, to release their equally amazing and adorable mobile game, Hamster Inn. Published by HyperBeard Games, and co-developed by Mum Not Proud and Little Sasquatch Studios, it's time to... | Read more »
Amikin Survival opens for pre-orders on...
Join me on the wonderful trip down the inspiration rabbit hole; much as Palworld seemingly “borrowed” many aspects from the hit Pokemon franchise, it is time for the heavily armed animal survival to also spawn some illegitimate children as Helio... | Read more »
PUBG Mobile teams up with global phenome...
Since launching in 2019, SpyxFamily has exploded to damn near catastrophic popularity, so it was only a matter of time before a mobile game snapped up a collaboration. Enter PUBG Mobile. Until May 12th, players will be able to collect a host of... | Read more »
Embark into the frozen tundra of certain...
Chucklefish, developers of hit action-adventure sandbox game Starbound and owner of one of the cutest logos in gaming, has released their roguelike deck-builder Wildfrost. Created alongside developers Gaziter and Deadpan Games, Wildfrost will... | Read more »
MoreFun Studios has announced Season 4,...
Tension has escalated in the ever-volatile world of Arena Breakout, as your old pal Randall Fisher and bosses Fred and Perrero continue to lob insults and explosives at each other, bringing us to a new phase of warfare. Season 4, Into The Fog of... | Read more »

Price Scanner via MacPrices.net

Boost Mobile will sell you an iPhone 11 for $...
Boost Mobile, an MVNO using AT&T and T-Mobile’s networks, is offering an iPhone 11 for $149.99 when purchased with their $40 Unlimited service plan (12GB of premium data). No trade-in is required... Read more
Free iPhone 15 plus Unlimited service for $60...
Boost Infinite, part of MVNO Boost Mobile using AT&T and T-Mobile’s networks, is offering a free 128GB iPhone 15 for $60 per month including their Unlimited service plan (30GB of premium data).... Read more
$300 off any new iPhone with service at Red P...
Red Pocket Mobile has new Apple iPhones on sale for $300 off MSRP when you switch and open up a new line of service. Red Pocket Mobile is a nationwide MVNO using all the major wireless carrier... Read more
Clearance 13-inch M1 MacBook Airs available a...
Apple has clearance 13″ M1 MacBook Airs, Certified Refurbished, available for $759 for 8-Core CPU/7-Core GPU/256GB models and $929 for 8-Core CPU/8-Core GPU/512GB models. Apple’s one-year warranty is... Read more
Updated Apple MacBook Price Trackers
Our Apple award-winning MacBook Price Trackers are continually updated with the latest information on prices, bundles, and availability for 16″ and 14″ MacBook Pros along with 13″ and 15″ MacBook... Read more
Every model of Apple’s 13-inch M3 MacBook Air...
Best Buy has Apple 13″ MacBook Airs with M3 CPUs in stock and on sale today for $100 off MSRP. Prices start at $999. Their prices are the lowest currently available for new 13″ M3 MacBook Airs among... Read more
Sunday Sale: Apple iPad Magic Keyboards for 1...
Walmart has Apple Magic Keyboards for 12.9″ iPad Pros, in Black, on sale for $150 off MSRP on their online store. Sale price for online orders only, in-store price may vary. Order online and choose... Read more
Apple Watch Ultra 2 now available at Apple fo...
Apple has, for the first time, begun offering Certified Refurbished Apple Watch Ultra 2 models in their online store for $679, or $120 off MSRP. Each Watch includes Apple’s standard one-year warranty... Read more
AT&T has the iPhone 14 on sale for only $...
AT&T has the 128GB Apple iPhone 14 available for only $5.99 per month for new and existing customers when you activate unlimited service and use AT&T’s 36 month installment plan. The fine... Read more
Amazon is offering a $100 discount on every M...
Amazon is offering a $100 instant discount on each configuration of Apple’s new 13″ M3 MacBook Air, in Midnight, this weekend. These are the lowest prices currently available for new 13″ M3 MacBook... Read more

Jobs Board

Omnichannel Associate - *Apple* Blossom Mal...
Omnichannel Associate - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Apple Read more
Operations Associate - *Apple* Blossom Mall...
Operations Associate - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Apple Read more
Cashier - *Apple* Blossom Mall - JCPenney (...
Cashier - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Apple Blossom Mall Read more
IT Systems Engineer ( *Apple* Platforms) - S...
IT Systems Engineer ( Apple Platforms) at SpaceX Hawthorne, CA SpaceX was founded under the belief that a future where humanity is out exploring the stars is Read more
*Apple* Systems Administrator - JAMF - Activ...
…**Public Trust/Other Required:** None **Job Family:** Systems Administration **Skills:** Apple Platforms,Computer Servers,Jamf Pro **Experience:** 3 + years of Read more
All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.