External precompiler with Forte C++ 6 up.2

Hi all,
we are evaluating Forte C++ 6 for our project, and we don't know how to precompile ProC/C++ source code. Is posible to define a new external precompiler in Forte?
Thanks for all,
Marc

Ordinarily, the same source files and makefiles that work with C++ 5.0 on Solaris 2.6 should work with C++ 5.3 on Solaris 8.
You didn't say what you did to "adapt the makefile" when changing compilers and OS versions. If the compiler was installed in the default /opt location on each system, we don't think any makefile change would be required. (You might want to make changes for performance or program organization reasons, but we don't think any changes are required just to repeat a working program build.)
What happens if you use the original files that worked with C++ 5.0 on Solaris 2.6?
Are C++ 5.0 and C++ 5.3 are both installed in the same /opt directory? That isn't allowed, and will lead to strange behavior.
Are you continuing a build using the new compiler and OS in a directory containing old binary files or template cache? When changing OS and compilers, it is safest, but not strictly necessary, to rebuild all your binary files. At a minimum, you must delete the old template cache.
Are you still using C++ 5.0 in the build process? If so, you must isolate the use of C++ 5.0 and 5.3. The compilers cannot share a template cache, so you must run compiles in different locations.
Anything beyond these hints will require more support and analysis than we could provide in the Forum. You will probably need to generate a .i file from the compilation and have a support engineer look at it. If you have contract with Sun, please follow the service channel.
- Rose

Similar Messages

  • DDE with Forte/Express

    Subject: DDE with Forte/Express 7/28/97 1:01 PM
    Has anyone tried feeding data into Forte via an external system? The manual has a few pages containing command etc but I would like to find some actual code/examples. We are looking into feeding data from perhaps Reuter into Forte. At this point I am not familiar with DDE nor Reuter. Is there somebody who have experience in this? How much work is involved and can you send me any examples or documentations?
    Internet: [email protected]

    I had a problem similar to this trying to install Express 1.0.c. with Forte
    2.f installed. I had to reinstall E2 and then install Express and then
    reinstall 2F
    It appears to be working now.
    Chris Capadouca,
    Forte First Strike Team
    SHL Systemhouse Inc
    [email protected]
    From: Garry Fong[SMTP:[email protected]]
    Sent: Wednesday, March 26, 1997 11:03 AM
    To: [email protected]
    Subject: Forte express installation
    RE: Forte express v. 1.0.c.2
    Does anyone would give a hand regarding Forte express installation?
    I encount a problem where the setup.exe always returns a message
    --"...Unable to find forte directory, installation is unable to
    continue..",
    despite the fact that I have had a up-and-running versin of Forte.
    In the warming message, it also mentions that they need version of
    2.0.E.2. I only have Forte system software v2.0.F.2. Does it matter? Is it
    because I have a latter version of the software which makes Forte
    express unable to detect?
    Many thks!
    Garry
    [email protected]

  • How do i use an external display with my macbook pro?

    How do I use an external display with a macbook pro?

    Just buy the proper adapter cord, such as MiniDisplay port to HDMI for example.  Plug it in and it will be automatically recognized.  Use System Preferences > Displays to set options.
    The display can Mirror your primary desktop or Extend the Desktop.
    Regards,
    Captfred

  • How do i run an external monitor with my macbook and change settings so that when i close the lid the signal to the monitor is not lost and i can continue using the mac with a mouse and a wireless keyboard?

    How do i run an external monitor with my macbook and change settings so that when i close the lid the signal to the monitor is not lost and i can continue using the mac with a mouse and a wireless keyboard?

    No, nothing will prevent the computer from going to sleep when you close its display except third-party hacks that are designed to do exactly that. I strongly advise against using any of those, as they may interfere with successful entry into clamshell mode (and they carry other downside risks as well). Just wait until the computer is asleep (with its sleep light pulsing), then press any key on the keyboard. It sounds as though your setup is working as it's designed to do.

  • How do I view an external display with my macbook pro closed?

    How do I view an external display with my macbook pro closed?  I am using  a wireless keyboard and trackpad, and I would like to use a larger (Dell) monitor with my Macbook Pro closed.

    Here are the rules for Clamshell mode:
    http://support.apple.com/kb/HT3131

  • How do I use two external monitors with my laptop?

    I have a new Pavilion dm4-301 d cl Entertainment PC.   My OS is Windows 7.   I am used to using two external monitors with a docking station.   This new laptop does not have a docking station.  What do I need to get  to use two external monitors? 
    This question was solved.
    View Solution.

    Certainly not without a dock but even with, HP laptop docks pretty well limit you to one of the external monitor ports, even if there are two on the dock. We have used a device called an Atlona AT-HDPIX2 which is a usb to hdmi adapter. It provides a third monitor capability for a laptop....use the native external monitor port and the internal laptop display and then this device gives a third monitor which is full configurable from the Windows 7 display interface...clone, extend, etc. It allows full HD resolution and is responsive enough for even light gaming.  HP makes no true docking station for your laptop. 

  • How do I write an external class with global constants?

    Hi you all !
    First I want to explain what exactly I want to do:
    I have an application that should run in different resolutions. The app runs fullscreen, and I don't use Layouts or something, just a single Frame with a Graphics Object.
    Now to handle the different resolutions, I want to write an external class with some constants to use. The usage in my main Class should be something like this:
    public
    class blah
    private Constants myConstants;
    public blah()
    if (highResolution)
    myConstants = new hiResConstants();
    else
    myConstants = new loResConstants();
    System.println(String.valueOf(myConstants.SCREEN_WIDTH);
    }or somthing like that. The important fact is that I can choose the constants at runtime and that I am NOT forced to use methods to get the values, cause something like
    System.println(String.valueOf(myConstants.getScreenWidth());sux if you have methods using 5 or more parameters.
    Anybody out there who understood my problem and can help me??? PLEASE?
    best regards,
    Skippy

    First, what's so much worse about
    System.println(myConstants.getScreenWidth());
    than
    System.println(myConstants.ScreenWidth);
    Is the extra five characters really that bad? (Note
    you don't need the String.valueOf method call.)Well actually it was a wrong example I gave here, but it's not the call that makes me shake but the implementation:
    public int screenWidth = 1024;vs.
    public
    int getScreenWidth()
    return 1024;
    }Here it makes a bigger difference, even when you think of managing about 100 or even more constants.
    Second, why do you have methods that take five or more
    parameters!?Well, maybe this example show up what I mean:
    if (cursorIsInArea(100,100,200,200,areaId))
    doSomeStuff();Ok, I could use Rectangles here, but if you think of the timing here (I draw 30 frames / sec and this check comes about every frame or the animation would be choppy) I refuse to create an Object everytime I make this call.
    Btw: Is it worth thinking about the time of execution like I did in this example? OO is a neat thing, but is it that fast?
    I don't think isCursorInArea(new Rectangle(100,100,200,200),areaId) is such a great idea, but I might be wrong.
    It sounds like you're trying to compound a bad design
    with an even worse design for no good reason!Well, I'm not that experienced Java programmer to judge about that, but I (and my profs at university too) found my codes well structured and designed so far.
    Skippy
    PS: the string.valueOf(123) call came from cut&paste:
    system.out.println(string.valueOf(number1)+string.valueOf(number2));Try this without the function.... ;-)

  • How do I format an external HD with Recovery Disk Assistant on?

    Hi,
    I have seen a couple of threads on this, but I'm still not "Compos Mentis" with how to format an external drive with the Recovery Disk Assistant on.
    I have a 320GB which has my recovery disk assistant on - "Don't ask!" - Anyway it goes without saying that I want it all back, but I'll be damned if I can get there. I have managed to view (after a lot of faffing) what I thought was the External Drive, but now realise that it's not...this is what I am now seeing - are these removable via partition (disk0s1 & Recovery HD) as I have been merrily trying to erase them in he belief that they were the external HD and as far as I can see nothing has changed...only my annoyance!
    Anyway in short, I need this
    A) view the external drive and
    B) Format it back to 320GB
    Can anyone spoon feed me a way out?
    Thanks

    I don't understand what you mean by, "how to format an external drive with the Recovery Disk Assistant on."
    You don't need to use the Recovery HD to format an external drive. Just use Disk Utility:
    Drive Preparation
    1. Open Disk Utility in your Utilities folder.
    2. After DU loads select your hard drive (this is the entry with the mfgr.'s ID and size) from the left side list. Click on the Partition tab in the DU main window.
    3. Under the Volume Scheme heading set the number of partitions from the drop down menu to one. Click on the Options button, set the partition scheme to GUID then click on the OK button. Set the format type to Mac OS Extended (Journaled.) Click on the Partition button and wait until the process has completed.
    4. Select the volume you just created (this is the sub-entry under the drive entry) from the left side list. Click on the Erase tab in the DU main window.
    5. Set the format type to Mac OS Extended (Journaled.) Click on the Security button, check the button for Zero Data and click on OK to return to the Erase window.
    6. Click on the Erase button. The format process can take up to several hours depending upon the drive size.
    Steps 4-6 are optional but should be used on a drive that has never been formatted before, if the format type is not Mac OS Extended, if the partition scheme has been changed, or if a different operating system (not OS X) has been installed on the drive.

  • How do I format an external drive with mountain lion?

    How do I format an external drive with mountain lion?

    Applications > Utilities > Disk Utility
    select the external drive in the left pane
    partition and format in the right pane

  • EXACTLY what cable(s) do I need to connect my MacBook Pro (early 2011) to an external display with a 2560x1440 resolution?

    I am trying to connect my MacBook Pro (early 2011 w/ Intel HD 3000/ 384Mb) to an external display with a 2560x1440 resolution. Specifically, what cable/connections do I need to display at this resolution? I cannot get the display to work using a "Thunderbolt to HDMI" or a "Thunderbolt to DVI" connector.  Note:  I used both older and newer (uni-directional) HDMI cables on the first config, and a Dual-link DVI cable on the second config.   Apple specs state this is possible ( support.apple.com/kb/SP619 ), but I am at a loss as to how this can be done.  Thanks in advance for the help!

    You use a Mini DisplayPort to either HDMI or dual-link DVI adapter. If that component doesn't work, something's wrong with either the cable or something else in the connection.
    (112855)

  • Trying to backup one of my iPhoto libraries I keep getting a error message that basically says that the file could not be backed up because there is another file on the external drive with the same name, etc. There is no other file.

    While trying to copy one of my iPhoto libraries to an external hard drive I get the following error message "You can’t copy “iPhoto Library old” because it has the same name as another item on the destination volume, and that volume doesn’t distinguish between upper- and lowercase letters in filenames." There is no other file on the external drive with this name. I have asked this question before and was told that there are some duplicate photos (files) in my library and I needed to go to "show file contents" and look at certain files to find duplicates and delete the duplicates. I did all of this and the library will still not copy and always stops copying in the exact same place on each attempt. Any help would be greatly appreciated.

    You've been deleting your actual Photos.
    Don't change anything in the iPhoto Library Folder via the Finder or any other application. iPhoto depends on the structure as well as the contents of this folder. Moving things, renaming things, deleting them or otherwise making changes will prevent iPhoto from working and could even cause you to damage or lose your photos.
    Best way forward now is to recover the surviving Originals from this library and start over from scratch.
    Regards
    TD

  • Can't boot from external HD with Leopard on MacBook Pro or PowerBook

    I can't boot from an external HD with 10.5.5 Leopard on either my MacBook Pro or my PowerBook G4. I had a PowerBook G4 from which I could boot from either an external FW400 drive or an external FW800 drive. At some point, I stopped being able to boot from any HD, but I'm not sure if it was after upgrading to Leopard or not? Recently I just bought a MacBook Pro 15" and transferred all my files over from the PowerBook to the MacBook Pro during the install. However, even with the new computer, still cannot boot from an external drive. I have Leopard 10.5.5 running on both the external HD and the internal HD.
    Is this a common problem? Anybody know how to fix it?
    Thanks!

    That probably wasn't very clear was it? I have several ext. HD's, some with bootable systems and some just backups. One bootable disk was made with CopyCloner and the other was a clean format and only had an original install of the OS just to use for an emergency boot. They both booted just fine. Then at some point, they stopped being bootable. I have used the Control Panel "Startup" and also used the Option key boot and picked the bootable disk. Neither one boots anymore. It started doing this on the old PowerBook and then also refused to boot on the MacBook Pro. This is not the problem with the HD since it happens with any bootable HD. Something is going on at the system level and it was transfered from the PowerBook to the MacBook.
    Thanks,
    Bill

  • I have an old external drive with a firewall connection-How do I use this on my Mac with it's USB3 ports?

    I have an old external drive with a firewall connection-How do I use this on my Mac with it's USB3 ports?

    Does your Mac have ThunderBolt ports?
    There are ThunderBolt to FireWire adapters.
    As far as I know there are no FireWire to USB 3 adapters.
    Allan

  • Is there a way to run a external ssd with my mid 2011 iMac hdd in a raid configuration and basically have a fusion drive

    is there a way to run a external ssd with my mid 2011 iMac hdd in a raid configuration and basically have a fusion drive

    A Fusion Drive is not a RAID; it's a CoreStorage logical volume group. While it's technically possible to do as you suggest, there would be little or no benefit from it.

  • Can I use a Power PC non intel Mac Mini as an external HD with my iMac 3.06

    Can I use a Power PC non intel Mac Mini as an external HD with my iMac 3.06 Intel Core Duo
    I can't figure out how to get this to work. Is it possible?

    WildBull wrote:
    Will it work if I connect via usb instead of firewire?
    No. There is no "USB Target Disk Mode".
    Just so we're clear, when you start your Mac mini in FireWire Target Disk Mode (TDM - holding T on startup), do you see a FireWire icon on the Mac mini's display? IIRC, it's not required that the Mac mini be connected to a display for TDM, but it would help diagnose whether or not the mini is actually starting in this mode.

Maybe you are looking for

  • Error: java.lang.NoClassDefFoundError.... what do I do?

    I'm kinda new to this.... Everything works fine on my Desktop machine (XP Pro), but I've tried twice now to install the SDK (1.5.0_05) on my laptop (XP Home) and here's the problem. When I create a simple classs (see example below) and compile it, ev

  • I am uploading a audio book. How do I get them to post in order in my library?

    I have an audio book that has over 30 cd's to the set.  My first problem is that even though I loaded them to my libary in order they did not post that way.  How can I get them to sort so that all of my cd's are in order for this book?  I figure that

  • 3 or 4? Graphics cards with MPE acceleration!

    Being an experimenter with my new Asus X99-E WS motherboard after running about 50 runs of PPBM8 and having four x16 slots which theoretically can run simultaneously at 16 lanes, today I could not resist running a third GTX graphics card.  In slot 1,

  • Extracting the 'Decription'  filed in CRM BI

    DEAR FRIENDS / EXPERTS .. In CRM i have a filed called NOTES , actually it is not just a filed and it is a desciption filed which contain lot of sentences that it can hold the max of 30 to 40 lines .and after saving it in CRM , in display mode for th

  • Epson R220 "CD/DVD guide open"

    I'm trying to print onto a CD with an Epson R220... After the first lot of problems I had with the Print CD program (Which doesn't work), I have found a template for Photoshop, in which I can add graphics etc to and supposedly print to a CD. I select