Link Problem with libgc_dbg

Hi there,
I'm using Forte6 on Sun SPARC Solaris 2.7. When trying to use the memory monitor tool from the Forte6 environment I get a link failure:
<code>
$ CC -v -library=gc_dbg -o memtest memtest.C
### CC: Note: LM_LICENSE_FILE = 1726@licserva:1726@licservb:1726@licservc
### CC: Note: NLSPATH = /opt/forte_6.0/bin/../WS6/bin/../lib/locale/%L/LC_MESSAGES/%N.cat:/opt/forte_6.0/bin/../WS6/bin/../../lib/locale/%L/LC_MESSAGES/%N.cat
/opt/forte_6.0/bin/../WS6/bin/ccfe -y-o -ymemtest.o -y-fbe -y/opt/forte_6.0/bin/../WS6/bin/fbe -y-xarch=generic -y-verbose -O0 -ptf /tmp/24540%1.%2 -ptx /opt/forte_6.0/bin/../WS6/bin/CC -ptk "-v -library=gc_dbg -xs " -D__SunOS_5_7 -D__SUNPRO_CC=0x510 -Dunix -Dsun -Dsparc -D__sparc -D__unix -D__sun -D__BUILTIN_VA_ARG_INCR -D__SVR4 -D__SUNPRO_CC_COMPAT=5 -y-s -instlib=/opt/forte_6.0/WS6/lib/libCstd.a -I/opt/forte_6.0/WS6/include/CC/Cstd -I/opt/forte_6.0/WS6/include/CC -I/opt/forte_6.0/WS6/include/CC/rw7 -I/opt/forte_6.0/WS6/include/cc -D__SUN_PREFETCH memtest.C -s /tmp/ccfe.24540.0.s
/opt/forte_6.0/bin/../WS6/bin/CClink -ptk "-v -library=gc_dbg -xs -xildoff " -ptx /opt/forte_6.0/bin/../WS6/bin/CC memtest.o -o memtest
### CC: Note: LM_LICENSE_FILE = 1726@licserva:1726@licservb:1726@licservc
### CC: Note: NLSPATH = /opt/forte_6.0/bin/../WS6/bin/../lib/locale/%L/LC_MESSAGES/%N.cat:/opt/forte_6.0/bin/../WS6/bin/../../lib/locale/%L/LC_MESSAGES/%N.cat:/opt/forte_6.0/bin/../WS6/bin/../lib/locale/%L/LC_MESSAGES/%N.cat:/opt/forte_6.0/bin/../WS6/bin/../../lib/locale/%L/LC_MESSAGES/%N.cat
### CC: Note: LD_LIBRARY_PATH = /opt/www/lib/rvplayer:/opt/forte_6.0/WS6/lib:/opt/X11R6/lib:/usr/lib:/usr/local/lib
### CC: Note: LD_RUN_PATH = (null)
### CC: Note: LD_OPTIONS = (null)
/usr/ccs/bin/ld -u __1cH__CimplKcplus_init6F_v_ -R/opt/forte_6.0/lib/rw7:/opt/forte_6.0/lib:/usr/ccs/lib:/usr/lib:/opt/SUNWspro/lib -o memtest /opt/forte_6.0/WS6/lib/crti.o /opt/forte_6.0/WS6/lib/crt1.o /opt/forte_6.0/WS6/lib/values-xa.o -Y P,/opt/forte_6.0/lib/rw7:/opt/forte_6.0/lib:/opt/forte_6.0/WS6/lib/rw7:/opt/forte_6.0/WS6/lib:/usr/ccs/lib:/usr/lib memtest.o -lCstd -lCrun -lgc_dbg -lm -lw -lcx -lc /opt/forte_6.0/WS6/lib/crtn.o >&/tmp/ld.24546.0.err
/opt/forte_6.0/bin/../WS6/bin/c++filt -stderr </tmp/ld.24546.0.err
Undefined               first referenced
symbol                in file
dlopen                             /opt/forte6.0/WS6/lib/libgc_dbg.a(dyn_load.o) (symbol belongs to implicit dependency /usr/lib/libdl.so.1)
ld: fatal: Symbol referencing errors. No output written to memtest
rm /tmp/ld.24546.0.err
rm memtest.o
rm /tmp/ccfe.24540.0.s
</code>
When I add <tt>-ldl</tt> to the command the binary is linked successfully but crashes on startup in a function named <tt>SymbolTable::lookupModuleByOrigin</tt>.
What am I doing wrong? Perhaps something in my environment or our Forte6 installation could be the reason?
Thanks,
Adalbert Perbandt

Problem is with 3.x version of compiler.
So uninstall following packages:
compat-gcc-c++
compat-gcc
compat-libstdc++-devel
compat-libstdc++
Then download following packages from Fedora Core 2:
http://download.fedora.redhat.com/pub/fedora/linux/core/2/i386/os/Fedora/RPMS/compat-gcc-7.3-2.96.126.i386.rpm
http://download.fedora.redhat.com/pub/fedora/linux/core/2/i386/os/Fedora/RPMS/compat-gcc-c++-7.3-2.96.126.i386.rpm
http://download.fedora.redhat.com/pub/fedora/linux/core/2/i386/os/Fedora/RPMS/compat-libstdc++-7.3-2.96.126.i386.rpm
http://download.fedora.redhat.com/pub/fedora/linux/core/2/i386/os/Fedora/RPMS/compat-libstdc++-devel-7.3-2.96.126.i386.rpm
and install it. Now try to comile again.

Similar Messages

  • Re: Fwd: Link Problems With Borland C++ 4.52

    I have seen this problem before in another context, and I'll offer the
    cause and solution in the hope that they will apply to the Crystal problem.
    Many Windows based applications rely on PASCAL calling conventions, which
    change the way parameters are handled in function/method calls. They
    indicate this by placing one of the following immediately before the
    function name in the prototype declarations:
    - pascal_far (or something like that)
    - WINAPI
    - some other typedef of either of the above
    For example:
    int WINAPI AddTotal(int valueA, int valueB);
    Unfortunately, v2.0 of Forte does not provide any mechanisms for changing
    the calling conventions of the prototypes in the generated C++ wrapper
    library, so when you compile that code, the linker fails. I think that the
    compiler may generate different symbols depending on calling conventions,
    so that's why it fails.
    To fix this, don't autocompile your code, but generate the distribution, go
    into the generated C++ files and look for the function prototypes (I think
    you can search for FORTE_NO_PROTOTYPES), add WINAPI to the appropriate
    places in the prototype definitions (see above) and use fcompile to build
    the library. Instructions for fcompile are in the Interfacing With
    External Systems manual.
    Hope this helps,
    James
    At 11:05 AM 5/29/97 PDT, you wrote:
    >
    We are trying to wrapper Crystal Reports from Forte. I know that there
    are a number of other people in this same boat, as I've seen messages
    posted here at various points during the past few weeks. We are having
    a particular problem with getting the compile to go through, which we
    have sent in to Forte Tech Support. I'm forwarding the message I sent
    Tech Support to this group in the hopes that someone here may have
    already seen and resolved a similar problem.
    Thanks in advance for any help you can offer!
    Dale V. Georg
    Indus Consultancy Services [email protected]
    Mack Trucks, Inc. [email protected]
    >
    Date: Wed, 28 May 97 13:47:20 PDT
    From: dg7077a
    To: Forte Technical Support
    Cc: Gardner, Steve
    Subject: Link Problems With Borland C++ 4.52
    Name of requestor: [Dale V. Georg / Alaiah Chandrashekar]
    Company: [Indus Consultancy Services]
    Phone for callback: [(610) 709-3956]
    Customer Site: [Mack Trucks, Inc.]
    Product: [Forte]
    Version of Forte: [2.0.H.1]
    Server OS: [SunOS 5.5.1]
    Client OS: [Windows 3.1]
    DBMS: [Oracle 7.2.3]
    Reproducible?: [Yes]
    Brief description: [Link Problems With Borland C++ 4.52]
    Complete description of problem or question:
    We are attempting to write a C-wrapper interface from Forte to Crystal
    Reports' Report Engine. We are using Borland C++ version 4.52.
    Unfortunately, we have been unable to get a clean compile after a day
    and half of effort. We get as far as the link stage of the
    compilation, and
    the compiler aborts with an "Unknown symbol" error message for each
    of the functions we are trying to wrapper. We have tried a number of
    ideas to fix this problem, and are continuing to try to solve it on
    our own,
    but any help would be greatly appreciated. Please have someone call
    Alaiah Chandrashekar at the number above as soon as possible.
    Thanks!
    Dale V. Georg
    Indus Consultancy Services [email protected]
    Mack Trucks, Inc. [email protected]
    James Urquhart [email protected]
    Product Manager phone: (510) 986-3513
    Forte Software, Inc. fax: (510) 869-2092

    James,
    Thanks for your quick response. Yesterday we had been running down
    the path of examining the calling conventions and trying to change them
    to PASCAL, but without much success. After receiving your note, we
    went back over it again, and this time we were able to finally to piece it
    together. In addition to editing the Forte-generated .cc file to declare
    the functions as PASCAL, we also had to turn off the compiler's case
    sensitivity. (The Crystal .lib file had the function names in mixed case,
    but the Borland compiler was generating all uppercase for the names.)
    Now I had actually tried this yesterday and it didn't work (in fact it
    generated a whole bunch of new errors) - because until we took a
    second look at it today, I didn't realize that Borland's linker actually has
    TWO flags that control case sensitivity. If you only turn one or the
    other off, things can get pretty ugly looking. As soon as we turned
    both of them off, the compile and link went beautifully. Again, thanks
    for your help; hopefully we are over the worst of it now!
    Dale
    I have seen this problem before in another context, and I'll offer the
    cause and solution in the hope that they will apply to the Crystalproblem.
    >
    Many Windows based applications rely on PASCAL callingconventions, which
    change the way parameters are handled in function/method calls.They
    indicate this by placing one of the following immediately before the
    function name in the prototype declarations:
    - pascal_far (or something like that)
    - WINAPI
    - some other typedef of either of the above
    For example:
    int WINAPI AddTotal(int valueA, int valueB);
    Unfortunately, v2.0 of Forte does not provide any mechanisms forchanging
    the calling conventions of the prototypes in the generated C++wrapper
    library, so when you compile that code, the linker fails. I think thatthe
    compiler may generate different symbols depending on callingconventions,
    so that's why it fails.
    To fix this, don't autocompile your code, but generate thedistribution, go
    into the generated C++ files and look for the function prototypes (I think
    you can search for FORTE_NO_PROTOTYPES), add WINAPI tothe appropriate
    places in the prototype definitions (see above) and use fcompile tobuild
    the library. Instructions for fcompile are in the Interfacing With
    External Systems manual.
    Hope this helps,
    James
    At 11:05 AM 5/29/97 PDT, you wrote:
    We are trying to wrapper Crystal Reports from Forte. I know that
    there
    are a number of other people in this same boat, as I've seenmessages
    posted here at various points during the past few weeks. We arehaving
    a particular problem with getting the compile to go through, whichwe
    have sent in to Forte Tech Support. I'm forwarding the message Isent
    Tech Support to this group in the hopes that someone here mayhave
    already seen and resolved a similar problem.
    Thanks in advance for any help you can offer!
    Dale V. Georg
    Indus Consultancy Services [email protected]
    Mack Trucks, Inc.
    [email protected]
    >
    >>
    Date: Wed, 28 May 97 13:47:20 PDT
    From: dg7077a
    To: Forte Technical Support
    Cc: Gardner, Steve
    Subject: Link Problems With Borland C++ 4.52
    Name of requestor: [Dale V. Georg / AlaiahChandrashekar
    Company: [Indus Consultancy Services]
    Phone for callback: [(610) 709-3956]
    Customer Site: [Mack Trucks, Inc.]
    Product: [Forte]
    Version of Forte: [2.0.H.1]
    Server OS: [SunOS 5.5.1]
    Client OS: [Windows 3.1]
    DBMS: [Oracle 7.2.3]
    Reproducible?: [Yes]
    Brief description: [Link Problems With Borland C++ 4.52]
    Complete description of problem or question:
    We are attempting to write a C-wrapper interface from Forte to
    Crystal
    >>
    Reports' Report Engine. We are using Borland C++ version 4.52.
    Unfortunately, we have been unable to get a clean compile after aday
    and half of effort. We get as far as the link stage of the
    compilation, and
    the compiler aborts with an "Unknown symbol" error message foreach
    of the functions we are trying to wrapper. We have tried a numberof
    ideas to fix this problem, and are continuing to try to solve it on
    our own,
    but any help would be greatly appreciated. Please have someonecall
    Alaiah Chandrashekar at the number above as soon as possible.
    Thanks!
    Dale V. Georg
    Indus Consultancy Services [email protected]
    Mack Trucks, [email protected]
    James Urquhart [email protected]
    Product Manager phone: (510) 986-3513
    Forte Software, Inc. fax: (510) 869-2092-----------------------------------------------------------------------------------
    Dale V. Georg
    Indus Consultancy Services [email protected]
    Mack Trucks, Inc. [email protected]
    [email protected]------------------

  • Fwd: Link Problems With Borland C++ 4.52

    We are trying to wrapper Crystal Reports from Forte. I know that there
    are a number of other people in this same boat, as I've seen messages
    posted here at various points during the past few weeks. We are having
    a particular problem with getting the compile to go through, which we
    have sent in to Forte Tech Support. I'm forwarding the message I sent
    Tech Support to this group in the hopes that someone here may have
    already seen and resolved a similar problem.
    Thanks in advance for any help you can offer!
    Dale V. Georg
    Indus Consultancy Services [email protected]
    Mack Trucks, Inc. [email protected]
    Date: Wed, 28 May 97 13:47:20 PDT
    From: dg7077a
    To: Forte Technical Support
    Cc: Gardner, Steve
    Subject: Link Problems With Borland C++ 4.52
    Name of requestor: [Dale V. Georg / Alaiah Chandrashekar]
    Company: [Indus Consultancy Services]
    Phone for callback: [(610) 709-3956]
    Customer Site: [Mack Trucks, Inc.]
    Product: [Forte]
    Version of Forte: [2.0.H.1]
    Server OS: [SunOS 5.5.1]
    Client OS: [Windows 3.1]
    DBMS: [Oracle 7.2.3]
    Reproducible?: [Yes]
    Brief description: [Link Problems With Borland C++ 4.52]
    Complete description of problem or question:
    We are attempting to write a C-wrapper interface from Forte to Crystal
    Reports' Report Engine. We are using Borland C++ version 4.52.
    Unfortunately, we have been unable to get a clean compile after a day
    and half of effort. We get as far as the link stage of the
    compilation, and
    the compiler aborts with an "Unknown symbol" error message for each
    of the functions we are trying to wrapper. We have tried a number of
    ideas to fix this problem, and are continuing to try to solve it on
    our own,
    but any help would be greatly appreciated. Please have someone call
    Alaiah Chandrashekar at the number above as soon as possible.
    Thanks!
    Dale V. Georg
    Indus Consultancy Services [email protected]
    Mack Trucks, Inc. [email protected]
    -------------

    We are trying to wrapper Crystal Reports from Forte. I know that there
    are a number of other people in this same boat, as I've seen messages
    posted here at various points during the past few weeks. We are having
    a particular problem with getting the compile to go through, which we
    have sent in to Forte Tech Support. I'm forwarding the message I sent
    Tech Support to this group in the hopes that someone here may have
    already seen and resolved a similar problem.
    Thanks in advance for any help you can offer!
    Dale V. Georg
    Indus Consultancy Services [email protected]
    Mack Trucks, Inc. [email protected]
    Date: Wed, 28 May 97 13:47:20 PDT
    From: dg7077a
    To: Forte Technical Support
    Cc: Gardner, Steve
    Subject: Link Problems With Borland C++ 4.52
    Name of requestor: [Dale V. Georg / Alaiah Chandrashekar]
    Company: [Indus Consultancy Services]
    Phone for callback: [(610) 709-3956]
    Customer Site: [Mack Trucks, Inc.]
    Product: [Forte]
    Version of Forte: [2.0.H.1]
    Server OS: [SunOS 5.5.1]
    Client OS: [Windows 3.1]
    DBMS: [Oracle 7.2.3]
    Reproducible?: [Yes]
    Brief description: [Link Problems With Borland C++ 4.52]
    Complete description of problem or question:
    We are attempting to write a C-wrapper interface from Forte to Crystal
    Reports' Report Engine. We are using Borland C++ version 4.52.
    Unfortunately, we have been unable to get a clean compile after a day
    and half of effort. We get as far as the link stage of the
    compilation, and
    the compiler aborts with an "Unknown symbol" error message for each
    of the functions we are trying to wrapper. We have tried a number of
    ideas to fix this problem, and are continuing to try to solve it on
    our own,
    but any help would be greatly appreciated. Please have someone call
    Alaiah Chandrashekar at the number above as soon as possible.
    Thanks!
    Dale V. Georg
    Indus Consultancy Services [email protected]
    Mack Trucks, Inc. [email protected]
    -------------

  • Link Problem with port 2 in WLC 4402

    Hi,
    I have a problem with port 2 in Wireless Lan Controler 4402. The problem is that the distribution port 2 of the WLC not link with the switch (3750). We receive the WLC and we follow the autostart wizard and we enable LAG. The wizard finish, I restart the system and all works fine. The two distribution ports of WLC, 1 and 2 appears UP and the LAG works correctly. After this we upgrade the firmware of the WLC to the version AIR-WLC4400-k9-6-0-182-0.aes and we restart the system again but at this time port 2 does not link and port 1 link OK. We do not know the reason why port 2 doesn´t link? Could you help me ?
    Thank in advance.
    Regards.

    Does it properly refuse authentication ? Or does the login page stop appearing or something ?
    There was a bug with the webauth dying under heavy load, regardless of number of identical accounts used.
    One good way for you to check would be, when problem occurs, to create a second backup guest user and see if that would start working. If it doesn't, the account is not the problem.
    I'm not aware of any maximum of usage of the same account.
    Which 4.2 exactly are you running ?

  • AD Link Problem with ACS 5.2

         Hello at all,
    we have a Problem with a ACS 5.2. We have installed the Software on a VMware. The Machine ist running without Problems.
    Now i would like connect to our AD. The connection is o.k but i can not see any Groups when i make a search.
    I get a failure Message in the CLI:
    *** glibc detected *** corrupted double-linked list: 0x43b77858 ***
    Did anyone know this Message?
    Thanks for help.

    Hi Erick,
    thanks for your Answer.
    I can solve this Problem. I have Installed the ACS Version 5.2 but without the new Patch.
    With this Patch i can connect to the AD and can see all Groups.
    regards
    Andreas

  • Link problem with Fireworks CS5 - net::ERR_FILE_NOT_FOUND

    Hi,
    I'm having trouble with the hotspot links in Fireworks CS5. When I've added the links I want and click F12 to preview in Chrome, it loads the page without problems. But when I click on one of the links I get the following message:
    Webpage cannot be found
    There was no webpage at the adress: file:///C:/Users/Margiiie/AppData/Local/Temp/FWTemp/LinkedPage.htm
    Error 6 (net::ERR_FILE_NOT_FOUND): Could not find file or catalogue.
    (translated by me from Swedish to English, so it might not be 100% correctly translated).
    A few days ago I used Revo Uninstaller Pro to remove some files from my computer, and I remember clicking "Remove temporary Internet Files" on all of the web browsers. This might have something to do with the problem, but I can't seem to able to recover the files I removed..
    So, I really need som help here! Do you think that the removal of the temp files is the problem? What can I do about it?
    Regards,
    Margiiie

    If you tried a) refreshing/reloading the page within the browser and b) emptying the contents of the FWTemp folder, and neither of those worked, then I'd take another look at the link itself. Assuming there are other links on the page you've created, compare the links within Fireworks: Are there any differences between them? Would it be possible to re-enter or re-establish the problem link's URL?
    One thing I notice in your intial post is that "LinkedPage.htm" seems all by itself within the FWTemp folder, instead of being placed in a subfolder. When I generate a preview in FW, it places the contents in a folder (named with a random number), like this:
    file:///Users/doug/Library/Application%20Support/Macromedia/Fireworks%208/FWTemp/24327926/ 00000002.htm
    Generally, a website observes a folder hierarchy. I'd kind of expect "LinkedPage.htm" to be in the same folder as the "index.htm" or whatever your problem page is called.
    I have to admit, I don't use Fireworks to create and preview web pages, so I'm not completely versed in how it works for a full website. I'm not 100% certain that previewing an individual page should result in a functional preview of an entire site. In other words, I'm not certain that links are supposed to work if they lead to another page within the same site (assuming you're previewing one page at a time). If this remains a problem, I'd suggest letting it go for now. Try File > Export instead, and make sure you're exporting all the pages in the site. If that works, then you're in good shape.

  • Image Link Problem with Dreamweaver CS4?

    On my website, I have several images that link to other parts on my website. These work no problem when I preview the site, but after I test the links, the images that had those links have purple outlines that really clash with my website's design. Will users see this if they click on my links, and then return to the page? I'm using CS4 right now, and never recalled having this issue come up when using MX. Thanks for the help.

    I got stuck on this one too - not realising that Dreamweaver automatically palces a border on every image link - but the simplest way I found was to have my "Properties" panel showing on the bottom and input 0 into the "Border" box. By having this panel open you can see if you have accidently applied any styles to the image, where it links to, Image size attributes and the Image name.

  • Archive Link problem with redundant document names

    Hi all,
    I have a tricky problem in archive link. I would like to attach some different documents to an HR/PD Organisation unit ( objekttyp pdotype_o )
    All customizing works fine but the problem is, all documents attached to one busines object ID have the same name ( in this case objectnumber.pdf)
    I am not lucky with this issue because  the users must be able to see all documents ( via document finder ) attached to the org. unit  and all what the users get, is a list of  one or more documents with exactly the same name.
    In some cases this are about 10 different documents and this issue is a very bad solution because users have to open all attached docs to recognize which one they need.
    During the import/check in of the documents via transaction OAAD and OAWD, SAP renames the original document name.pdf  into the related object ID.pdf and there is no way to rerename it or influence this process.
    I tried to use some scan software with SAP interface but unfort. with the same result because software of this kind use the archive link interface too and cannot influence the process of check in and rename.
    Has anybody an idea ( third party software, customer development or something like this ) to prevent this problem and give me the possibility to stay with the original document names or change it after check in?
    Thank you in advance
    Rayko

    How you fix this problem?
    I'm with the same problem. Could you help me please?
    Edited by: broullon on Jul 16, 2009 5:31 PM

  • Link problem with Solaris 9

    hello,
    i habe a problem in linking my application under the Solaris 9 os using the forte cc environment. Linking on an older machine under Solaris 8 is ok.
    I get this error:
    ld: fatal: file fz_df_db_anmelden.o: wrong ELF class: ELFCLASS64
    ld: fatal: File processing errors. No output written to FZDFNO
    There must be a conflict with 32 and 64 bit libraries. How can i link either in 32 or 64 bit. I need both, because the application shall also run on an 32 bit system.
    best regards
    Stefan

    What about the bios settings ? The sony laptop that I have as an install guinea pig had a host of problems as long as plug and play was turned on in the bios then I turned off IrDa and the box seemed a bit quicker. Once I turned PnP off the USB ports started working as well as an external hp 3button mouse. Still no luck with the PCMCIA NIC's though...

  • OCCI link problem with gcc2.96 in Redhat7.2, Oracle9.0.1

    When I compiled and linked the occi program occidml.cpp with dynamic shared library, all was OK.
    But when occidml run, segmentation fault happened.
    I'v read a topic that we can build the program with static library to avoid segmentation fault.
    So, I recompiled the program and I used the following command to relink it.
    /usr/bin/g++ -L/ora9/lib/ -L/ora9/rdbms/lib/ -o occidml occi
    dml.o -lclntst9 -locci9 -ldl -lm
    But, a lots of errors happened:
    /ora9/lib//libocci9.a(occiAnyDataImpl.o): In function `oracle::occi::AnyDataImpl::s
    etNull(void)':
    occiAnyDataImpl.o(.text+0x2c2c): undefined reference to `OCIAnyDataConvert'
    /ora9/lib//libocci9.a(occiAnyDataImpl.o): In function `oracle::occi::AnyDataImpl::g
    etDate(void) const':
    occiAnyDataImpl.o(.text+0x2cba): undefined reference to `OCIAnyDataAttrGet'
    /ora9/lib//libocci9.a(occiAnyDataImpl.o): In function `oracle::occi::AnyDataImpl::s
    etBlob(oracle::occi::Blob const &)':
    occiAnyDataImpl.o(.text+0x2d83): undefined reference to `OCIAnyDataAttrSet'
    /ora9/lib//libocci9.a(occiAnyDataImpl.o): In function `oracle::occi::AnyDataImpl::s
    etClob(oracle::occi::Clob const &)':
    occiAnyDataImpl.o(.text+0x2e13): undefined reference to `OCIAnyDataAttrSet'
    /ora9/lib//libocci9.a(occiAnyDataImpl.o): In function `oracle::occi::AnyDataImpl::s
    etBfile(oracle::occi::Bfile const &)':
    occiAnyDataImpl.o(.text+0x2ea9): undefined reference to `OCIAnyDataAttrSet'
    /ora9/lib//libocci9.a(occiAnyDataImpl.o): In function `oracle::occi::AnyDataImpl::s
    etNumber(oracle::occi::Number const &)':
    occiAnyDataImpl.o(.text+0x2f4c): undefined reference to `OCIAnyDataAttrSet'
    /ora9/lib//libocci9.a(occiAnyDataImpl.o): In function `oracle::occi::AnyDataImpl::s
    etDate(oracle::occi::Date const &)':
    occiAnyDataImpl.o(.text+0x2ff3): undefined reference to `OCIAnyDataAttrSet'
    /ora9/lib//libocci9.a(occiAnyDataImpl.o)(.text+0x30b8): more undefined references t
    o `OCIAnyDataAttrSet' follow
    Who can help me ? Is the static library libocci9.a with any problem?

    I tried clicking on the link and nothing whatsoever happened. So I tried a control click and selected "Open Link in new window" and a new window opened, followed by the Utilities folder opening. I made a test.html file with the link in it, put it on my startup drive and it worked as expected, and ditto for putting it on a second internal drive. I then put it on my iDisk and navigated to it thru its web site address of
    http://homepage.mac.com/francines/testlinks.html
    and discovered that the two other "local" operation links (to launch ScriptEditor) both worked, but the open folder link no longer did, except by using control click and choosing either "Open link in new window" or new tab. A new Safari window or tab opens, then the Utilities folder opens.
    I then tried the page in Firefox, and it didn't work AT ALL, not even with new window or tab. I then tried Mozilla and Netscape. Same deal. The ancient Internet Explorer opened the Utilities folder inside a new browser window rather than the Finder. This might be a clue as to why the link doesn't work as expected, but unfortunately I don't know what it means.
    Francine

  • FCP I-Link problem with DSR-1500A

    FCP 6.01, G5 and OSX will not work with Sony DSR-1500A. System Profiler recognizes that something is plugged in, the color wheel spins for a while then I get a warning that the device can not be recognized. The I-Link indicator on the DRS-1500A never stops blinking. I have used two different DSR-1500A's and Two different FCP systems. The DSR-1500A works fine when I connect the DSR-11 as an I-Link source.

    Thank you for your input.
    It seems that the series in which the device come up is important.
    I shut the DSR-1500A and my laptop down.
    Installed the firewire cable.
    Powered up the DSR-1500A
    Powered up my MacBook Pro
    Started Systems Profiler which reported the deck 1503 interface card not a DSR-1500A deck.
    I link light continued to blink.
    I played a tape in the 1500A and got A/V into my MacBook Pro.
    Tried the same process on my second DSR-1500A and still got the error message that the device could not be listed. Max bus speed 800 Mb/s
    Tried the same process with my G5 and got the same error message.
    I think I have one bad 1503 board on one of my DSR-15000A's and I think that the Mac's have a problem identifying and linking to the DSR-1500A.
    So My problem is still unsolved.
    Anyone else out there interfacing a SR-1500A with their FCP?

  • Linker problem with M series card

    I am attempting to incorporate a PCI 625 DAQ M series card into a Borland C++Builder application. To get started I have used the code from the example "ContAccelSamps-IntClk-AnlgStart" in the documentation. I have added "nidaq32.lib" to the project and included "nidaq.h" and "NIDAQmx.h" as in the example.
    Everything compiles correctly. However on linking I get the error message "NIDAQ32.LIB contains invalid OMF record, type 0x21 (possibly COFF). I am not sure what this means.
    Is this a bug in NIDAQ32.LIB or am I missing something simple here?
    In an attempt to resolve the problem I have rebuilt the library from the dll, but this doesn't work either, the new library is only 215 KB whereas the original one is 886 KB.
    So as a su
    bsidiary question might I ask how you build libraries from NI dlls.

    Hello,
    I apologize for the confusion around this. Currently, the NI-DAQmx C import library for Borland is only installed with LabWindows/CVI DAQ support. However, I am attaching the NI-DAQmx 7.3 import library that you will need for Borland support. We are working on posting this in a Knowledge Base on our website. Here is a link to another discussion forum thread in which a customer used with borland's "coff2omf" to work-around the linker issues they were seeing. This link also discusses another problem you may run into with floating point initialization that you may need to take into account. Hopefully this information will enable you to get your application working with Borland and M Series. If not, please let us know.
    http://exchange.ni.com
    /servlet/ProcessRequest?RHIVEID=101&RPAGEID=137&HOID=5065000000050000005EC50100&HTHREAD=000116062&UCATEGORY_0=_30_%24_12_&UCATEGORY_S=0
    thanks,
    Nicole
    Attachments:
    NIDAQmx.lib ‏487 KB

  • html:link problem with Mozilla vs. IE

    Hello,
    I am experiencing the following situation.
    In IE the following segment of code works properly:
    <td>
    <table border="0" align="center" cellpadding="0" cellspacing="0">
    <tr>
         <html-el:link action="zone3/g036Play">
         <td><html-el:img srcKey="detailsLeft2" bundle="ZONE3_IMAGE_RESOURCE_KEY" border="0" width="17" height="18"/></td>
         <td class="details"><bean-el:message key="couponsHistory.details" bundle="XLTS_MESSAGE_RESOURCE_KEY"/></td>
         <td><html-el:img srcKey="detailsRight2" bundle="ZONE3_IMAGE_RESOURCE_KEY" border="0" width="9" height="18"/></td>
         </html-el:link>
    </tr>
    </table>
    </td>BUT in Mozilla the link doesn't work
    On the other hand, i found out that if i place the <html:link> tag outside of the table, then the link will work properly for mozilla but won't work for IE.
    Is there a way i can work this problem around?
    Thank you very much in advance.
    Frini

    ok, sorry, my mistake, i was looking at the wrong fragment of code.
    It output the HTML code:
       <td><a href="/XltsWeb/zone3/g036Play.web"><img src="images/xlts/details_left_lottery.gif" height="18" width="17" border="0"></td>
       <td class="details">Details</td>
       <td><img src="images/xlts/details_right1_lottery.gif" height="18" width="9" border="0"></a></td>which still doesn't work in Mozilla as a link...
    But if i place <html:link> outside the table and inside TD, i get:
    <td>
      <a href="/XltsWeb/zone3/g036Play.web"><table border="0" align="center" cellpadding="0" cellspacing="0">
      <tr>
      <td>
       <td><img src="images/xlts/details_left2_lottery.gif" height="18" width="17" border="0"></td>
       <td class="details">Details</td>
       <td><img src="images/xlts/details_right2_lottery.gif" height="18" width="9" border="0"></td>
       </td>
       </tr>
       </table></a>
    </td>and works in Mozilla, BUT no, none of the above works in IE!!!!!!!!!!!!!!!!!!!!!
    The only code that works in IE, is the first that i posted!!!!

  • Link problem with domain

    So this site I've just completed has a Flash home page. My first in CS3 and it seems to work great, except;
    the links work when you visit. http://finessecuisine.com
    and the links don't work when you visit http://www.finessecuisine.com
    It's the same file you're seeing in both instances, so I don't understand what the problem is.
    FLA available at http://pointbcommunications.com/FinesseHome.zip 
    I'll take any advice at this point. Thanks for looking.

    you have an apparent (to flash) cross-domain security issue:
    SecurityError: Error #2137: Security sandbox violation: http://finessecuisine.com/images/uploads/FinesseHome.swf cannot navigate window _self within http://www.finessecuisine.com/ (allowScriptAccess is sameDomain). Attempted URL was http://www.finessecuisine.com/fc/page/people/.
        at global/flash.net::navigateToURL()
        at MethodInfo-86()
        at Function/http://adobe.com/AS3/2006/builtin::apply()
        at gs::TweenLite/complete()
        at gs::TweenLite/render()
        at gs::TweenLite$/updateAll()
    to remedy, use a local path to your swfs and any other assets you load.

  • Link Problem with Multiple Helpsets

    We use OHW with many helpsets, each with its own Link file. But the links shows the combination of the items from all the helpsets.
    Robohelp is used to generate the OHW files. We have different projects generating each set of help files. The auto generated ids in link file seems to be unique in a project(Link01, Link02...). But when all helpsets are combined, the links from all helpsets get combined and shown.
    Is this correct, how to display the links of that particular helpset only?

    Lijith,
    By "links", are you talking about associative links or topic ids? Either way, both of them use IDs that are global across all books shared together and must be unique. So if you have OHW's combineBooks parameter set to true, you must not reuse topic IDs between the books, and any associative link IDs will be shared -- thus putting items frm both books into the same link.
    Essentially, when combineBooks=true, think of it as if OHW merges the books together on the fly.
    -brian

Maybe you are looking for

  • Since installing 10.7.3 Mail and Address Book no longer load and report errors. Anyone else experiencing this? Safari works fine.

    Everything worked fine prior to the installation. I am aware of bug issues that people are reporting with regard to no applications working and strange error messages. My MacBook Air is fine; my wife's MacBook is fine. It's my iMac 12,1 that isn't.

  • I am running a TRIAL VERSION of Adobe Photoshop CS6 Extended and Bridge does not open.  Help?

    I am running a TRIAL VERSION of Adobe Photoshop CS6 Extended on MAC and Bridge does not open.  It did open when I first downloaded it - but now a black question mark is over the BR icon and it does not open up.  Any ideas from anyone? 

  • Cannot reload vi after saving

    Dear everyone, I have been creating a fairly large LabVIEW application with v8.2.1 over the last 2 months. Now when I save my top level vi, it cannot be re-opened.  LabVIEW starts loading and displays the title bar and then hangs without displaying t

  • Xi-Fi Fatality doesn't b

    Here are my machine specs: Motherboard: Intel DG35EC Processor: Intel E8400 Graphic Card: evga Geforce 8800GTS Sound Card Xi-Fi Fatality OS: Windows XP SP2 The Problem: After installing the drivers and rebooting everything worked fine. I heard perfec

  • CS2, win, loading fonts

    I'm working primarily in Illustrator, but this question may pertain to all the CS2 programs. When I first open Illustrator in the morning, I find myself waiting for what seems like 5 minutes for all my fonts to load. Is there a way to open the progra