HOW TO INSTALL GCC 3.4.6 IN A SOLARIS10 SERVER

I am trying to install gcc-3.4.6 into a Solaris 10 Server,
I always get a problem :
after doing:
mkdir objdir
cd objdir
../configure with-as=/usr/ccs/bin/as with-ld=/usr/ccs/bin/ld
*** The command 'cc -o conftest -g conftest.c' failed.
*** You must set the enviroment variable CC to a working compiler.
�what can I do and how?
thanks

I am trying to install gcc-3.4.6 into a Solaris 10 Server,
I always get a problem :
after doing:
mkdir objdir
cd objdir
../configure with-as=/usr/ccs/bin/as with-ld=/usr/ccs/bin/ld
*** The command 'cc -o conftest -g conftest.c' failed.
*** You must set the enviroment variable CC to a working compiler.
�what can I do and how?
thanks

Similar Messages

  • How to install gcc compiler on mac

    how to install gcc compiler om macair( 2013) ?
        THANKS IN ADVANCE !!!

    In OS X, GCC is part of Xcode's command tools, so first, open the Mac App Store and install Xcode for free.
    Then, open Xcode, go to Xcode menu (on the menu bar) > Preferences > Downloads, and install Command Line Tools. You will get commands like gcc, make, purge...

  • How to Install Coldfusion 8 64-bit on Small Business Server 2008 64-bit

    How to Install Coldfusion 8 64-bit on Small Business Server 2008 64-bit
    I ran Coldfusion 8 on SBS 2003 Premium for 6 months with no problems.  When we finally decided to cut over to SBS 2008, that’s when everything went to hell.  I tried for weeks to get Coldfusion 8 to install properly on the new SBS 2008 64-bit box.  During the course which, I found bits and pieces of information for Vista 64-bit and Windows Server 2008 64-bit installations.  There are some distinct differences, however, with SBS 2008 since it runs core Web applications like OWA, RWW and Companyweb.  After countless unsuccessful attempts, one of which completed corrupted the box, I found the solution.
    I have attempted in this white paper to detail the steps to assist others who may be in a similar situation.  I don’t make any warranty for the information, but so long as you follow the steps carefully you should be fine.  BTW, for those of you who say Adobe offers free technical support for licensed users, that’s not entirely true.  Like I said, I purchased CF8 and originally installed it on an SBS 2003 Premium box.  After we cut over to SBS 2008 and encountered problems, Adobe wouldn’t provide any technical support without charging.  Moreover, based on my initial conversations with Adobe’s technical team, no one seemed to know much about running 64-bit on SBS.
    From my understanding, only two versions of Coldfusion 8 can be installed in 64-bit: Enterprise and Developer.  The “normal” install (which I paid a grand for) can only be deployed in 32-bit mode – gee, THANKS Adobe!  By the way, in Developer mode only two distinct IPs can access the site in addition to the localhost.  Any additional IPs will result in a CFML error message stating that the maximum number of IPs have been exceeded.  At any rate, take your time and follow the steps to achieve a successful installation. 
    PRE-INSTALLATION TASKS
    Back Up SBS
    It’s always a good practice to backup your server before deploying any kind of major system changes.  Although this step is optional, I recommend it in case you need to restore your server for any reason.  Bear in mind, if your system ever gets totally corrupted, you cannot restore back from the twice daily incremental backup images alone.  You will need a full backup with system recovery information to restore.  Here are the basic steps:
    Click: Start > Programs > Administrative Tools.  Right-click “Windows Server Backup” and choose “Run as administrator”.
    Click “Backup Once” under Actions in the right-hand pane.
    Choose the “Different Options” radio button under Backup Options.
    Choose the “Custom” radio button.  What we’re primarily interested in here is backing up the OS – not your data partitions or attached drives.
    Select the “SYSTEM (C)” checkbox, uncheck any others.  Also, ensure that the “Enable system recovery” checkbox is selected before continuing on.
    Under ‘Specify Destination Type’, I usually select the “Local drives” radio button and point it to a Terrabyte USB drive I use for backups.  You can point this to a tape drive, or select the “Remote shared folder” radio button if you map to a UNC path to store your backup images.  Just remember, make sure that whatever path you select can readily be accessed in the event of an emergency.  Also, make sure the “Verify after writing (recommended)” checkbox is selected.
    Under ‘Specified Advanced Option’, I usually select the “VSS full backup” radio button instead of the default since I don’t use a 3rd party backup product.  If like me you rely solely on SBS for your backups, choose the full backup option.
    Confirm everything and click “Backup”.  This process may take several hours depending on the size of your system.
    Verify ISAPI Filters:
    In IIS Manager, double-click the server instance in the left-hand pane.
    In the center pane under IIS, double click the “Modules” icon to verify that the ISAPI native modules are already installed for IIS.  If it’s set up correctly you should see two entries:
    IsapiFilterModule              %windir%\System32\inetsrv\filter.dll
    IsapiModule                        %windir%\System32\inetsrv\isapi.dll
    If either of these modules are missing, you will need to re-install these (google for a solution).
    Set Up Development Environment
    Create a directory for your CFML files outside of the default Windows location (e.g., default is usually C:\inetpub\wwwroot\).  For the purpose of our install, I created a directory on a separate disk called: D:\DEV.
    Copy and paste your CFML files and directories into the new DEV root Web directory.  This will eventually be the directory where the Coldfusion installer places the CFIDE and CFDOCS folders. 
    Open IIS Manager and double-click the server instance in the left hand pane.  Expand the “Sites” folder.  Right-click the Sites folder and select “Add Web Site”.
    Enter a name in the “Site Name” box (e.g., “test-site”).  You will notice that the system will automatically create a corresponding Application Pool with the same name.  NOTE: this is important to prevent conflicts between the DefaultAppPool (needed for SBS Web apps like OWA, RWW, etc.) and the application pool needed for Coldfusion to function properly in SBS 2008.
    Point the “Physical Path” to the directory you created in step #1 above (e.g., “D:\DEV”).
    Don’t worry about testing the connection.  If you click “Test Settings” you may receive a warning that IIS cannot verify access to path (D:\DEV).  Don’t worry about this for the time being.
    Under “Host name”, enter a DNS path to your site (e.g., “dev.test-site.com”).  Click “OK”.
    Configure Application Pools for Installation
    In IIS Manager, double-click the server instance in the left-hand pane.  Click on “Application Pools” to display the list of server application pools in the center pane.
    In the “Actions” pane on the right-hand side, click “Set Application Pool Defaults”.
    Change “Enable 32-Bit Applications” - the second item from the top – from “False” to “True”, and then click “OK”.  NOTE: if you skip this step, Coldfusion will not properly create the required mappings during the install. We will change this setting back after the installation completes – more on this later.
    Modify the application.host.config File for 64-Bitness
    Click: Start > Programs > Accessories.  Right-click “Notepad” and choose “Run as administrator”.
    Open the config file from within Notepad – default location: C:\Windows\System32\inetsrv\config\applicationHost.config
    Do a search and change this one line from:
    <add name="PasswordExpiryModule" image="C:\Windows\system32\RpcProxy\RpcProxy.dll" />
    To this:
    <add name="PasswordExpiryModule" image="C:\Windows\system32\RpcProxy\RpcProxy.dll" preCondition="bitness64" />
    Restart the IIS Admin service.
    Set HTTP Compression
    According to some threads I read, the http compression module can cause errors if you don’t disable it globally. To remedy this, perform the following:
    Click: Start > Programs > Accessories.  Right-click “Command Prompt” and choose “Run as administrator”.
    At the command prompt, change directory to intetsrv by typing: cd inetsrv
    Run the following command:
    C:\Windows\system32\inetsrv>appcmd.exe set config -section:system.webServer/httpCompression /-[name='xpress']
    This will turn off HTTP compression for all sites in IIS.
    In IIS Manager, double-click the server instance in the left-hand pane.  Double-click the “Compression” icon in the IIS section of the center pane.
    Uncheck all of the boxes, then click the “Apply” button under Actions in the right-hand pane.
    Recheck all of the boxes, then click the “Apply” button under Actions in the right-hand pane.
    Restart the IIS Admin service.  This should enable compression and coldfusion to work at the same time.
    NOTE: if for some reason you need to reverse this, run the following command from the command prompt:
    C:\Windows\system32\inetsrv\appcmd.exe set config -section:system.webServer/httpCompression /+[name='xpress',doStaticCompression='false',dll='%windir%\system32\inetsrv\suscomp.dll']
    INSTALLATION TASKS
    Download the 64-bit installation package from Adobe – filename: coldfusion-801-wind64.exe.
    Right-click the file and select “Run as administrator”.
    Accept the terms of the License Agreement.
    If you have an Enterprise license, enter it.  For our purposes, just click the “Developer Edition” checkbox.
    Select “Server configuration” – the default radio button.
    I deselected all subcomponents and can’t guarantee that you’ll arrive at the same results if you select additional items like “.NET Integrated Services”.  It should be fine, particularly if you install documentation.  My preference was to keep the install as plain vanilla as possible.
    Select the directory path for Coldfusion to install into – default is :C\Coldfusion
    THE NEXT TWO STEPS ARE CRITICAL TO YOUR SUCCESS.  Unselect “All IIS Websites” and select the “Configure specific IIS Website or another web server” radio button.  Click “Add”, and then select your test Web site (e.g., “test-site”) under “IIS Web Site”.  Hit “OK”.
    Do NOT use the default directory path for the CF Administrator location (e.g., default path: “C:\inetpub\wwwroot”).  Instead, point the installer to your new DEV root Web directory (e.g., “D:\DEV”).  The bottom line, you want the installer to place the CFIDE directory and files within this folder, alongside your other CFML files and folders.
    Enter an Administrator password.
    Choose to Enable RDS, or not.  I enable this by preference but it is not required.  This allows you to make updates to files using a CFML editor directly vs. having to move/FTP the files over if you’re working remotely.  Opponents to this argue that it’s potentially less secure, but for a lower environment I don’t see this as a major concern.
    Confirm everything to kick off the install.
    If all goes well you should see a message at the end stating that the install was successful.  I recommend you uncheck the box that asks you to open the CF Administrator in the default Web browser after the install.  NOTE: we will open it a different way during the post-installation tasks.  The worst thing that will happen if you forget to uncheck the box is that you might receive an error that the command prompt hung – not a big deal – just close it and move on to the next (final) steps.
    POST-INSTALLATION TASKS
    Verify CF Installation:
    The installation will create a new folder in your program group: Start > Programs > Adobe > Coldfusion 8.  The default “Administrator” link will not work because it points to the wrong path: http://127.0.0.1/CFIDE/administrator/index.cfm. The “127.0.0.1” or “localhost” path as you may recall in IIS, points by default to the “C:\inetpub\wwwroot” directory.  Our CFIDE files, however, are located within: D:\DEV.
    To bring up the CF Administrator logon page, open up a Web browser and replace the “http://127.0.0.1” part of the path with the DNS path name to your CF environment (e.g., http://dev.test-site.com/CFIDE/administrator/index.cfm).
    This should bring up the Coldfusion Administrator Login screen.  Enter in the Administrator password you created during the install to log in and configure your application server.
    Verify that your test-site renders correctly by typing in your test URL into a Web browser (e.g., http://dev.test-site.com).
    Fix Application Pool Defaults to Re-enable SBS Web Applications:
    At this point, Coldfusion Administrator and your test CMFL Web site should be working properly.  The problem is, default SBS Web applications like OWA, RWW and Companyweb will throw errors and fail to start.  Fortunately, this is easily remedied by performing the following steps:
    In IIS Manager, double-click the server instance in the left-hand pane.  Click on “Application Pools” to display the list of server application pools in the center pane.
    In the “Actions” pane on the right-hand side, click “Set Application Pool Defaults”.
    Change “Enable 32-Bit Applications” - the second item from the top – from “True” to “False” this time.  This should re-enable the SBS applications, which would otherwise result in 500 errors (e.g., OWA, RWW, Companyweb, etc.).  There is no need to restart IIS.
    Open a Web browser and test that you can once again connect to OWA, RWW and Companyweb successfully.
    In IIS click to highlight the application pool for your new site (e.g., “test-site”).  In the right-hand pane, click “Advanced Settings”.  Ensure that “Enable 32-Bit Applications” – second item from the top – is set to “True” for this application pool specifically.
    Lastly, jump up and down for joy!  Hopefully now, everything is working.  Best of luck!! ..Paul D (MCP).

    First, it would be a good idea for you to specify what distro of Linux you're using, as not all are supported by Adobe.
    Second, this is probably your problem right here:
    http://askubuntu.com/questions/40416/why-is-lib-libc-so-6-missing
    In a nutshell, CF expects the 32-bit version of libc.so.6 to be in /lib, but it's probably not. You might be able to modify the installer to point to the correct location for that file, or you might be able to create a symlink to the file - but as the above link describes, creating a symlink might have negative consequences.
    As for installing CF 8 64-bit, that's only available with Enterprise, not Standard. If you want CF Standard 64-bit, you need to upgrade to CF 9.
    Dave Watts, CTO, Fig Leaf Software

  • How to install GCC 3.3 and Berkeley DB ?

    Hi to all
    I am doing a project written in C. It involves the use of BerkeleyDB database too.
    Tthe problem is that the project compiles successfully on GCC 3.3 but on GCC 4.3 its gives error due to strict checking.
    Kindly tell me how can I install GCC 3.3 on archlinux.
    Also how can I install Berkeley DB (including development package) on archlinux with all the header files and configure it.
    thanks to all of you
    regards
    visio159

    Thanks guys I am loving Archlinux, the speed and control is amazing.
    I installed GCC 3.3 and db.h was already in /usr/include/db.h
    but when I compiled the code (MAIN.c) it gave these errors in db.h ??? I don't know what to do now, db.h itself is reflecting errors..huh.
    As you can see the starting lines are directing towards db.h as having errors
    [noface@myhost PROJ]$ gcc-3.3 MAIN.c -ldb
    gcc-3.3: ldb: No such file or directory
    In file included from MAIN.c:3:
    /usr/include/db.h:1201: error: syntax error before "u_int"
    /usr/include/db.h:1206: error: syntax error before '}' token
    /usr/include/db.h:1544: error: syntax error before "u_int"
    /usr/include/db.h:1660: error: `close' redeclared as different kind of symbol
    /usr/include/unistd.h:320: error: previous declaration of `close'
    /usr/include/db.h:1702: error: `remove' redeclared as different kind of symbol
    /usr/include/stdio.h:155: error: previous declaration of `remove'
    /usr/include/db.h:1703: error: `rename' redeclared as different kind of symbol
    /usr/include/stdio.h:157: error: previous declaration of `rename'
    /usr/include/db.h:1740: error: `stat' redeclared as different kind of symbol
    /usr/include/sys/stat.h:210: error: previous declaration of `stat'
    /usr/include/db.h:1742: error: `sync' redeclared as different kind of symbol
    /usr/include/unistd.h:933: error: previous declaration of `sync'
    /usr/include/db.h:1743: error: `truncate' redeclared as different kind of symbol
    /usr/include/unistd.h:949: error: previous declaration of `truncate'
    /usr/include/db.h:1809: error: syntax error before '}' token
    /usr/include/db.h:1916: error: syntax error before "u_int"
    /usr/include/db.h:1923: error: conflicting types for `close'
    /usr/include/db.h:1660: error: previous declaration of `close'
    /usr/include/db.h:1925: error: conflicting types for `del'
    /usr/include/db.h:1664: error: previous declaration of `del'
    /usr/include/db.h:1926: error: `dup' redeclared as different kind of symbol
    /usr/include/unistd.h:490: error: previous declaration of `dup'
    /usr/include/db.h:1927: error: conflicting types for `get'
    /usr/include/db.h:1669: error: previous declaration of `get'
    /usr/include/db.h:1928: error: conflicting types for `get_priority'
    /usr/include/db.h:1687: error: previous declaration of `get_priority'
    /usr/include/db.h:1929: error: conflicting types for `pget'
    /usr/include/db.h:1700: error: previous declaration of `pget'
    /usr/include/db.h:1930: error: conflicting types for `put'
    /usr/include/db.h:1701: error: previous declaration of `put'
    /usr/include/db.h:1931: error: conflicting types for `set_priority'
    /usr/include/db.h:1734: error: previous declaration of `set_priority'
    /usr/include/db.h:1975: error: syntax error before '}' token
    /usr/include/db.h:2126: error: syntax error before "u_int"
    /usr/include/db.h:2145: error: syntax error before "mp_ncache"
    /usr/include/db.h:2211: error: syntax error before "cl_id"
    /usr/include/db.h:2267: error: syntax error before '*' token
    /usr/include/db.h:2282: error: conflicting types for `close'
    /usr/include/db.h:1923: error: previous declaration of `close'
    /usr/include/db.h:2287: error: conflicting types for `err'
    /usr/include/db.h:1665: error: previous declaration of `err'
    /usr/include/db.h:2288: error: conflicting types for `errx'
    /usr/include/db.h:1666: error: previous declaration of `errx'
    /usr/include/db.h:2291: error: conflicting types for `get_cachesize'
    /usr/include/db.h:1672: error: previous declaration of `get_cachesize'
    /usr/include/db.h:2294: error: conflicting types for `get_encrypt_flags'
    /usr/include/db.h:1674: error: previous declaration of `get_encrypt_flags'
    /usr/include/db.h:2295: error: conflicting types for `get_errfile'
    /usr/include/db.h:1676: error: previous declaration of `get_errfile'
    /usr/include/db.h:2296: error: conflicting types for `get_errpfx'
    /usr/include/db.h:1677: error: previous declaration of `get_errpfx'
    /usr/include/db.h:2297: error: conflicting types for `get_flags'
    /usr/include/db.h:1678: error: previous declaration of `get_flags'
    /usr/include/db.h:2312: error: conflicting types for `get_msgfile'
    /usr/include/db.h:1683: error: previous declaration of `get_msgfile'
    /usr/include/db.h:2313: error: conflicting types for `get_open_flags'
    /usr/include/db.h:1685: error: previous declaration of `get_open_flags'
    /usr/include/db.h:2364: error: conflicting types for `open'
    /usr/include/db.h:1698: error: previous declaration of `open'
    /usr/include/db.h:2365: error: conflicting types for `remove'
    /usr/include/db.h:1702: error: previous declaration of `remove'
    /usr/include/db.h:2387: error: syntax error before "u_int"
    /usr/include/db.h:2391: error: syntax error before "u_int"
    /usr/include/db.h:2393: error: syntax error before "u_int"
    /usr/include/db.h:2398: error: conflicting types for `set_alloc'
    /usr/include/db.h:1705: error: previous declaration of `set_alloc'
    /usr/include/db.h:2402: error: conflicting types for `set_cachesize'
    /usr/include/db.h:1713: error: previous declaration of `set_cachesize'
    /usr/include/db.h:2405: error: conflicting types for `set_encrypt'
    /usr/include/db.h:1716: error: previous declaration of `set_encrypt'
    /usr/include/db.h:2406: error: conflicting types for `set_errcall'
    /usr/include/db.h:1717: error: previous declaration of `set_errcall'
    /usr/include/db.h:2408: error: conflicting types for `set_errfile'
    /usr/include/db.h:1719: error: previous declaration of `set_errfile'
    /usr/include/db.h:2409: error: conflicting types for `set_errpfx'
    /usr/include/db.h:1720: error: previous declaration of `set_errpfx'
    /usr/include/db.h:2412: error: conflicting types for `set_feedback'
    /usr/include/db.h:1721: error: previous declaration of `set_feedback'
    /usr/include/db.h:2413: error: conflicting types for `set_flags'
    /usr/include/db.h:1722: error: previous declaration of `set_flags'
    /usr/include/db.h:2431: error: conflicting types for `set_msgcall'
    /usr/include/db.h:1730: error: previous declaration of `set_msgcall'
    /usr/include/db.h:2432: error: conflicting types for `set_msgfile'
    /usr/include/db.h:1731: error: previous declaration of `set_msgfile'
    /usr/include/db.h:2433: error: conflicting types for `set_paniccall'
    /usr/include/db.h:1733: error: previous declaration of `set_paniccall'
    /usr/include/db.h:2448: error: conflicting types for `stat_print'
    /usr/include/db.h:1741: error: previous declaration of `stat_print'
    /usr/include/db.h:2510: error: syntax error before '}' token
    /usr/include/db.h:2632: error: syntax error before "u_long"
    In file included from MAIN.c:6:
    /usr/include/fcntl.h:85: error: `open' redeclared as different kind of symbol
    /usr/include/db.h:2364: error: previous declaration of `open'
    In file included from /media/evt/PROJ/PROJ/include/makeTreeDB.h:2,
    from MAIN.c:19:
    /media/evt/PROJ/PROJ/include/berkeleyDB.h: In function `removeDB':
    /media/evt/PROJ/PROJ/include/berkeleyDB.h:36: warning: passing arg 1 of pointer to function makes pointer from integer without a cast
    /media/evt/PROJ/PROJ/include/berkeleyDB.h:36: error: too few arguments to function
    /media/evt/PROJ/PROJ/include/berkeleyDB.h:37: warning: passing arg 1 of pointer to function from incompatible pointer type
    /media/evt/PROJ/PROJ/include/berkeleyDB.h:37: error: too few arguments to function
    /media/evt/PROJ/PROJ/include/berkeleyDB.h: In function `addNodeToBerkeleyDB':
    /media/evt/PROJ/PROJ/include/berkeleyDB.h:64: error: dereferencing pointer to incomplete type
    /media/evt/PROJ/PROJ/include/berkeleyDB.h:84: error: dereferencing pointer to incomplete type
    /media/evt/PROJ/PROJ/include/berkeleyDB.h:96: error: dereferencing pointer to incomplete type
    In file included from MAIN.c:21:
    /media/evt/PROJ/PROJ/include/scanProc.h: In function `scanProc':
    /media/evt/PROJ/PROJ/include/scanProc.h:92: warning: passing arg 1 of pointer to function from incompatible pointer type
    /media/evt/PROJ/PROJ/include/scanProc.h:92: warning: passing arg 2 of pointer to function from incompatible pointer type
    /media/evt/PROJ/PROJ/include/scanProc.h:92: error: too few arguments to function
    /media/evt/PROJ/PROJ/include/scanProc.h: In function `showSummary':
    /media/evt/PROJ/PROJ/include/scanProc.h:235: warning: passing arg 1 of pointer to function from incompatible pointer type
    /media/evt/PROJ/PROJ/include/scanProc.h:235: warning: passing arg 2 of pointer to function from incompatible pointer type
    /media/evt/PROJ/PROJ/include/scanProc.h:235: error: too few arguments to function
    In file included from MAIN.c:22:
    /media/evt/PROJ/PROJ/include/bigProcessing.h: In function `bigProcessing':
    /media/evt/PROJ/PROJ/include/bigProcessing.h:58: error: dereferencing pointer to incomplete type
    /media/evt/PROJ/PROJ/include/bigProcessing.h:95: error: dereferencing pointer to incomplete type
    /media/evt/PROJ/PROJ/include/bigProcessing.h: In function `scanFS_DB':
    /media/evt/PROJ/PROJ/include/bigProcessing.h:158: error: dereferencing pointer to incomplete type
    /media/evt/PROJ/PROJ/include/bigProcessing.h:178: error: dereferencing pointer to incomplete type
    /media/evt/PROJ/PROJ/include/bigProcessing.h:206: error: dereferencing pointer to incomplete type
    /media/evt/PROJ/PROJ/include/bigProcessing.h:211: error: dereferencing pointer to incomplete type
    /media/evt/PROJ/PROJ/include/bigProcessing.h:219: error: dereferencing pointer to incomplete type
    /media/evt/PROJ/PROJ/include/bigProcessing.h:224: error: dereferencing pointer to incomplete type

  • How to install GCC and DKMS on Oracle Linux?

    Hello,
    I am a newbie to Oracle Linux. I installed Oracle Linux on a virtual machine using Oracle VirtualBox. Now I need to install the packages DKMS and GCC in order to share drives between the host and the ghost.
    Here is what is happening:
    # yum install dkms
    Setting up Install Process
    Setting up repositories
    No Repositories Available to Set Up
    Reading repository metadata in from local files
    Parsing paskage install arguments
    No Match for afgument: dkms
    Nothing to do
    Please, advice what to do.
    Thanks in advance.

    Here is what you need to install under Oracle Linux or Red Hat Enterprise Linux to install the VirtualBox Guest Additions:
    <pre>yum -y install gcc kernel-uek-devel-$(uname -r)</pre>
    The packages are available from the Oracle public yum repository as already mentioned, or on the installation DVD in the server directory.

  • How to install GCC or use Forte C++

    Hello!
    I want to compile the Wine (Windows Emulator) for Solaris 9 (x86). One way is that I install gcc 3.2, and the other is to use the FORTE C++ compiler provided by Sun Microsystems. Now, I have downloaded the gcc-3.2 source code from the sunfreeware.com. But I am unable to install the gcc compiler.
    Please guide me (or any reference) to some easy installation methods for gcc, or else, tell me the way, I could use the Forte C++ compilers, provided by SUN. I am unable to find a way to use the Forte.

    Hello!
    I want to compile the Wine (Windows Emulator) for Solaris 9 (x86). One way is that I install gcc 3.2, and the other is to use the FORTE C++ compiler provided by Sun Microsystems. Now, I have downloaded the gcc-3.2 source code from the sunfreeware.com. But I am unable to install the gcc compiler.
    Please guide me (or any reference) to some easy installation methods for gcc, or else, tell me the way, I could use the Forte C++ compilers, provided by SUN. I am unable to find a way to use the Forte.

  • How to install gcc 4.4+ on open solaris ?

    Is it possible to get latest gcc on open solaris ?
    I installed gcc from repository but it is version 3.4.3.

    OpenSolaris 2009.06 for x86(amd64) contains gcc 4.3.2 in opensolaris repository.
    In order to install it you can click on this link: [http://pkg.opensolaris.org/release/p5i/0/developer%2Fgcc%2Fgcc-432.p5i|http://pkg.opensolaris.org/release/p5i/0/developer%2Fgcc%2Fgcc-432.p5i]

  • How to install a plugin on 64 bits windows 2008 server?

    From the developer forum, I found a description which told me how to install a plugin on windows series system, but I only succeded intalling the plugin on 32 bits windows xp, couldn't install the plugin on 64 bits windows 2008 server. Any ideas or advices, men of genius? Thanks :-)

    Please check if all your plugins are up-to-date. To do this, go to the [http://mozilla.com/plugincheck Mozilla Plugin Check site].
    Once you're there, the site will check if all your plugins have the latest versions.
    If you see plugins in the list that have a yellow ''Update'' button or a red ''Update now'' button, please update these immediately.
    To do so, please click each red or yellow button. Then you should see a site that allows you to download the latest version. Double-click the downloaded file to start the installation and follow the steps mentioned in the installation procedure.

  • How to install oracle 11g and 10g on same linux server.

    how can i install oracle 10g and 11g on same linux server ????
    10g database is already installed , i want to installed 11g on the same machine. How can i do this???

    Hi;
    how can i install oracle 10g and 11g on same linux server ????
    10g database is already installed , i want to installed 11g on the same machine. How can i do this???You may go wiht different mount point like to create /oracle11g and /oracle10g and you can choose related path for your installation.
    Please read:
    Managing multiple oracle home
    http://docs.oracle.com/cd/B12037_01/em.101/b12140/3_oui_oracle_homes.htm#i1005615
    http://docs.oracle.com/cd/B12037_01/em.101/b12140/3_oui_oracle_homes.htm
    Regard
    Helios

  • How to install the SAPRouter service on a Windows 2003 Server?

    Hi, can someone please either provide me with the instructions or point me to a URL or a SAP note that describes how to install the SAPRouter service on a Windows 2003 32-bit server?
    This is fairly urgent so your assistance here would be much appreciated.
    Many thanks
    Sharon

    I tried this and I get the following error...
    'ntscmgr' is not recognized as an internal or external command, operable program or batch file.
    Any further suggestions?
    S

  • How to install forms 6i runtime using windows Systems Management Server?

    Hi,
    Our clinents are using oracle forms 5 application and we want to upgrade to forms 6i ( client /server ).
    How to install oracle forms 6i and reports 6i runtime in multiple client machines
    using windows systems management server instead of installing one by one manually.
    Regards

    Here is a quick summary on why this works...
    The Problem:
    The issue relies with the method and logic that MDT’s scripts use to query and validate that the proper disks, partitions and storage space reside before starting the installation of Windows.
    Essentially what you have configured in the Task Sequence and the UNATTEND.xml is analyzed by the MDT scripts then a validation is completed against the hardware in which you wish to install Windows
    on and if there are any errors you will be prompted with MDT Error or Warning dialogs.
    The problem is that the MDT scripts use WMI to query the hard disk, partition and free space requirements for Windows, but in the case of using GPT disk, the 2nd partition (MSR) that you have to create
    is hidden. The class that WMI uses for its query can’t see the MSR partition so instead of 3 partitions, it returns 2 in the query results; hence why DISK 0 PARTITION 3 doesn’t work as mentioned earlier when configured in the MDT Task Sequence.
    Although the above still confuses me as to why it works with DISK 0 PARTITION 2 since the WMI query results return PARTITION IDs 0 and 1 when it should return 1 and 2…
    The Windows Pre-Installation Environment however does see all 3 partitions correctly and we tried configuring in our Task Sequence to install Windows to DISK 0 and PARTITION 2 and in the UNATTEND.xml
    file to install Windows to DISK 0 and PARTITION 3 but due to timing issues of the way Windows installs with MDT, did this not work for us.

  • How to install Studio, DataTools, SSIS and SSAS to SQL Server 2014 RTM DataWarehousing

    I have fresh installation of VM. Plan is to build DW and SSAS OLAP Cube.
    How to install needed services and tools as they are not installed as default?
    If I click SQL Server Installation Center and choose Installation and New SQL Server, I'm guided to choose file, but don't know where to find.
    Kenny_I

    Hi Kenny_I,
    According to your description, you want to add SQL Srever Data Tools, SQL Server Integration Services and SQL Server Analysis Services to your existing installation, so you click SQL Server Installation Center and choose Installation and New SQL Server,
    nad now you are guided to choose file, right?
    In this case, you need to choose the folder which contains SQL Server installation media. I have tested it on my local environment, after select correct folder and click "Ok" button, everything works fine.
    Reference.
    http://msdn.microsoft.com/en-us/library/ms143219.aspx
    If you have any questions, please feel free to ask.
    Regards,
    Charlie Liao
    If you have any feedback on our support, please click
    here
    Charlie Liao
    TechNet Community Support

  • How to Install R/3 and CRM on the same Server?

    Hi All,
    I would like to install R/3 and CRM on the same server (as the load is less). I know how to install them seperately.
    I would like to have some instructions how to have them installed on the same server.
    Thanks in advance.
    Regards,
    Vijay

    As Sunil explained - MCOD (or) you can think to have 2 differnt DB SID's as weel 2 different SAP SID's. By default 1st Installation takes Listener Name as LISTENER & port 1527 when you are doing second Oracle installation use another lister name as LISTENER002 & give port 1526 ( for example).
    MCOD will be the best option to unplug from oracle instalation requirement but - think of future plans. even it can be any size business don't think to do MCOD with SAP Business System like R3 .
    Becuase qwe may have different requirements from the Business / functionla Team for refreshing / building the development system with a copy of production system - don;t get confused there are Techniques for Refreshing a Development Instance with production system also.
    Any how you have to take decission to go with MCOD (or) not . I also request SUNIL to comment on MCOD installations  with R3 system .
    But  I beleive Sascha Version is wrong - i can have multiple application servers of differnet products on single Box if my OS supports.
    as application servers will have 3 individual mount point which points to different system
    <Central Instance>:/sapmnt/<SID>/global
    <Central Instance>:/sapmnt/<SID>/prfoile
    <Central Instance>:/sapmnt/<SID>/exe
    each SID  NFS mount point can point to different sever & i can multiple application server of differnt SAP Products on 1 BOX.
    Trans directory is problem - but it does not require either for installation (or) for runningAS instance .

  • How to install Oracle10gr2 into the IBM AIX 5.3 Server

    Hi ALL,
    Could you please give me instructions how to install Oracle10gr2 into IBM AIX 5.3 Server. Otherwise if any installation doucment please provide
    Thank you all
    Kishore

    Hi Kishore!
    Apart from posting an AIX question in a Linux forum it is not completely clear what your problem is.
    Have you read the http://www.oracle.com/pls/db102/to_toc?pathname=install.102%2Fb19075%2Ftoc.htm&remark=portal+%28Installation%29
    Installation Guide?
    What are the problems you encounter?
    cu
    Andreas

  • How to install multiple E-Business Suite in a single server?

    Hello,
    I read somewhere that we can install multiple E-Business Suite in a single server as long as the storage is enough, is it true? If yes do any of you can give me the steps to install it or refer me to a link? I'd searched here but couldn't find it, hope that I didn't miss something. What I want to do is install Vision database and another one is fresh install for testing, both in a single server. There will be about 20 people accessing that system. What kind of hardware must I use? Thanks.

    If you want to run 2 instances concurrently, It would be safe to assume you want 8 GB of RAM plus enough storage to host both instances, backups, archive logs, patches etc. For CPU, most entry level servers can be single, dual or quad socket, or CPU socket. Most CPUs are dual core, meaning there are 2 physical CPU cores in each socket. So if you get a 2 socket dual core server, you see 4 physical CPUs on the operating system. If you get a 4 socket dual core server, you see 8 physical CPUs. If you want to run R12 applications, you will definately need 4 GB of ram per instance (E-Business Suite installation). 11i might get by on 3 GB of ram per instance.

Maybe you are looking for

  • Problem with "package-info.java" using EJB 3.0 and OC4J

    Hi all. I already posted this question on JDeveloper forum, but didn't get any answer, so I'll try posting here. Anyway, I'm new both to JDeveloper and J2EE, so I'm trying out examples for EJB 3.0, and I got stuck at "Use Security Annotations with EJ

  • Error in jdeveloper 11

    When i run my applacition this error appear to me , i dont what i do : D:\JDeveloper11\jdeveloper\system\system11.1.1.0.31.51.56\DefaultDomain\bin\startWebLogic.cmd [waiting for the server to complete its initialization...] JAVA Memory arguments: -Xm

  • ICF SERVICE NODE FOR THE APPLICATION DOES NOT EXIST.

    Hi All: i am getting the following error when trying to execute my applications in abap webdynpro. The following error text was processed in the system BIS : WebDynpro Exception: ICF service node for application  does not exist The termination type w

  • How to log when a menu option is selected in an IVR Script

    Our business would like to track how many customers select a specific option in the menu of a CCX script.  For example: Customer calls in to the IVR and selects option 2 for a password reset within the menu.  My question is how to configure this with

  • How do I clear history in numbers

    My numbers spreadsheets have remembered everything I have input over the last ayear. How do I erase this?