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

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 »
Top Mobile Game Discounts
Every day, we pick out a curated list of the best mobile discounts on the App Store and post them here. This list won't be comprehensive, but it every game on it is recommended. Feel free to check out the coverage we did on them in the links below... | Read more »
Marvel Future Fight celebrates nine year...
Announced alongside an advertising image I can only assume was aimed squarely at myself with the prominent Deadpool and Odin featured on it, Netmarble has revealed their celebrations for the 9th anniversary of Marvel Future Fight. The Countdown... | Read more »
HoYoFair 2024 prepares to showcase over...
To say Genshin Impact took the world by storm when it was released would be an understatement. However, I think the most surprising part of the launch was just how much further it went than gaming. There have been concerts, art shows, massive... | Read more »

Price Scanner via MacPrices.net

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
You can save $300-$480 on a 14-inch M3 Pro/Ma...
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
24-inch M1 iMacs available at Apple starting...
Apple has clearance M1 iMacs available in their Certified Refurbished store starting at $1049 and ranging up to $300 off original MSRP. Each iMac is in like-new condition and comes with Apple’s... Read more
Walmart continues to offer $699 13-inch M1 Ma...
Walmart continues to offer 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 MacBook for sale by... Read more
B&H has 13-inch M2 MacBook Airs with 16GB...
B&H Photo has 13″ MacBook Airs with M2 CPUs, 16GB of memory, and 256GB of storage in stock and on sale for $1099, $100 off Apple’s MSRP for this configuration. Free 1-2 day delivery is available... Read more
14-inch M3 MacBook Pro with 16GB of RAM avail...
Apple has the 14″ M3 MacBook Pro with 16GB of RAM and 1TB of storage, Certified Refurbished, available for $300 off MSRP. Each MacBook Pro features a new outer case, shipping is free, and an Apple 1-... Read more
Apple M2 Mac minis on sale for up to $150 off...
Amazon has Apple’s M2-powered Mac minis in stock and on sale for $100-$150 off MSRP, each including free delivery: – Mac mini M2/256GB SSD: $499, save $100 – Mac mini M2/512GB SSD: $699, save $100 –... Read more
Amazon is offering a $200 discount on 14-inch...
Amazon has 14-inch M3 MacBook Pros in stock and on sale for $200 off MSRP. Shipping is free. Note that Amazon’s stock tends to come and go: – 14″ M3 MacBook Pro (8GB RAM/512GB SSD): $1399.99, $200... Read more

Jobs Board

Sublease Associate Optometrist- *Apple* Val...
Sublease Associate Optometrist- Apple Valley, CA- Target Optical Date: Apr 20, 2024 Brand: Target Optical Location: Apple Valley, CA, US, 92307 **Requisition Read more
*Apple* Systems Administrator - JAMF - Syste...
Title: Apple Systems Administrator - JAMF ALTA is supporting a direct hire opportunity. This position is 100% Onsite for initial 3-6 months and then remote 1-2 Read more
Relationship Banker - *Apple* Valley Financ...
Relationship Banker - Apple Valley Financial Center APPLE VALLEY, Minnesota **Job Description:** At Bank of America, we are guided by a common purpose to help Read more
IN6728 Optometrist- *Apple* Valley, CA- Tar...
Date: Apr 9, 2024 Brand: Target Optical Location: Apple Valley, CA, US, 92308 **Requisition ID:** 824398 At Target Optical, we help people see and look great - and Read more
Medical Assistant - Orthopedics *Apple* Hil...
Medical Assistant - Orthopedics Apple Hill York Location: WellSpan Medical Group, York, PA Schedule: Full Time Sign-On Bonus Eligible Remote/Hybrid Regular Apply Now Read more
All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.