TweetFollow Us on Twitter

Jun 95 Top 10
Volume Number:11
Issue Number:6
Column Tag:Symantec Top 10

Symantec Top 10

This column, written by Symantec’s Technical Support Engineers, is dedicated to answering common problems relating to Symantec C++ 8.0 for Power Macintosh.

By Michael Hopkins and Craig Conner, Symantec Corp.

Note: Source code files accompanying article are located on MacTech CD-ROM or source code disks.

Q: I have made some modifications to some of the ANSI library sources and I want to have PPCANSI.o use my new versions of those sources. Can I rebuild PPCANSI.o using the Symantec Project manager, or do I have to use MPW?

A: You can build PPCANSI.o directly from Symantec C++ 8.0 for Power Macintosh. There is a ready-made project, PPCANSI_XCOF.Π in Standard Libraries:Headers and Source, that you can recompile. However, for the purpose of illustrating how to create static libraries, we will discuss how to convert PPCANSI.Π to a static library.

First, make a copy of PPCANSI.Π (in the Standard Library folder ). Open the copy and remove the following files: InterfaceLib.xcoff, MathLib.xcoff, and shlbPPCRuntime.o. Now, go to the Project menu and select Options to bring up the options dialog for your copy of PPCANSI.Π. Select Project Type from the scrolling list. From the Project Type Popup Menu, choose Static Library. Dismiss the alert dialog “You cannot build Static Libraries using the Incremental Linker. Change to use PPCLink & MakePEF?” by clicking the Change button. Now the File Type should read XCOF and the Creator should be RAIN. (See picture below)

Click on the Set destination button and navigate the StandardPutFile dialog to select the destination for your built library. Your target name should be PPCANSI.o (or select another name if you don’t want to replace your default ANSI library.)

You can save these options your version of PPCANSI.o by selecting Save Options As from the Options popup menu. Enter the name of your option set in the edit box and click on the Save button. Now exit the Project Options dialog by clicking the Save button at the bottom of the dialog.

To use your newly created option set, go to your project window and select the name of your newly created option set from the Options popup menu (see picture below). Before you build your library, make sure that you have an alias to ToolServer in your (Tools) folder. Then choose Build Library from the Build menu to create a new .o file.

Creating a Project Options Set

Choosing the Project Option Set

Q: I am trying to open my application from the Finder by selecting a group of documents and double clicking on one of them. In my application code, I use CountAppFiles() to determine how many files the user selected, and it doesn’t seem to work on my PowerPC. This code used to work fine on my 68K machine. What is the matter?

A: CountAppFiles(), GetAppFiles(), ClrAppFiles(), GetAppParms(), and getappparms() are not supported on the PowerPC. You must use AppleEvents to determine how many files need to be opened. See Inside Macintosh: Interapplication Communication for more information on how to use AppleEvents.

Q: I am going through the Hello World C++ Application tutorial on page 10-15 of the user’s guide and I get a bunch of link errors. How can I resolve these problems?

A: There is an omission in the manual. You will need to add InterfaceLib.xcoff and MathLib.xcoff to your project. These libraries are in the PPC Libraries folder within the Macintosh Libraries folder.

Q: I am writing a C++ program using IOStreams and when I compile it in Symantec C++ 8.0, I get “Internal Error: cgfunc.c line 1476”. How do I get around this problem?

A: This internal error is caused by having too many expressions following a cout statement. For example:

 cout <<“x”<<endl <<“x”<<endl <<“x”<<endl <<“x”<<endl
      <<“x”<<endl <<“x”<<endl <<“x”<<endl <<“x”<<endl
      <<“x”<<endl <<“x”<<endl <<“x”<<endl <<“x”<<endl
      <<“x”<<endl <<“x”<<endl <<“x”<<endl <<“x”<<endl
      <<“x”<<endl <<“x”<<endl <<“x”<<endl <<“x”<<endl
      <<“x”<<endl <<“x”<<endl <<“x”<<endl <<“x”<<endl;

Split up the statements above to correct the problem. In some cases, this error message will occur several lines after the actual cause of the problem.

Q: I am getting link errors with CtoPstr and PtoCstr. Am I missing a library, or are these functions no longer available?

A: CtoPstr() and PtoCatr() have been renamed as c2pstr() and p2cstr(). To use them, you need to include the Apple header file Strings.h.

Q: When I choose “Run with Debugger” from the Project menu, the debugger launches, but then I get returned to the Project Manager. Why does this happen?

A: The Symantec Debugger is dependent upon the Apple application Power Mac DebugServices to provide low-level debugging services for PowerPC executables. If DebugServices is not working properly, the Symantec Debugger will not run. Here are some things to check or try

• Make sure that you have Power Mac DebugServices on your local hard drive. It should be located in your (Tools) folder in your Symantec C++ for PowerMac folder.

• If you are not using System 7.5, make sure that you have ObjectSupportLib, PPCTraceEnabler, and AppleScriptLib in your system folder. These items can be found on your CD in the Apple Software folder, and then in the Pre-System 7.5 Additions folder.

• If you are using System 7.5, try turning off all of your extensions and rebooting. Debugger Nub Controls, PPC Debugger Nub, and PPCDebuggerNub INIT in particular may conflict with the Symantec Debugger.

• Throw away the Symantec Debugger Prefs file located in the Preferences folder of your system folder.

Q: I just got System Update 7.5.1 and when I run my application under the Symantec Debugger, I get “The application ‘appname.pef’ could not be launched because of an unknown reason (error = -27324).” What is wrong with the debugger?

A: Nothing is wrong with the Symantec Debugger. The problem lies with Power Mac DebugServices which is not compatible with System 7.5.1. You need to get Power Mac DebugServices 2.0b14 or later to resolve this incompatibility; available from Apple Computer, or as part of our latest free online upgrade.

<ftp://devtools.symantec.com/macintosh/updaters/devtools/
sym.cpp-va-tcl.updates/>

<ftp://ftp.info.apple.com/Apple.Support.Area/Developer_Services/
Tool_Chest/Testing_&_Debugging/
PowerMacintoshDebugging/Power_Mac_DebugServices_v2.0b14/>

Q: Why is the menu option for Run with Debugger grayed out?

A: To run with the debugger, you need to have linked with the Incremental Linker, by choosing Incremental linker in the Linker page of the Project Options dialog, and set the project to Application. You will not be able to debug the executable if you use PPCLink & MakePEF, or have selected a static or shared library as the project type.

Q: Why doesn’t the Project Manager automatically detect changes to my source files made by external editors and recompile them when I run?

A: The Project Manager will automatically detect changes to your source files if you are using an external editor that supports the new Symantec Project Manager editor interface. Otherwise, you will need to enable the check box Always check file dates from the Project page of the Project Options dialog.

Q: When I use the Find command in the editor, it always searches forward. Is there any way to make it search backward?

A: Yes. When you use the Find command from the search menu, it will find the first instance of the search string starting from the current insertion point. Command-G finds the next matching string, while Command-Shift-G finds the previous matching string. You can find other special features by experimenting with modifier keys while pulling down menus.

The following are additional features of Symantec C++ 8.0:

• Double-clicking on either an open brace ‘{’ or close brace ‘}’ in the editor will select the text between the matching braces.

• Command -> expands groups in the project window

• Command <- collapses groups in the project window

• Holding down the command key while scrolling windows in the editor makes scrolling twice as fast.

• Holding down the option key while scrolling accelerates scrolling by a factor of three.

Special Thanks to: Mark Baldwin, Glenn Austin, Phil Shapiro, Thomas Emerson, Colen Garoutte-Carson, Rick Hartmann, Kevin Quah, Steve Howard, Scott Morison, Levi Brown, Noah Lieberman, and Andy McFarland.

 
AAPL
$565.32
Apple Inc.
-5.24
MSFT
$29.07
Microsoft Corpora
-0.04
GOOG
$603.66
Google Inc.
-5.80
MacTech Search:
Community Search:

Empire of the Eclipse Review
Empire of the Eclipse Review By Carter Dotson on May 24th, 2012 Our Rating: :: OVERSHADOWINGiPhone App - Designed for the iPhone, compatible with the iPad Empire of the Eclipse is an ambitious strategy MMO that is very deep, and... | Read more »
Bejeweled HD Review
Bejeweled HD Review By Jennifer Allen on May 24th, 2012 Our Rating: :: ADDICTIVEiPad Only App - Designed for the iPad The iPad version of the ever addictive Match Three title.   Developer: PopCap Price: $3.99 Version Reviewed: 1... | Read more »
Facebook Releases New Camera App To Stre...
While not a replacement for Instagram, Facebook Camera is a good first step in this month+ old union of the two companies. Released today, Facebook camera looks to streamline the viewing of photos and the uploading of them. The app allows you to... | Read more »
Missile Monkey Review
Missile Monkey Review By Lisa Caplan on May 24th, 2012 Our Rating: :: FLYING LOWUniversal App - Designed for iPhone and iPad Missile Monkey is a must miss   Developer: Munsey Clan Games Price: $0.99 Version Reviewed: 1.0 Device... | Read more »
Boomlings Review
Boomlings Review By Lisa Caplan on May 24th, 2012 Our Rating: :: FUN FREEBIEUniversal App - Designed for iPhone and iPad Boomlings is a traditional matching puzzle game, with some explosive twists   | Read more »
Dave vs Cave Review
Dave vs Cave Review By Jason Wadsworth on May 24th, 2012 Our Rating: :: WATCH FOR FALLING ROCKSUniversal App - Designed for iPhone and iPad Kid falls down hole, kid gets trapped in cave, kid fights evil rock monsters to escape... | Read more »
Python Pocket Power: Python Bytes 3 – Mo...
Python fans are certain to welcome the best bits from the penultimate season of the BBC sketch comedy in a new iPhone app: Python Bytes 3 – Monty Python Series 3. If you have a flair for the obvious, you’ll correctly assume this is third in a series... | Read more »

Price Scanner via MacPrices.net

13″ 2.8GHz MacBook Pro on sale for $100 off MSRP
Adorama has lowered their price on the 13″ 2.8GHz MacBook Pro to $1399 including free shipping plus NY/NJ sales tax only. Their price is $100 off MSRP, and it’s the lowest price for this model from... Read more
Apple refurbished iPads available starting at $279
 The Apple Store Online has dropped prices on Apple Certified Refurbished iPad 2s and original iPads by as much as $50, with models now starting at $279. Apple’s one-year warranty is included with... Read more
Security Based Portable Operating System, Pocket D...
In conjunction with their consumer technology product, Pocket Desktop, a USB device that offers consumers enhanced security and portability in computing, has announced a new strategic alliance with... Read more
Apple’s Jonathan Ive Knighted By Britain’s Princes...
The BBC reports that Apple Senior Vice President Of Industrial Design Jonathan Ive is now Sir Jonathan Ive, having been knighted by Queen Elizabeth II’s daughter Anne, the Princess Royal (and an iPad... Read more
Microsoft Fixing to release Office for iOS and And...
BGR’s Jonathan S. Geller says BGR has learned from a “reliable source” that Microsoft is planning to release the company’s full Office suite for not only Apple’s iPad, but for Android tablets as well... Read more
Mac mini Server available for $949, $50 off MSRP
Adorama has Mac mini Servers on sale for $949 including free shipping. Their price is $50 off MSRP, and it’s the lowest price available for this model from any Apple Authorized Reseller. NY and NJ... Read more
21″ 2.7GHz iMac on sale for $1399, $100 off full r...
Adorama has the 21″ 2.7GHz iMac on sale for $1399 including free shipping. Their price is $100 off MSRP, and it’s the lowest price for this model from any Apple Authorized Reseller. NY and NJ sales... Read more
iMacs on sale bundled with free upgrade to 8GB RAM
MacConnection has 2011 iMacs in stock today with a free upgrade to 8GB of RAM. Shipping is also free. Their prices represent a $200+ savings over custom 8GB iMacs at The Apple Store: - 21″ 2.5GHz... Read more

Jobs Board

iOS Developer (iPhone and iPad) at Mahal...
Mahalo is looking for talented iOS developers to join its team of highly skilled engineers. Weve already released multiple successful apps in the Apple App Store with well over a million installs... Read more
MAC Imaging/Packaging, Administration.Pr...
Skills: Very good experience in building MAC ( Apple Macintosh ) operating system images. OS imaging Knowledge on ... Knowledge on configuring the LAN and Wireless network on MAC note books Knowledge... Read more
*Apple* Solutions Consultant-Retail Sal...
Requisition Number 15545402 Job title Apple Solutions Consultant-Retail Sales Location Mobile Country United States City Mobile State Alabama Job type Job description Read more
iPhone Developer at Mastech (Los Angeles...
We are currently seeking an Android/ iPhone Developer for our client in the Insurance domain. We value our professionals, providing comprehensive benefits, exciting challenges, and the opportunity... Read more
24 funny 2d Charaters for iPhone game. a...
We are developing an iPhone game and desire to have 24 characters drawn to our specification. Attached is the detailed spec. Desired Skills: Cartoon, Illustration Read more
All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.