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

Fresh From the Land Down Under – The Tou...
After a two week hiatus, we are back with another episode of The TouchArcade Show. Eli is fresh off his trip to Australia, which according to him is very similar to America but more upside down. Also kangaroos all over. Other topics this week... | Read more »
TouchArcade Game of the Week: ‘Dungeon T...
I’m a little conflicted on this week’s pick. Pretty much everyone knows the legend of Dungeon Raid, the match-3 RPG hybrid that took the world by storm way back in 2011. Everyone at the time was obsessed with it, but for whatever reason the... | Read more »
SwitchArcade Round-Up: Reviews Featuring...
Hello gentle readers, and welcome to the SwitchArcade Round-Up for July 19th, 2024. In today’s article, we finish up the week with the unusual appearance of a review. I’ve spent my time with Hot Lap Racing, and I’m ready to give my verdict. After... | Read more »
Draknek Interview: Alan Hazelden on Thin...
Ever since I played my first release from Draknek & Friends years ago, I knew I wanted to sit down with Alan Hazelden and chat about the team, puzzle games, and much more. | Read more »
The Latest ‘Marvel Snap’ OTA Update Buff...
I don’t know about all of you, my fellow Marvel Snap (Free) players, but these days when I see a balance update I find myself clenching my… teeth and bracing for the impact to my decks. They’ve been pretty spicy of late, after all. How will the... | Read more »
‘Honkai Star Rail’ Version 2.4 “Finest D...
HoYoverse just announced the Honkai Star Rail (Free) version 2.4 “Finest Duel Under the Pristine Blue" update alongside a surprising collaboration. Honkai Star Rail 2.4 follows the 2.3 “Farewell, Penacony" update. Read about that here. | Read more »
‘Vampire Survivors+’ on Apple Arcade Wil...
Earlier this month, Apple revealed that poncle’s excellent Vampire Survivors+ () would be heading to Apple Arcade as a new App Store Great. I reached out to poncle to check in on the DLC for Vampire Survivors+ because only the first two DLCs were... | Read more »
Homerun Clash 2: Legends Derby opens for...
Since launching in 2018, Homerun Clash has performed admirably for HAEGIN, racking up 12 million players all eager to prove they could be the next baseball champions. Well, the title will soon be up for grabs again, as Homerun Clash 2: Legends... | Read more »
‘Neverness to Everness’ Is a Free To Pla...
Perfect World Games and Hotta Studio (Tower of Fantasy) announced a new free to play open world RPG in the form of Neverness to Everness a few days ago (via Gematsu). Neverness to Everness has an urban setting, and the two reveal trailers for it... | Read more »
Meditative Puzzler ‘Ouros’ Coming to iOS...
Ouros is a mediative puzzle game from developer Michael Kamm that launched on PC just a couple of months back, and today it has been revealed that the title is now heading to iOS and Android devices next month. Which is good news I say because this... | Read more »

Price Scanner via MacPrices.net

Amazon is still selling 16-inch MacBook Pros...
Prime Day in July is over, but Amazon is still selling 16-inch Apple MacBook Pros for $500-$600 off MSRP. Shipping is free. These are the lowest prices available this weekend for new 16″ Apple... Read more
Walmart continues to sell clearance 13-inch M...
Walmart continues to offer clearance, but new, Apple 13″ M1 MacBook Airs (8GB RAM, 256GB SSD) online for $699, $300 off original MSRP, in Space Gray, Silver, and Gold colors. These are new MacBooks... Read more
Apple is offering steep discounts, up to $600...
Apple has standard-configuration 16″ M3 Max MacBook Pros available, Certified Refurbished, starting at $2969 and ranging up to $600 off MSRP. Each model features a new outer case, shipping is free,... Read more
Save up to $480 with these 14-inch M3 Pro/M3...
Apple has 14″ M3 Pro and M3 Max MacBook Pros in stock today and available, Certified Refurbished, starting at $1699 and ranging up to $480 off MSRP. Each model features a new outer case, shipping is... Read more
Amazon has clearance 9th-generation WiFi iPad...
Amazon has Apple’s 9th generation 10.2″ WiFi iPads on sale for $80-$100 off MSRP, starting only $249. Their prices are the lowest available for new iPads anywhere: – 10″ 64GB WiFi iPad (Space Gray or... Read more
Apple is offering a $50 discount on 2nd-gener...
Apple has Certified Refurbished White and Midnight HomePods available for $249, Certified Refurbished. That’s $50 off MSRP and the lowest price currently available for a full-size Apple HomePod today... Read more
The latest MacBook Pro sale at Amazon: 16-inc...
Amazon is offering instant discounts on 16″ M3 Pro and 16″ M3 Max MacBook Pros ranging up to $400 off MSRP as part of their early July 4th sale. Shipping is free. These are the lowest prices... Read more
14-inch M3 Pro MacBook Pros with 36GB of RAM...
B&H Photo has 14″ M3 Pro MacBook Pros with 36GB of RAM and 512GB or 1TB SSDs in stock today and on sale for $200 off Apple’s MSRP, each including free 1-2 day shipping: – 14″ M3 Pro MacBook Pro (... Read more
14-inch M3 MacBook Pros with 16GB of RAM on s...
B&H Photo has 14″ M3 MacBook Pros with 16GB of RAM and 512GB or 1TB SSDs in stock today and on sale for $150-$200 off Apple’s MSRP, each including free 1-2 day shipping: – 14″ M3 MacBook Pro (... Read more
Amazon is offering $170-$200 discounts on new...
Amazon is offering a $170-$200 discount on every configuration and color of Apple’s M3-powered 15″ MacBook Airs. Prices start at $1129 for models with 8GB of RAM and 256GB of storage: – 15″ M3... Read more

Jobs Board

*Apple* Systems Engineer - Chenega Corporati...
…LLC,** a **Chenega Professional Services** ' company, is looking for a ** Apple Systems Engineer** to support the Information Technology Operations and Maintenance Read more
Solutions Engineer - *Apple* - SHI (United...
**Job Summary** An Apple Solution Engineer's primary role is tosupport SHI customers in their efforts to select, deploy, and manage Apple operating systems and Read more
*Apple* / Mac Administrator - JAMF Pro - Ame...
Amentum is seeking an ** Apple / Mac Administrator - JAMF Pro** to provide support with the Apple Ecosystem to include hardware and software to join our team and 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
All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.