Cannot create DB objs after patching (8.0.5.1)

Hello!
- I have installed the compat RPMs on my RH6.0 system
- I have installed 8.0.5.1 (without creating DB objects)
(I manually create some directories the installed could not
create (for the documentation) >:-( )
- I applied the patch for glibc2.1
- I then reran the installer -> create/upgrade database objects
- After some dialogs (I just says ok/yes to) I get into the
'Software Asset Manager'.
Why am I getting in here??? I have not chosen to install
additional software. And I can only select exit! If I select a
package It gets installed and I return to the Software Asset
Manager!? But do database objects gets created.
How do create the database object?
- Morten Green Hermansen
null

Morten Green Hermansen (guest) wrote:
: Hello!
: - I have installed the compat RPMs on my RH6.0 system
: - I have installed 8.0.5.1 (without creating DB objects)
: (I manually create some directories the installed could not
: create (for the documentation) >:-( )
: - I applied the patch for glibc2.1
: - I then reran the installer -> create/upgrade database objects
: - After some dialogs (I just says ok/yes to) I get into the
: 'Software Asset Manager'.
: Why am I getting in here??? I have not chosen to install
: additional software. And I can only select exit! If I select a
: package It gets installed and I return to the Software Asset
: Manager!? But do database objects gets created.
: How do create the database object?
: - Morten Green Hermansen
Well, I had some fun with Oracle 8.0.5.1 and the RH6-Patch,
too. I think I remember running into the same problem.
After going through the same patch-process over and over again I
found out that the glib-2.1-patch I downloaded from the Oracle
Site, believe it or not, contained several errors in the scripts.
I don't know if they have a fixed version on the download site
now, but the patch-scripts I had on my computer just could not
work the way they where written.
It took me a co-worker half a day to find all the things we
thought where wrong and after a while I was able to run the
patch and then start the database on our RedHat 6 system. It is
now running fine.
Unfortunately, I don't know where the fixed script are at the
moment. I hope they are still on the linux machine. Maybe it
helps you to go through the scripts that come with the patch.
--Thomas Janausch
null

Similar Messages

  • Cannot create a session after the response has been committed (Tomcat 6)

    I'm getting a rather annoying error when I try to open a pretty basic JSP page.
    I'm rather new to the whole JSP scene, so I'm following the example found on pages 287 and onwards in "JSF in Action - Manning" in case anyone wanted to check my code against the source.
    I've searched for about 4 hours now, coming back to this site a couple of times, once reading about writeouts and stuff. But I'm not really sure this is the issue in this case and if it is, where exactly the problem lies.
    I've already fixed a number of errors I got (jtsl.jar and standard.jar missing etc...) but this particular problem is driving me (and my co-workers for that matter :-) ) up the wall.
    Anyone willing to help me out here?
    Error:
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    javax.servlet.ServletException: Cannot create a session after the response has been committed
         javax.faces.webapp.FacesServlet.service(FacesServlet.java:152)
    root cause
    java.lang.IllegalStateException: Cannot create a session after the response has been committed
         org.apache.catalina.connector.Request.doGetSession(Request.java:2301)
         org.apache.catalina.connector.Request.getSession(Request.java:2075)
         org.apache.catalina.connector.RequestFacade.getSession(RequestFacade.java:833)
         org.apache.myfaces.context.servlet.SessionMap.setAttribute(SessionMap.java:53)
         org.apache.myfaces.util.AbstractAttributeMap.put(AbstractAttributeMap.java:103)
         org.apache.myfaces.util.AbstractAttributeMap.put(AbstractAttributeMap.java:35)
         org.apache.myfaces.application.jsp.JspStateManagerImpl.saveSerializedViewInServletSession(JspStateManagerImpl.java:523)
         org.apache.myfaces.application.jsp.JspStateManagerImpl.saveSerializedView(JspStateManagerImpl.java:358)
         javax.faces.application.StateManager.saveView(StateManager.java:47)
         org.apache.myfaces.application.jsp.JspViewHandlerImpl$StateMarkerAwareWriter.flushToWriter(JspViewHandlerImpl.java:387)
         org.apache.myfaces.application.jsp.JspViewHandlerImpl.renderView(JspViewHandlerImpl.java:322)
         org.apache.myfaces.lifecycle.RenderResponseExecutor.execute(RenderResponseExecutor.java:41)
         org.apache.myfaces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:132)
         javax.faces.webapp.FacesServlet.service(FacesServlet.java:138)
    Source Code of login.jsp:
    <%@ page language="java" contentType="text/html; charset=ISO-8859-1"
        pageEncoding="ISO-8859-1"%>
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <f:view>
    <html>
    <head>
         <title>
              <h:outputText value="ProjectTrack"/>
         </title>
    </head>
         <body>
              <table>
                   <tr>
                        <td>
                             <h:graphicImage url="/images/logo Skillteam.jpg"
                             alt="Welcome to ProjectTrack"
                             title="Welcome to ProjectTrack"
                             width="435" height="120"/>
                        </td>
                   <td>
                        <font face="Arial, sans-serif"
                        size="6">
                        <h:outputText value="ProjectTrack"/>
                        </font>
                   </td>
                   </tr>
         http://forum.java.sun.com/post!default.jspa?forumID=45#
    Click for bold     </table>
         </body>
    </html>
    </f:view>
    web.xml & faces-config
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xmlns="http://java.sun.com/xml/ns/javaee"
         xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
         xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
         <display-name>ProjectTrack</display-name>
         <welcome-file-list>
         <welcome-file>faces/login.jsp</welcome-file>
         <welcome-file>index.html</welcome-file>
         </welcome-file-list>
         <servlet>
         <servlet-name>Faces Servlet</servlet-name>
         <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
         <load-on-startup>1</load-on-startup>
         </servlet>
         <servlet-mapping>
         <servlet-name>Faces Servlet</servlet-name>
         <url-pattern>/faces/*</url-pattern>
         </servlet-mapping>
    </web-app>
    <?xml version="1.0"?>
    <!DOCTYPE faces-config PUBLIC
    "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.0//EN"
    "http://java.sun.com/dtd/web-facesconfig_1_0.dtd">
    <faces-config>
         <navigation-rule>
              <from-view-id>/login.jsp</from-view-id>
              <navigation-case>
                   <from-outcome>success</from-outcome>
                   <to-view-id>/inbox.jsp</to-view-id>
              </navigation-case>
              <navigation-case>
                   <from-outcome>failure</from-outcome>
                   <to-view-id>/login.jsp</to-view-id>
              </navigation-case>
         </navigation-rule>
    </faces-config>Setup:
    Eclipse Europe 3.3.0
    Tomcat 6.0.13
    MyFaces 1.2
    JRE 1.6.0_02

    When searching for this error, this was the first page google gave me. I found the answer and just in case anyone else stumbles in here with the same question I thought I'd share my findings.
    Unfortunately, if your problem is the same as mine, you're going to feel pretty silly. I was navigating to the wrong page. If MyFaces(when running tomcat) tries to resolve to a page that doesn't exist, the error given above is what happens.
    In my case I accidentally put my .jsp page into the wrong directory and ended up banging my head against the wall for an hour figuring that out. Hope this helps someone.

  • Cannot create recovery disk after update to Win 8.1 on G580

    Friends
    I have a Lenovo G580 that came with Win 8.0 preinstalled. I upgraded it to Win 8.1 over the Internet.
    When I try to run the "Create recovery disk" I get the error that states that "We cannot create a recovery drive for this PC. Some required files are missing..."
    I found out that the winre.wim file that is supposed to be in the C:\Windows\System32\Recovery folder is not there. I cannot locate it anywhere on the C or D drives either. I believe there is a copy on one or more of the recovery partitions but I do not know how to get that file from those partitons.
    I am confused as to why there are seven partitions on that one drive:
    1 Recovery partition 1000 MB
    2 EFI system partition 260 MB
    3 OEM partition 1000 MB
    4. Recovery partition 350 MB
    5. Recovery partition 20 GB
    6. Lenovo D: 25 GB
    7. Windows 8 C: 250 GB
    Can someone help me and give me some instructions on how I can fix the system to find the winre.wim file?
    Thanks for any good input.
    Calle

    Hi Calle,
    Welcome to Lenovo Community Forums!
    I’m sorry to hear that the error message is displayed in your G580 Laptop, as the OS (Operating System) installed is Windows 8.1 or Windows 8. Recovery discs cannot be created only a “Recovery Media” can be created using USB Flash drive, below is the link to create USB recovery drive.
    Create a USB Recovery Drive
    Do post us back if the issue persists.
    Best Regards
    Shiva Kumar
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • Cannot select serial number after patch upgrade to PL 27

    Hi,
    We have just upgraded to PL 27. As all the items are managed by serial number, we find that we are unable to select certain serial number when we are performing deliveries, return or invoicing. The funny thing is not all the serial number are affected. For example, out of 10 available serial number, 2 can be selected and the rest cannot.
    Any idea what causes it?
    Regards,
    TWP

    Hi,
    We are also facing the same issue when we try to upgrade the patch level to PL27 for one of our client. After few days of testing we found out that it seem to be a major bug in PL27 where by you will not be able to select most of the serial number after you sort the serial number table. You might need to try with different user or create another user which haven't apply the sorting as a temporary workaround method because we have try to remove the sorting but it cant be done. Thus, we create/try with different user without applying the sorting and it worked. To fix the issue permanently, you will need to revert the issue to SAP.
    Regards,
    cakong

  • Cannot create Administrator Account after Installation

    Hi,
    I would like to have the server assistant of OS X Server 10.6 to configure the whole server for my needs. Unfortunately this didn't work, even after the 5th trial.
    Here is what I did:
    - Local Installation via original DVD
    - Configuration windows (server assistant) populated with my needs.
    I get an error message, telling me that the keychain for the administrator account could not be created. The process brakes and the server won't be configured. This error happend twice.
    I have no option but to install the whole server software again. I could not find out how to restart the configuration / setup again from scratch WITHOUT having to install the whole system again.
    However, after the broken configuration procedure I get a blank login window. I found out that the system root account exists but NOT the administrator I wanted to create. What I can do is: reboot from the install DVD and reset the system root password. I can, then, log in as system root and get a desktop.
    But I still don't have any more users and - even worse - the server is not configured.
    I really don't want to configure every setting on my own due to a serious lack of basic knowledge.
    Is there any way to have the setup assistant getting to work? Can I "restart" the configuration process without installing the whole system again?

    I had this same problem. I experienced it first on a Mac Mini, not my Xserve, when I was doing a test install as recounted below. I was able to recreate the problem even.
    I discovered that for me the problem only occurs if I chose during setup to import groups and users from an already existing Open Directory. If I skip this step everything works fine, and I can manually import users and groups by exporting them from OD on my Xserve and manually importing them via the exported files.
    So here is the setup:
    1.) During the fresh install on the Mac Mini I created the user with my short id of pope.
    2.) When asked if I wanted to import OD users and groups, I did and I imported them by having it connect to my X-Serve (10.5.8)
    3.) The installer runs in to keychain problems and eventually you end up with a blue screen and then the login screen
    4.) At this point no usernames or passwords work
    If I skip step 2, 3 and 4 never happen.
    I thought maybe there was a conflict between my local shortname and a shortname in the OD that I attempted to pull from. I checked though and no conflict exists.
    Here is a more detailed account:
    I set my name, shortname, and password and continued on. Towards the end of installation I imported the users and groups from my 10.5 server and continued to setup services.
    Eventually a screen popped up saying that there was no keychain for my user. It offered to reset the keychain, but it wouldn't accept my password. After a handful of tries the screen turned blue and after a long while the system came back up, but this time to the normal login screen.
    And at the login screen the account I setup doesn't work. I'd reset the password via the booting from the setup disc, but I'm sure Snow Leopard just decapitated itself.
    I'm going to reinstall from scratch because I have the aching feeling that when it went haywire it probably !@#$% any services since it decided to commit suicide.
    Message was edited by: Pope7

  • Error: WEB3010: Cannot create a session after the response has been committ

    Hi,
    I am seeking more information on that error. You know how to explain to me what she is, which the possible causes, if somebody already had some problem where that mistake happened.
    Please, if somebody has some information he send me.
    Thanks
    Denis

    Committing a response involves sending headers/data back to the client. When a web application session is created, the session ID needs to be sent back to the client. This is done either via a Set-Cookie header or is encoded in the URLs returned to the client. When response has been committed before the session is created, there is no way for the session ID to be sent back to the client, hence the error.
    To correct the error, either increase the size of the output buffer or page buffer (if it is a JSP) or remove any calls that may be flushing data (thereby committing the response) to the client.

  • Cannot creat PDF's after upgrading to Adobe 10?

    Upgraded to Adobe 10 and printing to PDF does not work from any application; not word, excell, autocad, web pages; nothing.  It goes through the motings of printing; all buttons work and appear to proceed through the printing process, but PDF's do not show up in the asigned folder; or any other folder.
    This should not be this difficult; all other pervious Adobe upgrades went seamlessly.   Please advise!

    Thank you for following up;  Acrobat.
    Robert C. Shumake, AIA, NCARB
    <Removed by Moderator>

  • Auto patch error usdsop cannot create a new process

    Hi i am applying hrms family pack k in one vision db in testnode but i am getting following error.Any idea
    appsversion 11.5.10 and windows 2003 advanced server
    Generating product JAR files in JAVA_TOP -
    j:\oracle\viscomn\java with command:
    adjava -mx512m -nojit oracle.apps.ad.jri.adjmx @j:\oracle\visappl\admin\VIS\out\genjars.cmd
    Error:
    usdsop cannot create a new process
    Cause: usdsop encountered an error creating a new process. [Reason].
    Action: Check that your system had enough resources to start a new process. Contact your system administrator to obtain more resou (RE
    Failed to generate product JAR files in JAVA_TOP -
    j:\oracle\viscomn\java.
    adogjf() Unable to generate jar files under JAVA_TOP
    AutoPatch error:
    Failed to generate the product JAR files
    rgds
    rajesh

    This is the primary reason I dislike doing Oracle Apps on Windows.
    If something bad happens while patching, and you find yourself without critical ad executables because relink failed, you need to run relinkenv.cmd to (re)create the APPS.SH unix-style environment (forward slashes) for relink.sh.
    Source or double click on envshell.cmd
    sh adrelink.sh force=y "ad adjava.exe"
    Backup Mode is "file"
    Removing Application products' bin directories from PATH ...
    Done removing Application products' bin directories from PATH
    Removing $FND_TOP/$APPLBIN from PATH ...
    sed: number in \[0-9] invalid
    Done removing $FND_TOP/$APPLBIN from PATH
    awk: adrelink.sh 4107: not found
    grep: adrelink.sh 4107: not found
    grep: adrelink.sh 4107: not found
    echo: adrelink.sh 4107: writing: The pipe is being closed.
    awk: adrelink.sh 4107: not found
    ORACLE RDBMS Version 8.0.6.0.0
    Oracle Reports Version 6.0
    Oracle Applications Release
    Unable to determine the release number.
    To resolve:
    type relinkenv.cmd
    This creates APPS.SH.
    Source or double click on envshell.cmd to create a new session.
    Now type sh
    At the command prompt, type . ./APPS.Sh
    now adrelink.sh force=y "ad adjava.exe"
    You are running adrelink, version 115.85
    Start of adrelink session
    Date/time is Fri Jul 20 20:22:35 PDT 2007
    Log file is d:/oracle/visappl/admin/log/adrelink.log
    Command line arguments are
    "force=y" "ad adjava.exe"
    Done with link of ad executable 'adjava.exe' on Fri Jul 20 20:27:07 PDT 2007
    Done relinking module adjava.exe in product ad
    Done with link of product 'ad' on Fri Jul 20 20:27:07 PDT 2007
    adrelink is exiting with status 0
    End of adrelink session

  • Creating new databases after latest security patch applied

    10.2.0.4
    If I create a database AFTEr applying the opatch for the October 2009 security patch, do I need to also run:
    @catbundle.sql cpu apply
    Or is it included in the create database? I use the DBCA to create new databases.

    user8574962 wrote:
    This is what Oracle states on metalink doc id: 422303.1
    Once the bundle patch or the Critical Patch Update (CPU) patch is applied on an ORACLE_HOME should you run post-installation scripts for every newly created Oracle database using the same ORACLE_HOME?
    Solution
    This should be documented in the patch's README as the answer will vary with each patch.
    If the patch's README is not documented, then the Post Install tasks should be run.
    And this is what the OCTCPU09 README says:
    3.3.3 Post Installation Instructions for Databases Created or Upgraded after Installation of CPUOct2009 in the Oracle Home
    These instructions are for both non-RAC environments and RAC environments when a database is created or upgraded after the installation of CPUOct2009.
    You must execute the steps in Section 3.3.2.1, "Loading Modified .sql Files into the Database" for any new database only if it was created by any of the following methods:
    Using DBCA (Database Configuration Assistant) to select a sample database (General, Data Warehouse, Transaction Processing)
    Using a script that was created by DBCA that creates a database from a sample database
    Hope that helps.Point taken that it could vary by patchset, but those particular instructions quoted square exactly with what I had said. To quote with emphasis:
    "You must execute the steps . . . for any new database *only if* it was created by any of the following methods . . ."
    And what are those methods? Creating the database from a sample (pre-patch) database. If one uses dbca to create a 'custom' database, the resulting scripts will start from scratch with a CREATE DATABASE command - no pre-patch version sample or seed database involved.
    :-)

  • I cannot extrude to 3D after creating an object, it says "the operation cannot be completed because of an unknown error (CANT). what can i do please?

    i cannot extrude to 3D after creating an object, it says "the operation cannot be completed because of an unknown error (CANT). what can i do please?

    WHich version?
    Which system?
    What kind of object is it?
    Does it happen with simple objects as well?

  • After Installation Thunderbird cannot create any e-mailaccount in Windows 8.1

    Dear friends,
    I have installed Thunderbird on my recently installed Win 8.1 system. TB installes, opens, but then I cannot create anything else but a Newsgroupaccount. The wizard for creating a new, or importing existing e-mailaccounts does not appear at all. The column for Accounts, the list with the Messages shows up, but remains completely blanc not showing anything at all but a Grey field. I've tried copying my Profile folder from my 'old' Linux machine, and the addressbook has been copied allright. But I cannot write any message, as no single e-mailaccount has been created, cannot be created, no matter how i approach this menu.
    I have de-installed and removed everything, also in registry, and installed again. No changes. Same problem.
    is it possible that my Win 8.1 sytem might be the culprit?
    Sincerely, Rudi

    Perhaps I should add a screendump of what my Thunderbird 31.2.0 look like. . .

  • After upgrade to 6.3.4 cannot create new bookmarks by dragging nor open existing bookmark properties

    Just upgraded to 3.64. Now I cannot create new bookmarks either by dragging a URL or trying to create a new one in organize bookmarks. For existing bookmarks when I hit properties on the pop up menu all I get is a title bar that says "bookmark properties for (name of bookmark)" but I can't resize it or otherwise manipulate the title bar to access information or change the properties

    Hello Victor.
    You may be having a problem with some Firefox add-on that is hindering your Firefox's normal behavior. Have you tried disabling all add-ons (just to check), to see if Firefox goes back to normal?
    Whenever you have a problem with Firefox, whatever it is, you should make sure it's not coming from one of your installed add-ons, be it an extension, a theme or a plugin. To do that easily and cleanly, run Firefox in [http://support.mozilla.com/en-US/kb/Safe+Mode safe mode] and select ''Disable all add-ons''. If the problem disappears, you know it's from an add-on. Disable them all in normal mode, and enable them one at a time until you find the source of the problem. See [http://support.mozilla.com/en-US/kb/Troubleshooting+extensions+and+themes this article] for information about troubleshooting extensions and theme. You can troubleshoot plugins the same way.
    If you want support for one of your add-ons, you'll need to contact its author.

  • After installing Mavericks my email isn't allowing me to draft a new message. I can see my messages, but cannot create a new message or reply to any messages. When I try nothing happens, then Mail freezes all together.

    I can see my messages, but cannot create a new message or reply to any messages.
    When I try nothing happens, then Mail freezes all together and usually crashes.
    I was able to get into my Mail settings and everything looks ok as far as I can tell.
    Has anyone else seen this? My software is completely up to date now (unfortunately).
    Thanks in advance for any help or advice.

    Do a backup.
    Quit Mail.
    Go to Finder and select your user/home folder. With that Finder window as the front window, either select Finder/View/Show View options or go command - J.  When the View options opens, check ’Show Library Folder’. That should make your user library folder visible in your user/home folder. Go to Library/Containers/com.apple.mail.  Move the folder com.apple.mail to your desktop. You must move the entire folder, not just the contents.
    Restart, re-launch Mail and test. If the problem is solved, recreate any required Mail settings and import any emails you want to save from the folder on the desktop. You can then put the folder in the Trash. If the problem remains, return the folder to where you got it replacing the one that is there. 
    Information learned from Linc Davis. Thanks to leonie for some information contained in this.
    https://discussions.apple.com/message/23609117#23609117

  • [Solved]Lightning for Thunderbird:C compiler cannot create executables

    Thanks very much in advance.
    I am trying to install Lightning in Thunderbird but no luck so far.
    The xpi file from their website is not for 64 bits.
    The link for the 64 bits version doesn't work
    I've tried with AUR and yaourt but both return the following error (look at the end):
    ==> Making package: lightning 0.9-2 x86_64 (Fri Oct 2 13:58:20 BST 2009)
    ==> Checking Runtime Dependencies...
    ==> Checking Buildtime Dependencies...
    ==> Installing missing dependencies...
    resolving dependencies...
    looking for inter-conflicts...
    Targets (1): zip-3.0-1
    Total Download Size: 0.26 MB
    Total Installed Size: 0.57 MB
    Proceed with installation? [Y/n] y
    :: Retrieving packages from extra...
    zip-3.0-1-x86_64 266.2K 389.5K/s 00:00:01 [#####################] 100%
    checking package integrity...
    (1/1) checking for file conflicts [#####################] 100%
    (1/1) installing zip [#####################] 100%
    ==> Retrieving Sources...
    -> Downloading lightning-sunbird-0.9-source.tar.bz2...
    --2009-10-02 13:58:32-- http://releases.mozilla.org/pub/mozilla.org/calendar/sunbird/releases/0.9/source/lightning-sunbird-0.9-source.tar.bz2
    Resolving releases.mozilla.org... 156.56.247.196, 204.152.184.113, 149.20.20.5, ...
    Connecting to releases.mozilla.org|156.56.247.196|:80... connected.
    HTTP request sent, awaiting response... 200 OK
    Length: 43121977 (41M) [application/x-tar]
    Saving to: `lightning-sunbird-0.9-source.tar.bz2.part'
    100%[======================================>] 43,121,977 412K/s in 1m 43s
    2009-10-02 14:00:15 (407 KB/s) - `lightning-sunbird-0.9-source.tar.bz2.part' saved [43121977/43121977]
    -> Found lightning-sunbird-0.9-locale.diff in build dir
    -> Found lightning-gcc44.diff in build dir
    -> Found mozconfig in build dir
    ==> Validating source files with md5sums...
    lightning-sunbird-0.9-source.tar.bz2 ... Passed
    lightning-sunbird-0.9-locale.diff ... Passed
    lightning-gcc44.diff ... Passed
    mozconfig ... Passed
    ==> Extracting Sources...
    -> Extracting lightning-sunbird-0.9-source.tar.bz2 with bsdtar
    ==> Entering fakeroot environment...
    ==> Starting build()...
    patching file calendar/sunbird/app/mozilla.in
    patching file toolkit/xre/nsAppRunner.cpp
    Adding client.mk options from /home/rafael/Builds/lightning/src/mozconfig:
    MOZ_CO_PROJECT=calendar
    BUILD_OFFICIAL=1
    MOZILLA_OFFICIAL=1
    make[1]: Entering directory `/home/rafael/Builds/lightning/src/mozilla'
    cd /home/rafael/Builds/lightning/src/mozilla/lightning-obj
    /home/rafael/Builds/lightning/src/mozilla/configure
    Adding configure options from /home/rafael/Builds/lightning/src/mozconfig:
    --enable-application=calendar
    --prefix=/usr
    --enable-extensions=lightning
    --enable-default-toolkit=gtk2
    --enable-system-cairo
    --enable-optimize
    --disable-debug
    --disable-tests
    --disable-installer
    --with-default-mozilla-five-home=/usr/lib/thunderbird-2.0
    --with-system-nss
    --with-system-nspr
    --with-system-jpeg
    --with-system-zlib
    --with-system-png
    creating cache ./config.cache
    checking host system type... x86_64-unknown-linux-gnu
    checking target system type... x86_64-unknown-linux-gnu
    checking build system type... x86_64-unknown-linux-gnu
    checking for gawk... gawk
    checking for nsinstall... no
    checking for gcc... gcc
    checking whether the C compiler (gcc -march=x86-64 -mtune=generic -O2 -pipe -Wl,--hash-style=gnu -Wl,--as-needed-lXrender -lX11 ) works... no
    configure: error: installation or configuration problem: C compiler cannot create executables.
    *** Fix above errors and then restart with "make -f client.mk build"
    make[1]: *** [configure] Error 1
    make[1]: Leaving directory `/home/rafael/Builds/lightning/src/mozilla'
    make: *** [/home/rafael/Builds/lightning/src/mozilla/lightning-obj/Makefile] Error 2
    ==> ERROR: Build Failed.
    Aborting..
    I've searched in forums and on the Internet but I am a newby and I have no idea how to fix the c compiler...
    Thanks again
    Last edited by rafaelgp (2009-10-02 17:34:53)

    Very impressive!  Thanks for such a fast response.
    But I'm afraid it still doesn't work. After compiling for 10 minutes it couldn't finish:
    ../../dist/lib/libgkconcvs_s.a(nsCanvasRenderingContext2D.o): In function `nsCanvasRenderingContext2D::Destroy()':
    nsCanvasRenderingContext2D.cpp:(.text+0x51e2): undefined reference to `XFreePixmap'
    ../../dist/lib/libgkconcvs_s.a(nsCanvasRenderingContext2D.o): In function `nsCanvasRenderingContext2D::SetDimensions(int, int)':
    nsCanvasRenderingContext2D.cpp:(.text+0x56f6): undefined reference to `XRenderFindStandardFormat'
    nsCanvasRenderingContext2D.cpp:(.text+0x571e): undefined reference to `XListPixmapFormats'
    nsCanvasRenderingContext2D.cpp:(.text+0x575e): undefined reference to `XFree'
    nsCanvasRenderingContext2D.cpp:(.text+0x5796): undefined reference to `XCreatePixmap'
    collect2: ld returned 1 exit status
    make[4]: *** [libgklayout.so] Error 1
    make[4]: Leaving directory `/home/rafael/Builds/lightning/src/mozilla/lightning-obj/layout/build'
    make[3]: *** [libs] Error 2
    make[3]: Leaving directory `/home/rafael/Builds/lightning/src/mozilla/lightning-obj/layout'
    make[2]: *** [tier_9] Error 2
    make[2]: Leaving directory `/home/rafael/Builds/lightning/src/mozilla/lightning-obj'
    make[1]: *** [default] Error 2
    make[1]: Leaving directory `/home/rafael/Builds/lightning/src/mozilla/lightning-obj'
    make: *** [build] Error 2
    ==> ERROR: Build Failed.
    Aborting...
    Hope this helps.

  • C compiler cannot create executables on fresh install

    This has happened to me twice now on this laptop. Straight after installing my system and the packages from my saved cache, I try to build a few of my AUR packages, only to be told that the compiler can't create executables. Somehow I fixed it the last time and I can't remember what I did. Purging gcc hasn't helped.
    I don't have a fast (or even reliable) internet connection, so I can't do a system upgrade as I've got a limit of < 250 MB.
    For the record, I'm trying to compile pacman-color, and this is what I get:
    patching file src/pacman/callback.c
    patching file src/pacman/package.c
    patching file src/pacman/pacman.c
    patching file src/pacman/query.c
    patching file src/pacman/remove.c
    patching file src/pacman/sync.c
    patching file src/pacman/upgrade.c
    patching file src/pacman/util.c
    patching file src/pacman/util.h
    checking build system type... x86_64-unknown-linux-gnu
    checking host system type... x86_64-unknown-linux-gnu
    checking for a BSD-compatible install... /bin/install -c
    checking whether build environment is sane... yes
    checking for a thread-safe mkdir -p... /bin/mkdir -p
    checking for gawk... gawk
    checking whether make sets $(MAKE)... yes
    checking for gawk... (cached) gawk
    checking for style of include used by make... GNU
    checking for gcc... gcc
    checking whether the C compiler works... no
    configure: error: in `/home/robbie/build/aur-updated/pacman-color/src/pacman-3.5.4':
    configure: error: C compiler cannot create executables
    See `config.log' for more details
    ==> ERROR: A failure occurred in build().
    Aborting...
    And this is config.log
    This file contains any messages produced by compilers while
    running configure, to aid debugging if configure makes a mistake.
    It was created by pacman configure 3.5.4, which was
    generated by GNU Autoconf 2.68. Invocation command line was
    $ ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-doc
    ## Platform. ##
    hostname = magrathea
    uname -m = x86_64
    uname -r = 3.0-ARCH
    uname -s = Linux
    uname -v = #1 SMP PREEMPT Tue Aug 30 08:53:25 CEST 2011
    /usr/bin/uname -p = unknown
    /bin/uname -X = unknown
    /bin/arch = x86_64
    /usr/bin/arch -k = unknown
    /usr/convex/getsysinfo = unknown
    /usr/bin/hostinfo = unknown
    /bin/machine = unknown
    /usr/bin/oslevel = unknown
    /bin/universe = unknown
    PATH: /home/robbie/bin
    PATH: /usr/share/fslint/fslint
    PATH: /usr/local/bin
    PATH: /usr/bin
    PATH: /bin
    PATH: /usr/local/sbin
    PATH: /usr/sbin
    PATH: /sbin
    PATH: /usr/bin/vendor_perl
    PATH: /usr/lib/perl5/vendor_perl/bin
    PATH: /usr/bin/core_perl
    ## Core tests. ##
    configure:2468: checking build system type
    configure:2482: result: x86_64-unknown-linux-gnu
    configure:2502: checking host system type
    configure:2515: result: x86_64-unknown-linux-gnu
    configure:2551: checking for a BSD-compatible install
    configure:2619: result: /bin/install -c
    configure:2630: checking whether build environment is sane
    configure:2680: result: yes
    configure:2821: checking for a thread-safe mkdir -p
    configure:2860: result: /bin/mkdir -p
    configure:2873: checking for gawk
    configure:2889: found /usr/bin/gawk
    configure:2900: result: gawk
    configure:2911: checking whether make sets $(MAKE)
    configure:2933: result: yes
    configure:3128: checking for gawk
    configure:3155: result: gawk
    configure:3178: checking for style of include used by make
    configure:3206: result: GNU
    configure:3276: checking for gcc
    configure:3292: found /usr/bin/gcc
    configure:3303: result: gcc
    configure:3532: checking for C compiler version
    configure:3541: gcc --version >&5
    gcc (GCC) 4.6.1 20110819 (prerelease)
    Copyright (C) 2011 Free Software Foundation, Inc.
    This is free software; see the source for copying conditions. There is NO
    warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
    configure:3552: $? = 0
    configure:3541: gcc -v >&5
    Using built-in specs.
    COLLECT_GCC=gcc
    COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-unknown-linux-gnu/4.6.1/lto-wrapper
    Target: x86_64-unknown-linux-gnu
    Configured with: /build/src/gcc-4.6-20110819/configure --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/ --enable-languages=c,c++,ada,fortran,go,lto,objc,obj-c++ --enable-shared --enable-threads=posix --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-clocale=gnu --enable-gnu-unique-object --enable-linker-build-id --with-ppl --enable-cloog-backend=isl --enable-lto --enable-gold --enable-ld=default --enable-plugin --with-plugin-ld=ld.gold --disable-multilib --disable-libssp --disable-libstdcxx-pch --enable-checking=release
    Thread model: posix
    gcc version 4.6.1 20110819 (prerelease) (GCC)
    configure:3552: $? = 0
    configure:3541: gcc -V >&5
    gcc: error: unrecognized option '-V'
    gcc: fatal error: no input files
    compilation terminated.
    configure:3552: $? = 1
    configure:3541: gcc -qversion >&5
    gcc: error: unrecognized option '-qversion'
    gcc: fatal error: no input files
    compilation terminated.
    configure:3552: $? = 1
    configure:3572: checking whether the C compiler works
    configure:3594: gcc -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -Wl,-O1,--sort-common,--as-needed,-z,relro,--hash-style=gnu conftest.c >&5
    /usr/lib/gcc/x86_64-unknown-linux-gnu/4.6.1/cc1: error while loading shared libraries: libcloog-isl.so.2: cannot open shared object file: No such file or directory
    configure:3598: $? = 1
    configure:3636: result: no
    configure: failed program was:
    | /* confdefs.h */
    | #define PACKAGE_NAME "pacman"
    | #define PACKAGE_TARNAME "pacman"
    | #define PACKAGE_VERSION "3.5.4"
    | #define PACKAGE_STRING "pacman 3.5.4"
    | #define PACKAGE_BUGREPORT "[email protected]"
    | #define PACKAGE_URL ""
    | #define PACKAGE "pacman"
    | #define VERSION "3.5.4"
    | #define LIB_VERSION "6.0.4"
    | /* end confdefs.h. */
    |
    | int
    | main ()
    | {
    |
    | ;
    | return 0;
    | }
    configure:3641: error: in `/home/robbie/build/aur-updated/pacman-color/src/pacman-3.5.4':
    configure:3643: error: C compiler cannot create executables
    See `config.log' for more details
    ## Cache variables. ##
    ac_cv_build=x86_64-unknown-linux-gnu
    ac_cv_env_CC_set=
    ac_cv_env_CC_value=
    ac_cv_env_CFLAGS_set=set
    ac_cv_env_CFLAGS_value='-march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2'
    ac_cv_env_CPPFLAGS_set=
    ac_cv_env_CPPFLAGS_value=
    ac_cv_env_CPP_set=
    ac_cv_env_CPP_value=
    ac_cv_env_LDFLAGS_set=set
    ac_cv_env_LDFLAGS_value=-Wl,-O1,--sort-common,--as-needed,-z,relro,--hash-style=gnu
    ac_cv_env_LIBS_set=
    ac_cv_env_LIBS_value=
    ac_cv_env_build_alias_set=
    ac_cv_env_build_alias_value=
    ac_cv_env_host_alias_set=
    ac_cv_env_host_alias_value=
    ac_cv_env_target_alias_set=
    ac_cv_env_target_alias_value=
    ac_cv_host=x86_64-unknown-linux-gnu
    ac_cv_path_install='/bin/install -c'
    ac_cv_path_mkdir=/bin/mkdir
    ac_cv_prog_AWK=gawk
    ac_cv_prog_ac_ct_CC=gcc
    ac_cv_prog_make_make_set=yes
    ## Output variables. ##
    ACLOCAL='${SHELL} /home/robbie/build/aur-updated/pacman-color/src/pacman-3.5.4/missing --run aclocal-1.11'
    AMDEPBACKSLASH='\'
    AMDEP_FALSE='#'
    AMDEP_TRUE=''
    AMTAR='${SHELL} /home/robbie/build/aur-updated/pacman-color/src/pacman-3.5.4/missing --run tar'
    AR=''
    ASCIIDOC=''
    AUTOCONF='${SHELL} /home/robbie/build/aur-updated/pacman-color/src/pacman-3.5.4/missing --run autoconf'
    AUTOHEADER='${SHELL} /home/robbie/build/aur-updated/pacman-color/src/pacman-3.5.4/missing --run autoheader'
    AUTOMAKE='${SHELL} /home/robbie/build/aur-updated/pacman-color/src/pacman-3.5.4/missing --run automake-1.11'
    AWK='gawk'
    BASH_SHELL=''
    BUILDSCRIPT='PKGBUILD'
    CARCH=''
    CARCHFLAGS=''
    CC='gcc'
    CCDEPMODE=''
    CFLAGS='-march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2'
    CHOST='x86_64-unknown-linux-gnu'
    CPP=''
    CPPFLAGS=''
    CYGPATH_W='echo'
    CYGWIN_FALSE=''
    CYGWIN_TRUE=''
    DARWIN_FALSE=''
    DARWIN_TRUE=''
    DEFS=''
    DEPDIR='.deps'
    DLLTOOL=''
    DOXYGEN=''
    DSYMUTIL=''
    DUMPBIN=''
    DUPATH=''
    ECHO_C=''
    ECHO_N='-n'
    ECHO_T=''
    EGREP=''
    ENABLE_GNU89_INLINE_CC_FALSE=''
    ENABLE_GNU89_INLINE_CC_TRUE=''
    ENABLE_VISIBILITY_CC_FALSE=''
    ENABLE_VISIBILITY_CC_TRUE=''
    EXEEXT=''
    FGREP=''
    GETTEXT_MACRO_VERSION=''
    GIT=''
    GMSGFMT=''
    GMSGFMT_015=''
    GREP=''
    HAVE_LIBFETCH_FALSE=''
    HAVE_LIBFETCH_TRUE=''
    HAVE_LIBSSL_FALSE=''
    HAVE_LIBSSL_TRUE=''
    INSTALL_DATA='${INSTALL} -m 644'
    INSTALL_PROGRAM='${INSTALL}'
    INSTALL_SCRIPT='${INSTALL}'
    INSTALL_STRIP_PROGRAM='$(install_sh) -c -s'
    INTLLIBS=''
    INTL_MACOSX_LIBS=''
    LD=''
    LDFLAGS='-Wl,-O1,--sort-common,--as-needed,-z,relro,--hash-style=gnu'
    LIBICONV=''
    LIBINTL=''
    LIBOBJS=''
    LIBS=''
    LIBTOOL=''
    LIB_VERSION='6.0.4'
    LIB_VERSION_INFO='6:4:0'
    LIPO=''
    LN_S=''
    LTLIBICONV=''
    LTLIBINTL=''
    LTLIBOBJS=''
    MAKEINFO='${SHELL} /home/robbie/build/aur-updated/pacman-color/src/pacman-3.5.4/missing --run makeinfo'
    MANIFEST_TOOL=''
    MKDIR_P='/bin/mkdir -p'
    MSGFMT=''
    MSGFMT_015=''
    MSGMERGE=''
    NM=''
    NMEDIT=''
    OBJDUMP=''
    OBJEXT=''
    OTOOL64=''
    OTOOL=''
    PACKAGE='pacman'
    PACKAGE_BUGREPORT='[email protected]'
    PACKAGE_NAME='pacman'
    PACKAGE_STRING='pacman 3.5.4'
    PACKAGE_TARNAME='pacman'
    PACKAGE_URL=''
    PACKAGE_VERSION='3.5.4'
    PATH_SEPARATOR=':'
    PKGEXT='.pkg.tar.gz'
    POSUB=''
    PYTHON=''
    RANLIB=''
    ROOTDIR='/'
    SED=''
    SEDINPLACE=''
    SET_MAKE=''
    SHELL='/bin/sh'
    SIZECMD=''
    SRCEXT='.src.tar.gz'
    STRIP=''
    STRIP_BINARIES=''
    STRIP_SHARED=''
    STRIP_STATIC=''
    USE_DOXYGEN_FALSE=''
    USE_DOXYGEN_TRUE=''
    USE_GIT_VERSION_FALSE=''
    USE_GIT_VERSION_TRUE=''
    USE_NLS=''
    VERSION='3.5.4'
    WANT_DOC_FALSE=''
    WANT_DOC_TRUE=''
    XGETTEXT=''
    XGETTEXT_015=''
    XGETTEXT_EXTRA_OPTIONS=''
    ac_ct_AR=''
    ac_ct_CC='gcc'
    ac_ct_DUMPBIN=''
    am__EXEEXT_FALSE=''
    am__EXEEXT_TRUE=''
    am__fastdepCC_FALSE=''
    am__fastdepCC_TRUE=''
    am__include='include'
    am__isrc=''
    am__leading_dot='.'
    am__quote=''
    am__tar='${AMTAR} chof - "$$tardir"'
    am__untar='${AMTAR} xf -'
    bindir='${exec_prefix}/bin'
    build='x86_64-unknown-linux-gnu'
    build_alias=''
    build_cpu='x86_64'
    build_os='linux-gnu'
    build_vendor='unknown'
    datadir='${datarootdir}'
    datarootdir='${prefix}/share'
    docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
    dvidir='${docdir}'
    exec_prefix='NONE'
    host='x86_64-unknown-linux-gnu'
    host_alias=''
    host_cpu='x86_64'
    host_os='linux-gnu'
    host_vendor='unknown'
    htmldir='${docdir}'
    includedir='${prefix}/include'
    infodir='${datarootdir}/info'
    install_sh='${SHELL} /home/robbie/build/aur-updated/pacman-color/src/pacman-3.5.4/install-sh'
    libdir='${exec_prefix}/lib'
    libexecdir='${exec_prefix}/libexec'
    localedir='${datarootdir}/locale'
    localstatedir='/var'
    mandir='${datarootdir}/man'
    mkdir_p='/bin/mkdir -p'
    oldincludedir='/usr/include'
    pdfdir='${docdir}'
    prefix='/usr'
    program_transform_name='s,x,x,'
    psdir='${docdir}'
    sbindir='${exec_prefix}/sbin'
    sharedstatedir='${prefix}/com'
    sysconfdir='/etc'
    target_alias=''
    ## confdefs.h. ##
    /* confdefs.h */
    #define PACKAGE_NAME "pacman"
    #define PACKAGE_TARNAME "pacman"
    #define PACKAGE_VERSION "3.5.4"
    #define PACKAGE_STRING "pacman 3.5.4"
    #define PACKAGE_BUGREPORT "[email protected]"
    #define PACKAGE_URL ""
    #define PACKAGE "pacman"
    #define VERSION "3.5.4"
    #define LIB_VERSION "6.0.4"
    configure: exit 77
    I'm at a loss as to how I can get this working again, or why it happens in the first place.
    Last edited by zoqaeski (2011-10-03 16:29:49)

    pacman -Syu base-devel, as the wiki clearly states?
    btw: partial updates doesn't work with binary based rolling release distroes. Either update the system or use a fixed release distro.
    /usr/lib/gcc/x86_64-unknown-linux-gnu/4.6.1/cc1: error while loading shared libraries: libcloog-isl.so.2: cannot open shared object file: No such file or directory
    This is one of the problems you will get when you have a partialy updated system. (or use pacman -S/R -dd)
    Last edited by Mr.Elendig (2011-10-05 11:38:28)

Maybe you are looking for

  • IOS 8.1 Music app not allowing search by artist

    On my iPhone 4S, I usually search music by artist. Since the update to 8.1, my phone no longer responds to searching through the alphabet down the RHS for Artist. It does for the Category Songs , but not for Artists. Have others experienced this?  Is

  • Can i change the "Yes" And "No" Text in the showConfirmDialog ?

    if yes how? i just want to change for example from"Yes" to "Sure" Thans!

  • DB13 message error

    Hello everybody. After that i have installed a new system (SOLMAN 4 R2 on Maxdb)on a server where there´s already a system, i call DB13 and i receive always a dialog box error (when refreshing too): DBMRFC Function     : DBM_GETF                     

  • New collection causes ibooks crash with ios5

    Hi, My iBooks shelves are nice, with different collections. Since I did the upgrade to Ios 5, it's impossible to create a new collection: it crashes the app. The previously installed ones work perfectly, but no new folder is allowed!! Do someone have

  • Where to find an epson sx510w driver for osx 10.9

    Hi, Do you use a Epson sx510w printer/scanner with Mavericks? Please you can help me out, whan I connect the printer Apple does not provide an driver. I tried to install a driver provided by Epson, but it is not working(Driver (v6.62) 21-Oct-2009 23.