IDCS3 Mac: Strange Link error

I am compiling a CS3 plugin and getting a link error I cannot track down. It looks like this:
Linking /source code/.../CRF(1 error)
can't locate file for: -lPublicPlugin
file: - lPublicPlugin is not an object file (not allowed in a library)
I have done several searches on variations of lPublicPlugin, including IPublicPlugin, and PublicPlugin,and the only thing that comes close is a reference to the libpublicplugin.a library that is included by DollyXs when I generate the project.
Can anyone suggest a method for tracking down this problem?
TIA!
John

I have found my problem and all InDesign developers who are using Xcode needs to know what it was.
This project was originally created by DollyXs, which included all appropriate library search paths for a successful link. However, I needed to add the mysqlclient.a library as well, so I did so by dragging and dropping. The result was that Xcode erased the library search path that pointed to the InDesign static library "libPublicPlugIn.a," replacing it with the path that pointed to the dropped library.
So, if you need to add additional libraries to the project, take care that you somehow preserve the library search paths that already exist in that field, if you intend to drag and drop the library onto the project.
I do not know if this error will be prevented if the programmer uses the Add Files dialog to add the library.
Because of the importance of this information, I am also placing this message in its own thread on the forum.
R,
John

Similar Messages

  • Mac CS4 Linker Error with IAIColorSpace.cpp

    Hi Folks,
    I'm trying to use AIColorSpace in my Mac AICS4 Plug-In using Xcode 3.1.1 on Leopard 10.5.7, but I'm getting a linker errors (see below).
    Has anyone here included "IAIColorSpace.cpp" in their project and successfully compile an AICS4 plug-in using Xcode 3.1.1 on Leopard?
    When I include IAIColorSpace.cpp in my project, I get a linker error of:
    _sAIColorSpace, referenced from
    _sAIColorSpace$non_lazy_ptr in IAIColorSpace.o
    symbol(s) not found
    collect2: Id returned 1 exit status
    There are many Google hits of "non_lazy_ptr" errors with Xcode, but nothing has helped me solve this issue. Any help would be most appreciated!
    Thanks!
    -- Jim

    The usual culprit is that sAIColorSpace needs to be defined in all the right places. Typically its EXTERN'd in both a header & a cpp, as well as included in a list of suites to load (along with the version of the suite to load). Have you added it to all three places? Usually you just find the spots where all the other suties are and cut & paste it into their number. Where that would be depends on whether you're using your own plugin setup or if you're working off one of the Adobe skeleton samples plugins.

  • Strange Linker error using Forte 6

    Hi,
    I am getting an unusual linker error while trying to compile something using Forte 6 update 2. First some backgrond
    We have an internal application currently running on a Solaris 2.6 box. I wish to move it to a Solaris 8 box. The application uses mainly apache, perl and mysql. One of the perl modules used is the old SPGrove module written by James Clark (www.jclark.com), which in turn uses the libsp.a library from the 'sp' distribution by the same author. I can find information on compiling/running 'sp' on O/S versions upto solaris 7 but not 8. Having tried all the available versions of gcc I finally gave up and tried Forte 6.
    Having had problems with applications and dynamic libraries complied with different compilers before I have compiled perl 5.6.1 using Forte 6, I have installed all the required perl modules and I have successfully compiled version 1.3.4 of the 'sp' package.
    The old SGML::SPGrove modules is no longer available and has been replaced by two newer ones, SGML::Grove, which installs fine, and SGML::SPGroveBuilder, which has some C++ code which is linked against the libsp.a library as mentioned above. The module (once certain options have been set to get the correct environment) compiles fine but when I run the test suit I get the following error.
    Can't load 'blib/arch/auto/SGML/SPGroveBuilder/SPGroveBuilder.so' for module SGML::SPGroveBuilder: ld.so.1: /usr/local/bin/perl: fatal: relocation error: file blib/arch/auto/SGML/SPGroveBuilder/SPGroveBuilder.so: symbol __1cG__CrunLvector_copy6Fpv1IIpF11_vpF1_v_v_: referenced symbol not found at /usr/local/lib/perl5/5.6.1/sun4-solaris/DynaLoader.pm line 206.
    The symbol '__1cG__CrunLvector_copy6Fpv1IIpF11_vpF1_v_v_' is contained in libCrun.so in the Forte installation. I have no idea what it is, or why I get the error.
    Sorry to be so long winded, but I wanted to give enough information so that I didnt get 'too many' easy to answer questions about the environment.
    'uname -snrvmapiX' for the system is:
    SunOS atlas 5.8 Generic_108528-13 sun4u sparc SUNW,Ultra-60System = SunOS
    Node = atlas
    Release = 5.8
    KernelID = Generic_108528-13
    Machine = sun4u
    BusType = <unknown>
    Serial = <unknown>
    Users = <unknown>
    OEM# = 0
    Origin# = 1
    NumCPU = 1
    Many thanks.
    Sean Timmins
    Systems Administrator

    Just to clarify, the I get the error during the 'make test' part of the normal perl module build process for installing the SGML::SPGroveBuilder module (perl Makefile.PL; make; make test; make install).
    Perl and SGML::SPGroveBuilder are both complied using Forte 6 update 2. The only difference being that perl (being normal C code) was compiled using the C compiler '/usr/local/SUNWspro/bin/cc' and the module requires the C++ complile '/usr/local/SUNWspro/bin/CC'.
    I have to make minor modifications to Makefile.PL before it will compile at all. These modifications are:
    1) Forcing the C++ compiler as perl will try to use exactly the same binary as was used to compile itself.
    2) Setting a few #define's so that the same ones are used to build the module as were used to build the sp library that is linked in with the module.
    3) Adding the various directories where both libsp.a (yes statically linked, no dynamic one in the sp distribution) and the required header files (all in the sp distribution) are located.
    I have since tried recompiling perl (with Forte 6 update 2) with no dynamicaly loaded libraries and get the same error. I have also found a tiny little patch to OpenSPv1.5pre5 (which is the replacement for the original sp distribution) which allowed me to compile eveything with gcc 3.1, perl, opensp (v1.5pre5) and SGML::SPGroveBuilder, and I get a very similar error at the same stage but a different symbol name.
    I am begining to think that its gone to far and there are too many branching oppertunities where I have made a mistake (I've really tried way way way too many combinations now), or that the SPGroveBuilder module simply has a probelm with the C++ code in it. It has not been updated in some time.
    I am going to try removing everything from the box and start from scratch, patch it to the hilt and try it from the beginning.
    Of course, any flashes of brilliance that come to mind would still be greatly appreciated :-)
    Sean Timmins
    Systems Administrator

  • Compiling packages with libapr in it, strange link errors

    On my Solaris 10 boxen, suddenly I cannot build stuff anymore that utilizes Apache's apr.
    This includes Apache 2 (2.0.53 and 2.0.54), and subversion.
    The funny thing is, I did build 2.0.53 a few weeks ago, and did not bump into the problem. Rebuilding it, with identical configure options, environment vars and make invocation, leads to the following errors.
    They make little sense to me. Clues, anyone?
    The following output is from an attempt to build subversion. The same errors occur when building Apache 2:
    ---- Snip ----
    phil@turing> pwd; cat PHIL/build
    /phil/sw/sunos/i386/obj/subversion-1.1.4
    #! /bin/sh
    unset CPPFLAGS
    unset LDFLAGS
    unset LD_LIBRARY_PATH
    LD_RUN_PATH=/phil/sw/sunos/i386/lib; export LD_RUN_PATH
    /phil/sw/src/subversion-1.1.4/configure \
    --prefix=/phil/sw/sunos/i386/pkg/subversion-1.1.4  \
    --disable-mod-activation  \
    --enable-javahl  \
    --with-berkeley-db=/phil/sw/sunos/i386/pkg/db-4.2.52  \
    --with-editor=vi  \
    --with-zlib
    make
    phil@turing> sh ./PHIL/build
    /phil/sw/sunos/i386/obj/subversion-1.1.4/apr/.libs/libapr-0.so: undefined reference to `pthread_rwlock_tryrdlock@SUNW_1.2'
    /phil/sw/sunos/i386/obj/subversion-1.1.4/apr/.libs/libapr-0.so: undefined reference to `pthread_exit@SUNW_0.9'
    /phil/sw/sunos/i386/obj/subversion-1.1.4/apr/.libs/libapr-0.so: undefined reference to `pthread_attr_setstacksize@SUNW_0.9'
    /phil/sw/sunos/i386/obj/subversion-1.1.4/apr/.libs/libapr-0.so: undefined reference to `pthread_key_create@SUNW_0.9'
    /phil/sw/sunos/i386/obj/subversion-1.1.4/apr/.libs/libapr-0.so: undefined reference to `dlerror@SUNW_1.22'
    /phil/sw/sunos/i386/obj/subversion-1.1.4/apr/.libs/libapr-0.so: undefined reference to `write@SUNW_0.9'
    /phil/sw/sunos/i386/obj/subversion-1.1.4/apr/.libs/libapr-0.so: undefined reference to `pthread_key_delete@SUNW_0.9'
    /phil/sw/sunos/i386/obj/subversion-1.1.4/apr/.libs/libapr-0.so: undefined reference to `pthread_create@SUNW_0.9'
    /phil/sw/sunos/i386/obj/subversion-1.1.4/apr/.libs/libapr-0.so: undefined reference to `pthread_setspecific@SUNW_0.9'
    /phil/sw/sunos/i386/obj/subversion-1.1.4/apr/.libs/libapr-0.so: undefined reference to `gethostname@SUNWprivate_1.1'
    /phil/sw/sunos/i386/obj/subversion-1.1.4/subversion/libsvn_subr/.libs/libsvn_subr-1.so: undefined reference to `open@SUNW_0.9'
    /phil/sw/sunos/i386/obj/subversion-1.1.4/apr/.libs/libapr-0.so: undefined reference to `writev@SUNW_1.2'
    /phil/sw/sunos/i386/obj/subversion-1.1.4/apr/.libs/libapr-0.so: undefined reference to `pthread_rwlock_trywrlock@SUNW_1.2'
    /phil/sw/sunos/i386/obj/subversion-1.1.4/apr/.libs/libapr-0.so: undefined reference to `waitpid@SUNW_0.9'
    /phil/sw/sunos/i386/obj/subversion-1.1.4/apr/.libs/libapr-0.so: undefined reference to `fcntl@SUNW_0.9'
    /phil/sw/sunos/i386/obj/subversion-1.1.4/apr/.libs/libapr-0.so: undefined reference to `pthread_rwlock_init@SUNW_1.2'
    /phil/sw/sunos/i386/obj/subversion-1.1.4/apr/.libs/libapr-0.so: undefined reference to `pthread_join@SUNW_0.9'
    /phil/sw/sunos/i386/obj/subversion-1.1.4/apr/.libs/libapr-0.so: undefined reference to `select@SUNW_1.2'
    /phil/sw/sunos/i386/obj/subversion-1.1.4/apr/.libs/libapr-0.so: undefined reference to `pthread_sigmask@SUNW_0.9'
    /phil/sw/sunos/i386/obj/subversion-1.1.4/apr/.libs/libapr-0.so: undefined reference to `pthread_mutex_consistent_np@SUNW_1.3'
    /phil/sw/sunos/i386/obj/subversion-1.1.4/apr/.libs/libapr-0.so: undefined reference to `pthread_mutexattr_setrobust_np@SUNW_1.3'
    /phil/sw/sunos/i386/obj/subversion-1.1.4/apr/.libs/libapr-0.so: undefined reference to `pthread_equal@SUNW_0.9'
    /phil/sw/sunos/i386/obj/subversion-1.1.4/apr/.libs/libapr-0.so: undefined reference to `pthread_rwlock_destroy@SUNW_1.2'
    /phil/sw/sunos/i386/obj/subversion-1.1.4/apr/.libs/libapr-0.so: undefined reference to `pthread_attr_init@SUNW_0.9'
    /phil/sw/sunos/i386/obj/subversion-1.1.4/apr/.libs/libapr-0.so: undefined reference to `dlopen@SUNW_1.22'
    /phil/sw/sunos/i386/obj/subversion-1.1.4/apr/.libs/libapr-0.so: undefined reference to `pthread_mutexattr_settype@SUNW_1.2'
    /phil/sw/sunos/i386/obj/subversion-1.1.4/apr/.libs/libapr-0.so: undefined reference to `pthread_attr_getdetachstate@SUNW_0.9'
    /phil/sw/sunos/i386/obj/subversion-1.1.4/apr/.libs/libapr-0.so: undefined reference to `pthread_detach@SUNW_0.9'
    /phil/sw/sunos/i386/obj/subversion-1.1.4/apr/.libs/libapr-0.so: undefined reference to `read@SUNW_0.9'
    /phil/sw/sunos/i386/obj/subversion-1.1.4/apr/.libs/libapr-0.so: undefined reference to `pthread_getspecific@SUNW_0.9'
    /phil/sw/sunos/i386/obj/subversion-1.1.4/apr/.libs/libapr-0.so: undefined reference to `poll@SUNW_1.2'
    /phil/sw/sunos/i386/obj/subversion-1.1.4/apr/.libs/libapr-0.so: undefined reference to `pthread_attr_setdetachstate@SUNW_0.9'
    /phil/sw/sunos/i386/obj/subversion-1.1.4/apr/.libs/libapr-0.so: undefined reference to `dlsym@SUNW_1.22'
    /phil/sw/sunos/i386/obj/subversion-1.1.4/apr/.libs/libapr-0.so: undefined reference to `pthread_rwlock_rdlock@SUNW_1.2'
    /phil/sw/sunos/i386/obj/subversion-1.1.4/apr/.libs/libapr-0.so: undefined reference to `pthread_rwlock_wrlock@SUNW_1.2'
    /phil/sw/sunos/i386/obj/subversion-1.1.4/apr/.libs/libapr-0.so: undefined reference to `pthread_self@SUNW_0.9'
    /phil/sw/sunos/i386/obj/subversion-1.1.4/apr/.libs/libapr-0.so: undefined reference to `dlclose@SUNW_1.22'
    /phil/sw/sunos/i386/obj/subversion-1.1.4/apr/.libs/libapr-0.so: undefined reference to `pthread_rwlock_unlock@SUNW_1.2'
    /phil/sw/sunos/i386/obj/subversion-1.1.4/subversion/libsvn_subr/.libs/libsvn_subr-1.so: undefined reference to `fsync@SUNW_0.9'
    /phil/sw/sunos/i386/obj/subversion-1.1.4/apr/.libs/libapr-0.so: undefined reference to `pthread_once@SUNW_0.9'
    /phil/sw/sunos/i386/obj/subversion-1.1.4/apr/.libs/libapr-0.so: undefined reference to `sigaction@SUNW_0.9'
    collect2: ld returned 1 exit status
    make: *** [subversion/clients/cmdline/svn] Error 1
    ---- Snip ----

    Same thing with curl and others....
    root@sol10[20:50] > gcc -v
    Reading specs from /usr/local/lib/gcc/sparc-sun-solaris2.10/3.4.4/specs
    Configured with: ./configure --prefix=/usr/local
    Thread model: posix
    gcc version 3.4.4
    What gives?
    make[2]: Entering directory `/home/src/curl-7.14.0/lib'
    make[2]: Leaving directory `/home/src/curl-7.14.0/lib'
    make[1]: Leaving directory `/home/src/curl-7.14.0/lib'
    Making all in src
    make[1]: Entering directory `/home/src/curl-7.14.0/src'
    make all-am
    make[2]: Entering directory `/home/src/curl-7.14.0/src'
    /bin/ksh ../libtool tag=CC mode=link gcc -g -O2 -o curl main.o hugehelp.o urlglob.o writeout.o writeenv.o getpass.o homedir.o strtoofft.o timeval.o ../lib/libcurl.la -lsocket -lnsl -lz
    gcc -g -O2 -o .libs/curl main.o hugehelp.o urlglob.o writeout.o writeenv.o getpass.o homedir.o strtoofft.o timeval.o ../lib/.libs/libcurl.so -lsocket -lnsl -lz -Wl,--rpath -Wl,/usr/local/lib
    ../lib/.libs/libcurl.so: undefined reference to `dlopen@SUNW_1.22'
    ../lib/.libs/libcurl.so: undefined reference to `dlsym@SUNW_1.22'
    ../lib/.libs/libcurl.so: undefined reference to `dlclose@SUNW_1.22'
    collect2: ld returned 1 exit status
    make[2]: *** [curl] Error 1
    make[2]: Leaving directory `/home/src/curl-7.14.0/src'
    make[1]: *** [all] Error 2
    make[1]: Leaving directory `/home/src/curl-7.14.0/src'
    make: *** [all-recursive] Error 1

  • Unsatisfied link error in mac osx 10.2.3

    Hi,
    unsatisfied link error in mac osx 10.2.3
    can you solve the problem why the error is occuring when i am trying to set port for printer .after seting port in the application then the swiping takes place. as the application is running but unable to communicate to wireless printer through bluetooth. as everything is fine (files like cu.dev and tty.dev are created in mac and i selected that file and saved it.swiping is not done through wireless ). the error i got is
    ERROR LOADING linuxSerialParallel:java.lang.unsatisfiedLinkError: no linux serialparallel in java library.path
    java.lang.unsatisfiedlinkerror:is session active
    please respond immediately regarding this issue
    thanking you,
    babu

    Your problem is definitely not related to 'Community Feedback and Suggestions'. And I cannot see any relationship to Oracle (at least according to the given informations).
    Werner

  • Safari Crash - Problem with doodle (planer) app  -  doodle web links cause safari to crash with a very strange message "Error - Please make sure Safari is not used in Private Modus" (translated from german) No Privat Modus buttom in ios 7 safari settings!

    Safari Crash - Problem with doodle (planer) app  -  doodle web links cause safari to crash with a very strange message "Error - Please make sure Safari is not used in Private Modus" (translated from german) No Privat Modus buttom in ios 7 safari settings! Works fine with an older Safari Version. Web link, call doodle app.  You could see the website in the backround working but safari crashes after clicking on the error window.   Any suggestions?

    Turn off Private Browsing.
    Tap "Private" on Safari Screen to disable Private Browsing. When top of screen is white, Private Browsing is off.

  • HT1349 my itunes on my laptop (not a mac) has an error message that reads "the procedure entry point_objc_load_image could not be located in the dynamic link library.objc.dll"  then another window will come up telling to to uninstall the apple mobile and

    my itunes on my laptop (not a mac) has an error message that reads "the procedure entry point_objc_load_image could not be located in the dynamic link library.objc.dll"  then another window will come up telling to to uninstall the apple mobile and itunes and reinstall them?  will this delete everythin in the itunes account?  please help

    This might help https://discussions.apple.com/thread/5821701

  • I tried to reload a previously downloaded CS3 program on to my new hard drive and this is the message when I click on the english link for Mac products: HTTP ERROR: 404 /support/downloads/dlm/main.jsp RequestURI=/support/downloads/dlm/main.jsp

    I tried to reload a previously downloaded CS3 program on to my new hard drive and this is the message when I click on the english link for Mac products: HTTP ERROR: 404 /support/downloads/dlm/main.jsp RequestURI=/support/downloads/dlm/main.jsp

    Make sure you have cookies enabled for your browser.  Try using a different browser if the problem continues.

  • How to sort out error downloading perpetual license of the CS6 Design Standard for MAC: JRun Servlet Error 413  Header Length too Large?

    How to sort out error downloading perpetual license of the CS6 Design Standard for MAC: JRun Servlet Error 413  Header Length too Large?
    Just bought the perpetual license online - student-teacher version. Received email confirming my eligibility and followed all instructions to a 't', but still got this 413 error message, and cannot continue.
    Would anyone be able to help me?
    Or how can I get in touch with Adobe themselves?
    How do you get to the chat? I bought it with their help, but cannot remember how to get there again. Took me ages to find the chat.
    Cheers!!! Thanks a million! Any help is welcome!!!!

    Make sure you have cookies enabled and clear your browser's cache before you try downloading.  If it continues to present that error try using a different browser.
    As far as getting to a chat link goes, it can be hit or miss...  Start Here  If after selecting relevant responses you are unable to find a solution, choose "Still need help? Contact us." and the chat contact option.

  • Invalid sibling link error

    I have a 15" PB which gave an "invalid sibling link error" one month ago and I was not able to even repair it using DiskWarrior. I have Apple Care Protection plan, so I sent it for repairs and the repair guys replaced the motherboard as they suspected it was the reason. On return, I reformatted the HD and installed everything from stratch. Everything was working fine till last Saturday morning, when computer would not boot up. So I checked using Disk Utility from PB DVD, and the dreaded "invalid sibling error" came up again. Since I have a bootable backup of the HD, I formatted the HD and tried to load the system on the HD from the backup copy. But the writing of backup using CCC hung up and I had to quit it. After that I was not able to find the HD using Disk Utility from DVD.
    I have sent it for repairs again, but can anyone help me understand the core problem here. Since last time they replaced the motherboard, I think they will replace the HD this time around. Is the logic board, motherboard or the HD that is the root cause of the problem?
    Powerbook G4   Mac OS X (10.4.7)   100GB HDD, 1.5GB RAM

    I had never heard of "invalid sibling link error" until you post, and when I ran a search on it the best explanation I could find is that it is a directory-related problem. See the following (assuming it is correct): http://www.computing.net/mac/wwwboard/forum/2584.html The suggestion there, though, is that DIsk Warrior should be able to fix the problem, and you've already told us that you tried using Disk Warrior on it and it did not work.
    Very puzzling. Please post back what happens when you get your PB back from being repaired.
    Good luck.
    -- JDee

  • Outlook for mac, message HTTP error resource not found 18596

    outlook for mac, message HTTP error resource not found 18596 really strange and outlook is connected and as soon as you send a mail you suddenly get the message, really annoying actually, seems to be an old problem!!!
    Help appreciated!!!!!!!!

    Same probelm any suggestions ????

  • Sibling Link Errors

    i recently purchased the Mac Pro which i connected through ethernet to my older Power Mac G4 MDD Dual 1GHZ.
    i discovered last week that my Mac Pro reported an error in Disk Utility "Invalid Sibling Link" and that app could not repair the problem. i purchased Disk Warrior 4.0 and installed OS X on another internal drive (i have four connected internally) and successfully repaired the disk. On a lark, i checked the Power Mac G4 and found that it also reported errors which could not be repaired by Disk Utility, but it did not report the "Invalid Sibling Link Error." Disk Warrior failed to repair the disk (and i am waiting for the CD to arrive in the mail to start up from it to try again, reporting that it encountered two overlapped filed on the disk).
    This week i ran Disk Utility to find that again, my Mac Pro reported the "Invalid Sibling Link" error. i have searched the web and have a basic understanding of what the error is, and many people have experienced the problem. It appears that the error could lead to the start up disk failing to mount, etc. However, i have not experienced any problems with my drive that have been noticeable to me.
    My question is what could be causing me to have this repeated error? Does this indicate an actual hard drive failure? Is there a Mac virus that could cause this? Could it be caused by transfering files over the network or through Apple Remote Desktop?
    Any discussion on this would be helpful. Thanks folks.
    MacPro Dual-Core 3 Ghz   Mac OS X (10.4.9)   ATi X1900 XT, NVIDIA GeForce 7300, 5GB RAM, 2.8TB, 20" DEll LCD, 2xViewSonic 17"

    Which drive gets the error out of all installed, and
    where is it located as far as file name etc. I'm
    wondering if it could happen using an application
    like FCP or CS2 running under Rosetta. Might want to
    map it out and try and isolate it that way. I'd also
    look for any hardware issues you can find for that
    model of hard drive e.g. failures, etc. My two
    cents.
    Michael
    It is the Startup Drive that gets the error on my Mac Pro (the preinstalled drive that came with the Mac), and the start up drive on the MDD G4. The MDD G4 had two files that were cross linked (a Civ file and an iTunes Temp file) that i had to manually delete before Disk Warrior could repair the drive. On the Mac Pro i have used Photoshop CS (1?) a little, but not to any large degree, other than that, i have used Apple's Pages, Safari, and Office... but nothing task intensive.
    i ran Apple's Hardware test which appears to check RAM and the Logic Board and both checked out fine. i used both Disk Warrior and Drive Genius, both report that the S.M.A.R.T. status of the drive is verified and the drive is working properly.
    i am curious if Apple Remote Desktop could cause the error? i frequently copy files from one computer to the other... but i can't fathom why or how this would be the case. But it has to be something, else why get this error twice in the space of a week?
    i had not considered Tiger Cache Cleaner... i will check that out, but again, i don't know if this will tell me WHAT is going on and WHY it is happening.

  • Build Collada DOM 2.2 in X-Code and got _unZOpen, Close a link errors

    I am trying to build Collada DOM 2.2 in XCode and getting following link error.
    Collada DOM is providing minizip (library) which contains zip.h and unzip.h, which is called after calling mac libraries; Is any way I can specify in XCode project build specifications to read minizip from Collada first?
    Building target “viewer” of project “viewer” with configuration “Debug” — (8 errors)
    "_unzGoToNextFile", referenced from:
    daeZAEUncompressHandler::extractArchive(void*, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)in libdom.a(daeZAEUncompressHandler.o)
    "_unzGetCurrentFileInfo", referenced from:
    daeZAEUncompressHandler::extractFile(void*, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)in libdom.a(daeZAEUncompressHandler.o)
    "_unzCloseCurrentFile", referenced from:
    daeZAEUncompressHandler::extractFile(void*, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)in libdom.a(daeZAEUncompressHandler.o)
    "_unzOpenCurrentFile", referenced from:
    daeZAEUncompressHandler::extractFile(void*, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)in libdom.a(daeZAEUncompressHandler.o)
    "_unzReadCurrentFile", referenced from:
    daeZAEUncompressHandler::extractFile(void*, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)in libdom.a(daeZAEUncompressHandler.o)
    "_unzGetGlobalInfo", referenced from:
    daeZAEUncompressHandler::extractArchive(void*, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)in libdom.a(daeZAEUncompressHandler.o)
    "_unzClose", referenced from:
    daeZAEUncompressHandler::~daeZAEUncompressHandler()in libdom.a(daeZAEUncompressHandler.o)
    "_unzOpen", referenced from:
    daeZAEUncompressHandler::daeZAEUncompressHandler(daeURI const&)in libdom.a(daeZAEUncompressHandler.o)
    Your help greatly appreciated.
    Thanks

    Please look into following link
    https://sourceforge.net/forum/forum.php?threadid=2643729&forumid=531263

  • AIR 3 RC Native Extensions On Mac OS X Error

    I'm getting an error when trying to compile a native extension (.framework) for Mac OS X 10.7 with XCode 4.1; I've included "FlashRuntimeExtension.h" in the project but not sure if i'm missing something else as there is a lack of documentation for Native Extensions with XCode for a Mac Framework (the error I get is "_FRENewObjectFromBool" - symbol(s) not found for architecture i386.
    I have AIR 3 RC and the latest Flash installed on my machine.
    I'm not sure what i'm missing?
    Thanks!

    Hi lemonility,
    Could you try the following steps out and let me know if they help?
    1) Select the project in the project navigation window which will show project summary on right
    2) Select 4th tab build phases
    3) Select Link binary with library option
    4) Add framework for which you are getting
    5) Move the framework from main folder to the frameworks folder
    6) Build it again and errors should be gone.
    Thanks,
    Chris

  • How do I fix a "Unsatisfied link error"?

    ProQuest provides a Java application for auto parts. It did function on my system [10.3.9 with all updates]. After logging in on a web site, a "jnlp" file is loaded to the desktop. Double clicking this file causes another download to load the auto parts database.
    But now a, JAVA error Exception reads:
    java.lang.Unsatisfied Link Error: no hpwin32 in java.library.path
    However a similar file "hpwin32.dll" is in: user/Library/caches/JavaWeb Start/cache/http/Depe.startekinfo.com /... /RN client-native.jar/hpwin32.dll
    I deleted the "Depe.startekinfo.com " folder, but it reappeared after logging into their site.
    Security is set to accept all cookies and using Safari and Firefox produces same result.
    Suggestions are appreciated.
    Bob
    Quicksilver G4 w 2 HDs, LaCie 22   Mac OS X (10.3.9)  

    The default VISA timeout is 2 seconds, so your program is missing a byte and timing out.  You might want to log your serial port traffic to see the actual data coming through.  Portmon is a fantastic tool for debugging serial applications: http://technet.microsoft.com/en-us/sysinternals/bb896644.aspx
    Regards,
    Jeremy_B
    Applications Engineer
    National Instruments

Maybe you are looking for

  • How can I get an ImageIcon back from a JToggleButton...

    When I create a JToggleButton I have to create an ImageIcon and pass it to the constructor. e.g. JToggleButton toggleButtonA = new JToggleButton( new ImageIcon( "images/A.gif" ) ); But when I want to get that ImageIcon back, all I can find in the doc

  • Bank service is not appearing in subarea, but able to preview it from admin

    Dear all, I need some help in ESS portal, i have configured the homepage framework and made a zfolder of ess content. In Personnel administration i am unable to see bank details link in Area page, but i am able preview the iview. Here other services

  • Error While Create Business Components From Tables Wizard -- need help asap

    Hi , i have created a view and while create Business Components through wizard for that view i am getting following error. ENTITY CREATION FAILED FOR THE FOLLOWING DATABASE OBJECT NO PRIMARY KEY ATTRIBUTES AND DOES NOT SUPPORT ROWID . USE ENTITY WIZA

  • Internet Sales B2C Subcategories

    Hello, We want in our shop to get the subcategories we get clicking on the categories shown on the left frame of the web, in the middle frame (instead of a message "No products were found"). We're trying to get this reusing the bean of CategoriesB2C.

  • New number range to MOTIVID

    Hi Gurus When a new Ad spac (motiv) is entered and post to the database, a Tech-ID (JHAMOT- MOTIVID) is generated by the system, stored in the respective JHAMOT and displayed to the user. I want to attach new number range to MOTIVID, is it possible t