Error compiling "Undefined symbols for architecture armv6:"

Hey, I seem to be getting errors like this a lot... I only just started making apps yesterday, so they are all still very basic, but I was wondering if I am doing something wrong when I import frameworks?
This may be caused from something else entirely, but this is what I seem to think is causing it...
Basically the error I'm getting is:
Undefined symbols for architecture armv6:
"_kUTTypeImage", referenced from:
-[CameraViewController(CameraDelegateMethods) imagePickerController:didFinishPickingMediaWithInfo:] in CameraViewController.o
-[CameraViewController(CameraDelegateMethods) startCameraControllerFromViewController:usingDelegate:] in CameraViewController.o
"_kUTTypeMovie", referenced from:
-[CameraViewController(CameraDelegateMethods) imagePickerController:didFinishPickingMediaWithInfo:] in CameraViewController.o
"_OBJC_CLASS_$_CameraViewController", referenced from:
objc-class-ref in CameraViewController.o
l_OBJC_$_CATEGORY_CameraViewController_$_CameraDelegateMethods in CameraViewController.o
ld: symbol(s) not found for architecture armv6
collect2: ld returned 1 exit status
As you can probably tell, I am trying to make a very simple camera app. Most of the code is copied and pasted straight from apple's site.
If it would help I can put the full source code I have so far on these forums, just let me know.
Thanks for any help!

I've got this error while importing a project from XCode 3 to XCode 4
A simple workaround which has worked for me was :
1) Start a new project from scratch in XCode 4 using a template... I know, it should be tedious... ;-(
2) You should change the build settings  « Architectures » of your project (under TARGETS) to compile with « armv6 » instead of the default value which is « Standard (armv7) »
Double click « Standard (armv7) » in the « Architectures » setting 
Add « armv6 » in the popup after clicking « + » button in the bottom-left of the popup

Similar Messages

  • Error while packaging app for iOS - Undefined symbols for architecture armv7

    First time trying to package an AS3 Air app for development on iOS.
    App works fine on Android and is available on the Google/Amazon store etc. The version I'm trying to package has all references to the ANE I use removed to simplify matters.
    I'm using Flash Builder 4.7, AIR v4.0 and am developing on a Windows 8 PC.
    When using fast packaging no error is thrown but the app just shows a black screen on my test Ipad (v3).
    Using standard packaging I get the following error at 57%:
    Error occurred while packaging the application:
    Undefined symbols for architecture armv7:
      "__Z15abcOP_nullcheckIPN7avmplus6AbcEnvEEvPNS0_9MethodEnvET_", referenced from:
          _abcMethod_builtin_2_2_function public::global21.describeType in AOTBuildOutput-3.o
          _abcMethod_builtin_3_3_function public::global21.describeTraits in AOTBuildOutput-3.o
          _abcMethod_builtin_6_6_function public::global21.describeParams in AOTBuildOutput-3.o
          _abcMethod_builtin_5_5_function public::global21.describeMetadata in AOTBuildOutput-3.o
          _abcMethod_builtin_4_4_function public::global21.finish in AOTBuildOutput-3.o
          _abcMethod_builtin_26_26_function public::Object$._dontEnumPrototype in AOTBuildOutput-3.o
          _abcMethod_builtin_30_30_null ::_init. in AOTBuildOutput-3.o
    ld: symbol(s) not found for architecture armv7
    Compilation failed while executing : ld64
    Any help you can offer would be very welcome.

    Thanks for your reply Nimisha.
    Can you please tell me how to install the AIR 15 beta in such a way that I can easily go back to the AIR 14 release so I may continue to develop builds for release safely. I do not want to release anything built with beta builds for obvious reasons. Thank you.

  • Undefined symbols for architecture armv7

    Hello,
    I'm in the process of creating an ANE for an iOS SDK and I'm encountering issues when using the generated ANE in a test project.
    When trying to debug the app on the device via Flash Builder here is the error I'm getting:
    Error occurred while packaging the application:
    Undefined symbols for architecture armv7:
      "_OBJC_CLASS_$_ASIdentifierManager", referenced from:
          objc-class-ref in com.mycompany.MySDKANE.o
    ld: symbol(s) not found for architecture armv7
    Compilation failed while executing : ld64
    It looks like the error is saying that I've not added the AdSupport.framework when packaging my ANE.
    When I look at the ANT script I've implemented I can see that the platform.xml file correctly lists all the iOS frameworks I need.
    Here is an excerpt of my ANT script :
    <!-- Package -->
         <target name="package" description="Create the extension package">
              <exec executable="${flex.sdk}/bin/adt" failonerror="true" dir="../temp">
                   <env key="AIR_SDK_HOME" value="${flex.sdk}"/>
                   <arg value="-package"/>
                   <arg value="-target"/>
                   <arg value="ane"/>
                   <arg value="${name}.ane"/>
                   <arg value="../build/extension.xml"/>
                   <arg line="-swc swc/${name}.swc"/>
                   <arg line="-platform iPhone-ARM -platformoptions ../build/platform.xml -C ios/ ."/>
                   <arg line="-platform iPhone-x86 -platformoptions ../build/platform.xml -C iosSimulator/ ."/>
                   <arg line="-platform default -C default/ ."/>
              </exec>
            <move file="../temp/${name}.ane" todir="../bin"/>
            <delete dir="../temp"/>
        </target>
    and the content of the platform.xml :
    <?xml version="1.0" encoding="utf-8" ?>
    <platform xmlns="http://ns.adobe.com/air/extension/13.0">
         <sdkVersion>7.1</sdkVersion>
         <linkerOptions>
              <option>-ios_version_min 5.1.1</option>
              <option>-framework Accelerate</option>
              <option>-weak_framework AdSupport</option>
              <option>-framework CoreGraphics</option>
              <option>-framework Foundation</option>
              <option>-framework QuartzCore</option>
              <option>-framework Security</option>
              <option>-weak_framework StoreKit</option>
              <option>-framework SystemConfiguration</option>
              <option>-framework UIKit</option>
         </linkerOptions>
    </platform>
    The script runs fine and generates a valide ANE but when I use is in my project I encounter the error above.
    Here is my environment:
    - Flash Builder 4.7
    - AIR SDK 13.0.0.76
    - Xcode 5.1 with iOS 7.1
    Does anyone have an idea on the source of my problem?
    Thank you.

    I have the sam issue with Parse SDK. ANE is generated without errors but project compilation fails with error:
    Undefined symbols for architecture armv7:
      "_OBJC_CLASS_$_PFPush", referenced from:
    My platformoptions.xml is:
    <platform xmlns="http://ns.adobe.com/air/extension/3.5">
      <sdkVersion>6.1</sdkVersion>
        <linkerOptions>
            <option>-ios_version_min 5.0</option>
            <option>-framework Parse</option>
        </linkerOptions>
        <packagedDependencies>
            <packagedDependency>Parse.framework</packagedDependency>
        </packagedDependencies>
    </platform>
    Some help would be greatly appreciated.

  • "Undefined symbols for architecture"  when building Universal Binaries

    The build I'm doing works fine when specifying either i386 or x86_64 or ppc *by itself*, however whenever I try to combine the archs to make a UB, I get problems building libraries. I'm using an existing makefile system as this needs to be portable across many platforms. Any ideas?
    Here's the output (trying i386 & x86_64):
    gcc -I/Users/Documents/AccurevWorkspace/RDMe-AurigaDevmacosx/include -D_REENTRANT -DOSX_X86 -DNO_TERMCAP -DNOPOSIXMUTEXES -arch i386 -arch x86_64 -isysroot /Developer/SDKs/MacOSX10.6.sdk -mmacosx-version-min=10.5 -DNO_ENCRYPTION -DTASK_DEFN -DNO_ENCRYPTION -c sddlp_util.c -o osx/static/sddlp_util.o
    ar ru osx/librdmeddl9_static.a osx/static/ddlp.o osx/static/ddlalign.o osx/static/ddllex.o osx/static/ddlp_util.o osx/static/ddltable.o osx/static/ddlxref.o osx/static/writejni.o osx/static/sddlp.o osx/static/sddlp_util.o
    ar: creating archive osx/librdmeddl9_static.a
    cp -f /Users/Documents/AccurevWorkspace/RDMe-AurigaDev_macosx/source/tools/ddl/osx/librdmeddl9static.a /Users/Documents/AccurevWorkspace/RDMe-AurigaDevmacosx/lib/osx
    gcc -c -I/Users/Documents/AccurevWorkspace/RDMe-AurigaDevmacosx/include -D_REENTRANT -DOSX_X86 -DNO_TERMCAP -DNOPOSIXMUTEXES -arch i386 -arch x86_64 -isysroot /Developer/SDKs/MacOSX10.6.sdk -mmacosx-version-min=10.5 -DNO_ENCRYPTION -DTASK_DEFN -DNO_ENCRYPTION ddlp_main.c -o osx/static/ddlp_main.o
    gcc -arch i386 -arch x86_64 -isysroot /Developer/SDKs/MacOSX10.6.sdk -mmacosx-version-min=10.5 -o osx/ddlp_static osx/static/ddlp_main.o -L/Users/Documents/AccurevWorkspace/RDMe-AurigaDevmacosx/lib/osx -lrdmeddl9_static -L/Users/Documents/AccurevWorkspace/RDMe-AurigaDevmacosx/lib/osx -lrdmebase9_static -L/Users/Documents/AccurevWorkspace/RDMe-AurigaDevmacosx/lib/osx -lrdmepsp9_static
    ld: warning: in /Users/Documents/AccurevWorkspace/RDMe-AurigaDev_macosx/lib/osx/librdmeddl9static.a, file is not of required architecture
    ld: warning: in /Users/Documents/AccurevWorkspace/RDMe-AurigaDev_macosx/lib/osx/librdmebase9static.a, file is not of required architecture
    ld: warning: in /Users/Documents/AccurevWorkspace/RDMe-AurigaDev_macosx/lib/osx/librdmepsp9static.a, file is not of required architecture
    Undefined symbols for architecture i386:
    "pspinit", referenced from:
    _main in ddlp_main.o
    "pspterm", referenced from:
    _main in ddlp_main.o
    "ddlpmain", referenced from:
    _main in ddlp_main.o
    ld: symbol(s) not found for architecture i386
    collect2: ld returned 1 exit status
    ld: warning: in /Users/Documents/AccurevWorkspace/RDMe-AurigaDev_macosx/lib/osx/librdmeddl9static.a, file is not of required architecture
    ld: warning: in /Users/Documents/AccurevWorkspace/RDMe-AurigaDev_macosx/lib/osx/librdmebase9static.a, file is not of required architecture
    ld: warning: in /Users/Documents/AccurevWorkspace/RDMe-AurigaDev_macosx/lib/osx/librdmepsp9static.a, file is not of required architecture
    Undefined symbols for architecture x86_64:
    "pspinit", referenced from:
    _main in ddlp_main.o
    "pspterm", referenced from:
    _main in ddlp_main.o
    "ddlpmain", referenced from:
    _main in ddlp_main.o
    ld: symbol(s) not found for architecture x86_64
    collect2: ld returned 1 exit status
    lipo: can't open input file: /var/folders/0H/0H34PYrnF7SXdZBPnDciuU+jA/-Tmp-//cciWTBHk.out (No such file or directory)
    make: * [osx/ddlp_static] Error 1

    OK, solved the problem. AR requires the -s flag when building UBs:
    If you are building for multiple arches then you should pass ar the -s
    flag (as Rainer said) to ar to ensure that the table of contents is
    created. As you can see from the ar sources it calls ranlib -q normally,
    and ranlib -f if it saw the -s flag. Ranlib -q will "Do nothing if a
    universal file would be created." whereas ranlib -f will create the fat
    archive.
    http://www.nabble.com/Why-ar-doesn't-call-ranlib-on-Mac--td22319721.html

  • Solaris link error - cout undefined symbol

    I am using the Forte 6 C++ compiler, but instead of using the built-in roguewave STL library I am using STLPort 4.5.1 for performance reasons. If I compile my application using the roguewave STL it links ok, but when I use the STLPort I received an undefined symbol for cout.
    Ideas how I can get around this?
    Thanks,
    Sean

    Are you sure you posted the entire output of the linker? It doesn't look like you have.
    The error you posted is:
    Undefined first referenced
    symbol in file
    ISymbolTable::__
    It then goes on to state that the file that needs this symbol (the file that first references this missing symbol) is /lib/cxx//libMyBusinessObjects.so.
    Now, what I don't get is the symbol itself. what is ISymbolTable::__ ? That's just plain whacky.
    Is libMyBusinessObjects.so your library?
    Anyhow, to fix these types of errors, it is typically an issue of adding another lib or .o to you link list in the Makefile. But, first, you have to make sense of the symbol that is "missing".
    If you provide more data, it might help in resolving this...
    -- jrj

  • Linker error:  ild: (undefined symbol)

    I am porting a large pack of C++ from AIX to Solaris. All the modules now passed compilation. But the linker (incremental loader) complains about undefined symbol, such as
    ild: (undefined symbol) __rwstd::__rb_tree<CString,std::pair<const CString,int>,__rwstd::__select1st<std::pair<const CString,int>,CString>,std::less<CString>,std::allocator<std::pair<const CString,int> > >::iterator __rwstd::__rb_tree<CString,std::pair<const CString,int>,__rwstd::__select1st<std::pair<const CString,int>,CString>,std::less<CString>,std::allocator<std::pair<const CString,int> > >::erase(__rwstd::__rb_tree<CString,std::pair<const CString,int>,__rwstd::__select1st<std::pair<const CString,int>,CString>,std::less<CString>,std::allocator<std::pair<const CString,int> > >::iterator,__rwstd::__rb_tree<CString,std::pair<const
    CString,int>,__rwstd::__select1st<std::pair<const String,int>,CString>,std::less<CString>,std::allocator<std::pair<const CString,int> > >::iterator) -- referenced in the text segment of ../Release/solaris/libSpiderWeb.a(SpiderCommand.o)
    ild: (undefined symbol) void std::list<const Process*,std::allocator<const Process*> >::__deallocate_buffers() -- referenced in the text segment of ../Release/solaris/libDragline.a(SystemScope.o)
    I did not explicitly use those functions for sure. However, when I link a small test program using std::list and/or std::map which had at least __deallocate_buffers after template instantiation, the linker did not complain.
    Any insighgt? What could be the problem and what is the fix?
    BTW I am on SunOS 5.6 sun4u sparc SUNW,Ultra-2 and use compiler Sun WorkShop 6 2000/04/07 C++ 5.1.
    Thanks a lot!
    Lan

    There is no Solaris 6.2. To find the Solaris version, run the command
    uname -a
    Probably you mean Sun Workshop (or Forte Developer) 6 update 2. (The name of the product changed mid-stream, from "Sun Workshop" to "Forte Developer", and now is "Sun Studio".)
    To find the compiler version, run the command
    CC -V
    For Workshop 6u2, the CC version is 5.3.
    For old compiler versions like this, problems with missing template definitions can usually be fixed by clearing the template cache and rebuilding. To clear the template cache, you can just remove the directory SunWS_cache, or more conservatively, run the command
    CCadmin -clean
    There will be a cache directory in every directory where you create .o files. You need to clean all of them.
    Starting with Sun Studio 8 (C++ 5.5) in 2003, the compiler no longer uses a template cache by default. These kinds of problems no longer occur.
    You really should stop using the old compiler, and get a current one. The later compilers run faster, generate code that runs faster, are more standard-conforming, support modern hardware, and have superior program development tools (compiler, debugger, performance analyzer, thread analyzer). Best of all, the current compilers are completely free for all uses. The only license is the license you click to accept when you download the product.
    If you are running on Solaris 8, get Sun Studio 11 here:
    [http://developers.sun.com/sunstudio/products/previous/11/index.jsp]
    If you are running on Solaris 9, Solaris 10, Solaris Express, or Open Solaris, get the current release, Sun Studio 12:
    [http://developers.sun.com/sunstudio/]

  • [SOLVED] Error compiling systray patch for dwm 6.0

    Hello folks.
    This is makepkg's output.
    ┌─[parazyd][archbox][~/dwm]
    └──╼ makepkg -ef
    ==> Making package: dwm 6.0-1 (Wed Nov 19 17:33:05 CET 2014)
    ==> Checking runtime dependencies...
    ==> Checking buildtime dependencies...
    ==> WARNING: Using existing src/ tree
    ==> Removing existing pkg/ directory...
    ==> Starting build()...
    dwm build options:
    CFLAGS = -std=c99 -pedantic -Wall -Os -I. -I/usr/include -I/usr/include/X11 -D_FORTIFY_SOURCE=2 -DVERSION="6.0" -DXINERAMA
    LDFLAGS = -s -L/usr/lib -lc -L/usr/lib/X11 -lX11 -L/usr/lib/X11 -lXinerama
    CC = cc
    CC dwm.c
    In file included from dwm.c:329:0:
    config.h:67:1: warning: initialization from incompatible pointer type
    static const char *scratchpadcmd[] = { termcmd, "-title", scratchpadname, "-geometry", "150x40", NULL };
    ^
    config.h:67:1: warning: (near initialization for ‘scratchpadcmd[0]’)
    dwm.c: In function ‘cleanup’:
    dwm.c:551:5: error: ‘showsystray’ undeclared (first use in this function)
    if(showsystray) {
    ^
    dwm.c:551:5: note: each undeclared identifier is reported only once for each function it appears in
    dwm.c: In function ‘clientmessage’:
    dwm.c:593:5: error: ‘showsystray’ undeclared (first use in this function)
    if(showsystray && cme->window == systray->win && cme->message_type == netatom[NetSystemTrayOP]) {
    ^
    dwm.c: In function ‘drawbar’:
    dwm.c:866:6: error: ‘showsystray’ undeclared (first use in this function)
    if(showsystray && m == selmon)
    ^
    dwm.c: In function ‘getsystraywidth’:
    dwm.c:1124:5: error: ‘showsystray’ undeclared (first use in this function)
    if(showsystray)
    ^
    dwm.c:1125:42: error: ‘systrayspacing’ undeclared (first use in this function)
    for(i = systray->icons; i; w += i->w + systrayspacing, i = i->next);
    ^
    dwm.c:1125:56: warning: left-hand operand of comma expression has no effect [-Wunused-value]
    for(i = systray->icons; i; w += i->w + systrayspacing, i = i->next);
    ^
    dwm.c: In function ‘keypress’:
    dwm.c:1252:2: warning: ‘XKeycodeToKeysym’ is deprecated (declared at /usr/include/X11/Xlib.h:1699) [-Wdeprecated-declarations]
    keysym = XKeycodeToKeysym(dpy, (KeyCode)ev->keycode, 0);
    ^
    dwm.c: In function ‘removesystrayicon’:
    dwm.c:1541:6: error: ‘showsystray’ undeclared (first use in this function)
    if(!showsystray || !i)
    ^
    dwm.c: In function ‘resizebarwin’:
    dwm.c:1560:5: error: ‘showsystray’ undeclared (first use in this function)
    if(showsystray && m == selmon)
    ^
    dwm.c: In function ‘togglebar’:
    dwm.c:1996:5: error: ‘showsystray’ undeclared (first use in this function)
    if(showsystray) {
    ^
    dwm.c: In function ‘updatebars’:
    dwm.c:2130:6: error: ‘showsystray’ undeclared (first use in this function)
    if(showsystray && m == selmon)
    ^
    dwm.c: In function ‘updatesystrayiconstate’:
    dwm.c:2343:6: error: ‘showsystray’ undeclared (first use in this function)
    if(!showsystray || !i || ev->atom != xatom[XembedInfo] ||
    ^
    dwm.c: In function ‘updatesystray’:
    dwm.c:2372:6: error: ‘showsystray’ undeclared (first use in this function)
    if(!showsystray)
    ^
    dwm.c:2378:79: error: ‘DC’ has no member named ‘sel’
    systray->win = XCreateSimpleWindow(dpy, root, x, selmon->by, w, bh, 0, 0, dc.sel[ColBG]);
    ^
    dwm.c:2382:28: error: ‘DC’ has no member named ‘norm’
    wa.background_pixel = dc.norm[ColBG];
    ^
    dwm.c:2402:8: error: ‘systrayspacing’ undeclared (first use in this function)
    w += systrayspacing;
    ^
    dwm.c: In function ‘wintosystrayicon’:
    dwm.c:2509:6: error: ‘showsystray’ undeclared (first use in this function)
    if(!showsystray || !w)
    ^
    Makefile:18: recipe for target 'dwm.o' failed
    make: *** [dwm.o] Error 1
    ==> ERROR: A failure occurred in build().
    Aborting...
    I'm trying to apply systray to my dwm-6.0, but I get errors when compiling and I'm not exactly sure what's the problem. Could anyone help?
    Here's the dwm.c after applying the patch: http://pastebin.com/Aie3Uw0n
    This is my dwm.c prior to patching (this one works): http://pastebin.com/ra0NhGnV
    And here's Unia's patch I'm trying to use: https://github.com/Unia/dwm-patches/blo … stray.diff
    Any help would be kindly appreciated.
    -- mod note: split from https://bbs.archlinux.org/viewtopic.php?id=92895&p=28 - Trilby --
    Last edited by parazyd (2014-11-19 17:03:03)

    Thanks a lot for that. Now I seem to be stuck on another thing :-/
    I have no idea what to do...
    ==> Making package: dwm 6.0-1 (Wed Nov 19 17:39:04 CET 2014)
    ==> Checking runtime dependencies...
    ==> Checking buildtime dependencies...
    ==> WARNING: Using existing src/ tree
    ==> Removing existing pkg/ directory...
    ==> Starting build()...
    dwm build options:
    CFLAGS = -std=c99 -pedantic -Wall -Os -I. -I/usr/include -I/usr/include/X11 -D_FORTIFY_SOURCE=2 -DVERSION="6.0" -DXINERAMA
    LDFLAGS = -s -L/usr/lib -lc -L/usr/lib/X11 -lX11 -L/usr/lib/X11 -lXinerama
    CC = cc
    CC dwm.c
    In file included from dwm.c:329:0:
    config.h:25:7: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘const’
    tatic const unsigned int systraypinning = 0; /* 0: sloppy systray follows selected monitor, >0: pin systray to monitor X */
    ^
    In file included from dwm.c:329:0:
    config.h:71:1: warning: initialization from incompatible pointer type
    static const char *scratchpadcmd[] = { termcmd, "-title", scratchpadname, "-geometry", "150x40", NULL };
    ^
    config.h:71:1: warning: (near initialization for ‘scratchpadcmd[0]’)
    dwm.c: In function ‘keypress’:
    dwm.c:1252:2: warning: ‘XKeycodeToKeysym’ is deprecated (declared at /usr/include/X11/Xlib.h:1699) [-Wdeprecated-declarations]
    keysym = XKeycodeToKeysym(dpy, (KeyCode)ev->keycode, 0);
    ^
    dwm.c: In function ‘updatesystray’:
    dwm.c:2378:79: error: ‘DC’ has no member named ‘sel’
    systray->win = XCreateSimpleWindow(dpy, root, x, selmon->by, w, bh, 0, 0, dc.sel[ColBG]);
    ^
    dwm.c:2382:28: error: ‘DC’ has no member named ‘norm’
    wa.background_pixel = dc.norm[ColBG];
    ^
    Makefile:18: recipe for target 'dwm.o' failed
    make: *** [dwm.o] Error 1
    ==> ERROR: A failure occurred in build().
    Aborting...

  • Errors compiling C++ programs for cin

    Hello,
    I am using Microsoft Visual C++ C to compile my .cpp program to build a .lsb. I have the following errors.
    LINK : warning LNK4098: defaultlib "LIBCMTD" conflicts with use of other libs; use /NODEFAULTLIB:library
    cin.obj : error LNK2001: unresolved external symbol _CINRun
    Cany anyone help, please?
    Beanie

    Hi Beanie,
    What National Instruments software are you using?
    Check this out first. If it doesn't help, explain more about what software you are using
    Good luck
    Van L
    NI Applications Engineer

  • Error Compilation MIBs Supported for Cisco UCS C-series software release 1.4(3) and later releases on IBM Director 6.3.2

    Hi,
    I have an IBM director 6.3.2 on a Windows Server 2008R2
    I try to install the MIB for manage Cisco UCS C-460 server.
    I downloaded the mib on the cisco ftp.
    the files extension was my. I cahgne it to .mib. For the moment I success to import some ones.
    But when I try to install Cisco-Unified-Computing-TC-MIB, I have got the error in the join file.
    Ho can I fix this issue...

    Hi,
    I have an IBM director 6.3.2 on a Windows Server 2008R2
    I try to install the MIB for manage Cisco UCS C-460 server.
    I downloaded the mib on the cisco ftp.
    the files extension was my. I cahgne it to .mib. For the moment I success to import some ones.
    But when I try to install Cisco-Unified-Computing-TC-MIB, I have got the error in the join file.
    Ho can I fix this issue...

  • Ld: file was built for unsupported file format...for architecture armv7

    hi:
    I recently developed a project with custom ANE and I get this error msg when compile ipa since I upgraded the sdk from 3.5 to 3.8.
    ANE compile CMD:
    adt -package -storetype pkcs12 -keystore ane.p12 -storepass 1234 -target ane yund.ane extension.xml -swc yunding.swc -platform iPhone-ARM -platformoptions platform.xml IDS.framework library.swf libIslandIDSANE.a
    platform.xml:
    <platform xmlns="http://ns.adobe.com/air/extension/3.5">
         <sdkVersion>6.1</sdkVersion>
         <linkerOptions>
                        <option>-w</option>
            <option>-ios_version_min 4.2</option>
                        <option>-framework Foundation</option>
                        <option>-framework StoreKit</option>
                        <option>-framework AdSupport</option>
                        <option>-framework QuartzCore</option>
                        <option>-framework UIKit</option>
                        <option>-framework CoreGraphics</option>
                        <option>-framework SystemConfiguration</option>
                        <option>-framework Foundation</option>
                        <option>-lz</option>
         </linkerOptions>
                 <packagedDependencies>
                        <packagedDependency>IDS.framework</packagedDependency>
              </packagedDependencies>
    </platform>
    msg:
    ld: file was built for unsupported file format ( 0x56 0x65 0x72 0x73 0x69 0x6f 0x6e 0x73 0x2f 0x43 0x75 0x72 0x72 0x65 0x6e 0x74 ) which is not the architecture being linked (armv7): C:\Users\timoo\AppData\Local\Temp\139d9782-79fd-422a-8c15-da1da2da8c53/IDS.framework/IDS for architecture armv7
    Compilation failed while executing : ld64
    help me
    thx

    Have you Found the way to solve this problem yet?
    I  have got the same problem. Here is the error log when building the IPA:
    ld: warning: ignoring file /var/folders/c0/m8m1_z5915qblkj9d_7jhmcw0000gn/T/3cb383e9-0092-4b1c-909f-5c219b2fbcd4/Par tytrack.framework/Partytrack, file was built for unsupported file format ( 0x56 0x65 0x72 0x73 0x69 0x6f 0x6e 0x73 0x2f 0x43 0x75 0x72 0x72 0x65 0x6e 0x74 ) which is not the architecture being linked (armv7): /var/folders/c0/m8m1_z5915qblkj9d_7jhmcw0000gn/T/3cb383e9-0092-4b1c-909f-5c219b2fbcd4/Par tytrack.framework/Partytrack
    ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: /Users/apple/Documents/flexsdk/flex3.9/lib/aot/lib/libDebugger1.arm-air.a(avmplusDebugger .cpp.o)
    Undefined symbols for architecture armv7:
      "_OBJC_CLASS_$_Partytrack", referenced from:
          objc-class-ref in libcom.haibin.extension.PromotionAPI.a(partyTrackAPI.o)
    ld: symbol(s) not found for architecture armv7
    Compilation failed while executing : ld64
    My platformoption.xml content is:
    <platform xmlns="http://ns.adobe.com/air/extension/3.8">
        <sdkVersion>7.0</sdkVersion>
        <linkerOptions>
            <option>-ios_version_min 4.3</option>
            <option>-framework CoreData</option>
            <option>-framework UIKit</option>
            <option>-framework Foundation</option>
            <option>-framework Security</option>
            <option>-weak_framework AdSupport</option>
        </linkerOptions>
        <packagedDependencies>
            <packagedDependency>Partytrack.framework</packagedDependency>
        </packagedDependencies>
    </platform>
    And my build command are:
    <target name="package" description="Create the extension package">
    <exec executable="${FLEX_HOME}/bin/adt" failonerror="true" dir="${basedir}">
    <env key="AIR_SDK_HOME" value="${FLEX_HOME}"/>
    <arg value="-package"/>
    <arg line="-storetype pkcs12"/>
    <arg line="-keystore testkey.p12"/>
    <arg line="-storepass 123456"/>
    <arg line="-target ane"/>
    <arg value="../${ANE_NAME}.ane"/>
    <arg value="extension.xml"/>
    <arg line="-swc ../swc/${ANE_NAME}.swc"/>
    <arg line="-platform iPhone-ARM -platformoptions platform.xml -C ../iPhone-ARM/ . "/>
    <arg line="-platform Android-ARM -C ../Android-ARM/ ."/>
    <arg line="-platform default -C ../default/ ."/>
    </exec>
    </target>
    File "Partytrack.framework " is in the directory "iPhone-ARM"

  • Xcode 4.3 error compiling

    I have removed xcode from my mac and then I have reinstalled it from the mac app store (now i have the latest release). But now I have a problem:
    when a compile anything that require an external framework (that I have added to the project) xcode give to me this error:
    Ld "/Users/francesco/Library/Developer/Xcode/DerivedData/Save_the_eggs-cfwmhfwdfin pdvgczjqbnqpiyatr/Build/Products/Debug-iphonesimulator/Save the eggs.app/Save the eggs" normal i386
        cd "/Users/francesco/programmazione/Save the eggs"
        setenv MACOSX_DEPLOYMENT_TARGET 10.6
        setenv PATH "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/ Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/bin:/b in:/usr/sbin:/sbin"
        /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/ usr/bin/clang -arch i386 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/D eveloper/SDKs/iPhoneSimulator5.0.sdk -L/Users/francesco/Library/Developer/Xcode/DerivedData/Save_the_eggs-cfwmhfwdfi npdvgczjqbnqpiyatr/Build/Products/Debug-iphonesimulator -F/Users/francesco/Library/Developer/Xcode/DerivedData/Save_the_eggs-cfwmhfwdfi npdvgczjqbnqpiyatr/Build/Products/Debug-iphonesimulator -filelist "/Users/francesco/Library/Developer/Xcode/DerivedData/Save_the_eggs-cfwmhfwdfin pdvgczjqbnqpiyatr/Build/Intermediates/Save the eggs.build/Debug-iphonesimulator/Save the eggs.build/Objects-normal/i386/Save the eggs.LinkFileList" -mmacosx-version-min=10.6 -Xlinker -objc_abi_version -Xlinker 2 -fobjc-arc -Xlinker -no_implicit_dylibs -D__IPHONE_OS_VERSION_MIN_REQUIRED=50000 -framework GameKit -framework SystemConfiguration -framework UIKit -framework Foundation -framework CoreGraphics -framework CoreData -o "/Users/francesco/Library/Developer/Xcode/DerivedData/Save_the_eggs-cfwmhfwdfin pdvgczjqbnqpiyatr/Build/Products/Debug-iphonesimulator/Save the eggs.app/Save the eggs"
    Undefined symbols for architecture i386:
      "_OBJC_CLASS_$_GameCenterManager", referenced from:
          objc-class-ref in MainViewController.o
    ld: symbol(s) not found for architecture i386
    clang: error: linker command failed with exit code 1 (use -v to see invocation)
    What a have to do?

    Hi,
    I had the same problem and I had to use an hack to solve my problem.
    you have to lock you session keychain (or unlock->lock). After that, when you restart xcode and go in the organizer window then in the repository section. Normally xcode ask for your password, you have to cancel many times and finaly xcode doesn't crash anymore, but you must use another svn client instead of xcode's.
    GL
    Laurie

  • Missing prototype and Undefined Symbol errors

    So, I am using an Opal Keyy XEM3005 board.
    Depending on the documentation I read, this board has a native ANSI C interface with a C++ wrapper.
    In their forums, they say to rename the ".cpp" file to "c", and then go forward with calling the default constructor & keep track of the pointer.  Their functions are all in an externally loadable DLL.
    Well and good.
    Their API documentatin is available here:  http://www.opalkelly.com/library/FrontPanelAPI/
    I have written a REALLY simple app to ease my way in - it does nothing more than allow the user to throw a switch, and when this happens, it goes off to connect to the board:
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    #include <cvirte.h>
    #include <userint.h>
    #include "Try1.h"
    #include "XEM.h"
    #define _WIN32_WINNT 0x0501
    //#define _WIN32
    #include <windows.h>
    static int panelHandle;
    static okFrontPanel_HANDLE    XEM_Device;
    int __stdcall WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance,
    LPSTR lpszCmdLine, int nCmdShow)
    if (InitCVIRTE (hInstance, 0, 0) == 0)
    return -1;    /* out of memory */
    if ((panelHandle = LoadPanel (0, "Try1.uir", PANEL)) < 0)
            return -1;
        DisplayPanel (panelHandle);
        RunUserInterface ();
        DiscardPanel (panelHandle);
        return 0;
    int CVICALLBACK Connect (int panel, int control, int event,
            void *callbackData, int eventData1, int eventData2)
        int    Value = 0;
        switch (event)
            case EVENT_COMMIT:
                GetCtrlVal(PANEL, PANEL_CONNECT_SWITCH, &Value);
                SetCtrlVal(PANEL, PANEL_CONNECT_LED, Value);
                if( Value )
                    XEM_Connect(XEM_Device);
                else
                    XEM_Disconnect(XEM_Device);
                break;
        return 0;
    int CVICALLBACK Quit (int panel, int control, int event,
            void *callbackData, int eventData1, int eventData2)
        switch (event)
            case EVENT_COMMIT:
                QuitUserInterface (0);
                break;
        return 0;
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    This, of course, works fine by itself (with empty _Connect() and _Disconnect() functions)
    I then started working with the XEM_Connect function.
    The first step is to run their LoadDLL function as such:
    int XEM_Connect ( okFrontPanel_HANDLE    XEM_Device )
        int    NoDevices = 0;    //    Number of devices attached to the PC
        //    Load the DLL (?)
        // Load the FrontPanel DLL
        if (FALSE == okFrontPanelDLL_LoadLib(NULL))
            printf("Could not load FrontPanel DLL\n");
            exit(-1);
        return XEM_SUCCESS;
    And this would compile and run just fine.
    Now, when I added the functions to start trying to get info about the device, I started getting "missing prototype" errors.
    int XEM_Connect ( okFrontPanel_HANDLE    XEM_Device )
        int    NoDevices = 0;    //    Number of devices attached to the PC
        //    Load the DLL (?)
        // Load the FrontPanel DLL
        if (FALSE == okFrontPanelDLL_LoadLib(NULL))
            printf("Could not load FrontPanel DLL\n");
            exit(-1);
        //    Find out how many devices are attached
        XEM_Device = okFrontPanel_Construct(  );
    //    XEM_Device = okCFrontPanel( void );
    //    NoDevices = GetDeviceCount( );
        printf("%d OK devices attached\n", NoDevices);
        //    Call the contructor?    
    //    okCFrontPanel ();
        return XEM_SUCCESS;
    Now, I searched the forums and found the bits about adding #define _WIN32_WINNT 0x0501 prior to inclusion of windows.h.  Did that.  No joy.
    Then I searched some more and found the bit about changing the build options to uncheck the "prototype required" flag.
    Done.
    This seemed to work at first (the above code could be built with no errors, and appeared to run).
    So I thought maybe I had it, and added the next line, so:
    int XEM_Connect ( okFrontPanel_HANDLE    XEM_Device )
        int    NoDevices = 0;    //    Number of devices attached to the PC
        //    Load the DLL (?)
        // Load the FrontPanel DLL
        if (FALSE == okFrontPanelDLL_LoadLib(NULL))
            printf("Could not load FrontPanel DLL\n");
            exit(-1);
        //    Find out how many devices are attached
        XEM_Device = okFrontPanel_Construct(  );
        OpenBySerial( XEM_Device, "UaLgzvVpBJ" );
    //    XEM_Device = okCFrontPanel( void );
    //    NoDevices = GetDeviceCount( );
        printf("%d OK devices attached\n", NoDevices);
        //    Call the contructor?    
    //    okCFrontPanel ();
        return XEM_SUCCESS;
    Now it doesn't complain about no prototypes (duh), but instead I get linker errors:
        Undefined symbol '_OpenBySerial@0' referenced in "XEM.c".
    So, dredging through the .h and .c files, I found a couple of things:
    in the okFrontPanel.c file I found the following:
    okDLLEXPORT ok_ErrorCode DLL_ENTRY
    okFrontPanel_OpenBySerial(okFrontPanel_HANDLE hnd, const char *serial)
        if (_okFrontPanel_OpenBySerial)
    ;  return((*_okFrontPanel_OpenBySerial)(hnd, serial));
        return(ok_UnsupportedFeature);
    In the okFrontPanel.h file I found:
    and also:
    okDLLEXPORT ok_ErrorCode DLL_ENTRY okFrontPanel_OpenBySerial(okFrontPanel_HANDLE hnd, const char *serial);
    So, I see them in the .h & .c files, but the linker is bombing out.
    I smell a problem with actual code to link being in the DLL...  How do I resolve this, any ideas?  Or am I doing something so stupidly (and obviously) wrong that I'm being blinded to it?

    Hi tomii,
    My suspicion is that these issues are due to using a C++ dll in a C environment. There are inherent challenges with performing such an operation as you have to make sure all your parameters and settings are correct.
    I also could not find the documentation that the Opal Kelly dll is ANSI C but it sounds like you can use this in C with some reconfiguration. I would recommend using their forums to get more information on what steps need to take place to get things working in ANSI C.
    From the information you provided, I did find some resources on the missing prototype error and undefined symbol issue with the linker.
    For the missing prototype I found a thread of someone actually using LabWindows and seeing this compiler error you may want to look at
    http://bytes.com/topic/c/answers/695019-missing-prototype
    I found a few cases where using a function definition of int func(void) removes such issue when int func() does not.
    Another link I found that may be worth a look can be found at http://www.parashift.com/c++-faq-lite/mixing-c-and-cpp.html
    It gives some good pointers to mixing C and C++ code. Some of it may be applicible in your case.
    And, a resource for your undefined symbol linking issue.
    http://www.cprogramming.com/tutorial/compiler_linker_errors.html
    Hopefully these resources will give some context for getting things compiling and working with your dll.
    Good luck!
    James W.
    Applications Engineer
    National Instruments

  • Compiling error - cannot resolve symbol

    Hi,
    I am working on writing out this basic code for a project. When I compile, I get an error "Cannot resolve symbol" for the gpa variable. Please help!
    My intention is to use the hours and points from the crHours and nbrPoints methods, and use them to calculate GPA in the grPtAvg method:
    public class Student
         public static void main(String[]args)
    idNum();
    crHours();
    nbrpoints();
    gpa = grPtAvg(hours, points);
    System.out.println("Student's GPA is " + gpa);
    public static void idNum()
    int id = 2520;
    System.out.println("Student's ID is " + id);
    public static float crHours()
    float hours = 5;
    System.out.println("Student's credit hours are " + hours);
    return hours;
    public static float nbrpoints()
    float points = 22;
    System.out.println("Student's earned points are " + points);
    return points;
    public static float grPtAvg(float hours, float points)
    float gpa;
    gpa = points / hours;
    System.out.println("Student's computed GPA is " + gpa);
    return gpa;

    That's because you're doing the same thing (in a somewhat different way) with those.
    The variables: hours and points have already been returned to main methd, right?Yes, but then the main method ignores them.
    So, they should be available at this point in the code, is that right?Available in the sense that you can read them, but not in the sense that there are hours and points variables within scope in the main method.
    You want to do this:
    public static void main(String[] args) {
       idNum();
       float hours = crHours();
       float points = nbrpoints();
       //create a new float
       float myComputetdGpa = grPtAvg(hours, points);
       System.out.println("Student's GPA is " + myComputedGpa);
    }

  • Usbser_edge module not loaded, lots of undefined symbols

    Greetings folks,
    I've just recently more or less completed my Solaris 10 (sparc) jumpstart image and have noticed that upon booting the system will warn about undefined symbols for the usbser_edge module. I've been hunting around and I can't seem to find out where this module is specified to be loaded. The machine in question is a 220R, and I'd like to figure out how to not load this module so the warnings will go away:
    Sep 9 09:33:25 jump-test krtld: [ID 819705 kern.notice] /kernel/misc/sparcv9/usbser: undefined symbol
    Sep 9 09:33:25 jump-test krtld: [ID 826211 kern.notice] 'usb_dprintf0'
    Sep 9 09:33:25 jump-test krtld: [ID 819705 kern.notice] /kernel/misc/sparcv9/usbser: undefined symbol
    Sep 9 09:33:25 jump-test krtld: [ID 826211 kern.notice] 'usb_dprintf1'
    Sep 9 09:33:25 jump-test krtld: [ID 819705 kern.notice] /kernel/misc/sparcv9/usbser: undefined symbol
    Sep 9 09:33:25 jump-test krtld: [ID 826211 kern.notice] 'usb_dprintf2'
    Sep 9 09:33:25 jump-test krtld: [ID 819705 kern.notice] /kernel/misc/sparcv9/usbser: undefined symbol
    Sep 9 09:33:25 jump-test krtld: [ID 826211 kern.notice] 'usb_free_log_hdl'
    Sep 9 09:33:25 jump-test krtld: [ID 819705 kern.notice] /kernel/misc/sparcv9/usbser: undefined symbol
    Sep 9 09:33:25 jump-test krtld: [ID 826211 kern.notice] 'usb_alloc_log_hdl'
    Sep 9 09:33:25 jump-test krtld: [ID 472681 kern.notice] WARNING: mod_load: cannot load module 'usbser'
    Sep 9 09:33:25 jump-test krtld: [ID 749970 kern.notice] WARNING: usbser:
    Sep 9 09:33:25 jump-test krtld: [ID 225575 kern.notice] unable to resolve dependency, module 'misc/usba' not found
    Sep 9 09:33:25 jump-test krtld: [ID 819705 kern.notice] /kernel/drv/sparcv9/usbser_edge: undefined symbol
    Sep 9 09:33:25 jump-test krtld: [ID 826211 kern.notice] 'usb_lookup_ep_data'
    Sep 9 09:33:25 jump-test krtld: [ID 819705 kern.notice] /kernel/drv/sparcv9/usbser_edge: undefined symbol
    Sep 9 09:33:25 jump-test krtld: [ID 826211 kern.notice] 'usb_parse_data'
    Sep 9 09:33:25 jump-test krtld: [ID 819705 kern.notice] /kernel/drv/sparcv9/usbser_edge: undefined symbol
    Sep 9 09:33:25 jump-test krtld: [ID 826211 kern.notice] 'usb_dprintf0'
    Sep 9 09:33:25 jump-test krtld: [ID 819705 kern.notice] /kernel/drv/sparcv9/usbser_edge: undefined symbol
    Sep 9 09:33:25 jump-test krtld: [ID 826211 kern.notice] 'usb_dprintf2'
    Sep 9 09:33:25 jump-test krtld: [ID 819705 kern.notice] /kernel/drv/sparcv9/usbser_edge: undefined symbol
    Sep 9 09:33:26 jump-test krtld: [ID 826211 kern.notice] 'usb_pipe_ctrl_xfer_wait'
    Sep 9 09:33:26 jump-test krtld: [ID 819705 kern.notice] /kernel/drv/sparcv9/usbser_edge: undefined symbol
    Sep 9 09:33:26 jump-test krtld: [ID 826211 kern.notice] 'usbser_close'
    Sep 9 09:33:26 jump-test krtld: [ID 819705 kern.notice] /kernel/drv/sparcv9/usbser_edge: undefined symbol
    Sep 9 09:33:26 jump-test krtld: [ID 826211 kern.notice] 'usbser_power'
    Sep 9 09:33:26 jump-test krtld: [ID 819705 kern.notice] /kernel/drv/sparcv9/usbser_edge: undefined symbol
    Sep 9 09:33:26 jump-test krtld: [ID 826211 kern.notice] 'usb_pipe_sync_ctrl_xfer'
    Sep 9 09:33:26 jump-test krtld: [ID 819705 kern.notice] /kernel/drv/sparcv9/usbser_edge: undefined symbol
    Sep 9 09:33:26 jump-test krtld: [ID 826211 kern.notice] 'usb_alloc_intr_req'
    Sep 9 09:33:26 jump-test krtld: [ID 819705 kern.notice] /kernel/drv/sparcv9/usbser_edge: undefined symbol
    Sep 9 09:33:26 jump-test krtld: [ID 826211 kern.notice] 'usbser_getinfo'
    Sep 9 09:33:26 jump-test krtld: [ID 819705 kern.notice] /kernel/drv/sparcv9/usbser_edge: undefined symbol
    Sep 9 09:33:26 jump-test krtld: [ID 826211 kern.notice] 'usb_pipe_close'
    Sep 9 09:33:26 jump-test krtld: [ID 819705 kern.notice] /kernel/drv/sparcv9/usbser_edge: undefined symbol
    Sep 9 09:33:26 jump-test krtld: [ID 826211 kern.notice] 'usb_unregister_event_cbs'
    Sep 9 09:33:26 jump-test krtld: [ID 819705 kern.notice] /kernel/drv/sparcv9/usbser_edge: undefined symbol
    Sep 9 09:33:26 jump-test krtld: [ID 826211 kern.notice] 'usb_pipe_reset'
    Sep 9 09:33:26 jump-test krtld: [ID 819705 kern.notice] /kernel/drv/sparcv9/usbser_edge: undefined symbol
    Sep 9 09:33:26 jump-test krtld: [ID 826211 kern.notice] 'usb_pipe_bulk_xfer'
    Sep 9 09:33:26 jump-test krtld: [ID 819705 kern.notice] /kernel/drv/sparcv9/usbser_edge: undefined symbol
    Sep 9 09:33:26 jump-test krtld: [ID 826211 kern.notice] 'usb_free_bulk_req'
    Sep 9 09:33:26 jump-test krtld: [ID 819705 kern.notice] /kernel/drv/sparcv9/usbser_edge: undefined symbol
    Sep 9 09:33:26 jump-test krtld: [ID 826211 kern.notice] 'usb_register_event_cbs'
    Sep 9 09:33:26 jump-test krtld: [ID 819705 kern.notice] /kernel/drv/sparcv9/usbser_edge: undefined symbol
    Sep 9 09:33:26 jump-test krtld: [ID 826211 kern.notice] 'usb_free_intr_req'
    Sep 9 09:33:26 jump-test krtld: [ID 819705 kern.notice] /kernel/drv/sparcv9/usbser_edge: undefined symbol
    Sep 9 09:33:26 jump-test krtld: [ID 826211 kern.notice] 'usb_free_log_hdl'
    Sep 9 09:33:27 jump-test krtld: [ID 819705 kern.notice] /kernel/drv/sparcv9/usbser_edge: undefined symbol
    Sep 9 09:33:27 jump-test krtld: [ID 826211 kern.notice] 'usb_pipe_stop_intr_polling'
    Sep 9 09:33:27 jump-test krtld: [ID 819705 kern.notice] /kernel/drv/sparcv9/usbser_edge: undefined symbol
    Sep 9 09:33:27 jump-test krtld: [ID 826211 kern.notice] 'usbser_attach'
    Sep 9 09:33:27 jump-test krtld: [ID 819705 kern.notice] /kernel/drv/sparcv9/usbser_edge: undefined symbol
    Sep 9 09:33:27 jump-test krtld: [ID 826211 kern.notice] 'usbser_detach'
    Sep 9 09:33:27 jump-test krtld: [ID 819705 kern.notice] /kernel/drv/sparcv9/usbser_edge: undefined symbol
    Sep 9 09:33:27 jump-test krtld: [ID 826211 kern.notice] 'usb_get_dev_data'
    Sep 9 09:33:27 jump-test krtld: [ID 819705 kern.notice] /kernel/drv/sparcv9/usbser_edge: undefined symbol
    Sep 9 09:33:27 jump-test krtld: [ID 826211 kern.notice] 'usb_pipe_open'
    Sep 9 09:33:27 jump-test krtld: [ID 819705 kern.notice] /kernel/drv/sparcv9/usbser_edge: undefined symbol
    Sep 9 09:33:27 jump-test krtld: [ID 826211 kern.notice] 'usb_alloc_log_hdl'
    Sep 9 09:33:27 jump-test krtld: [ID 819705 kern.notice] /kernel/drv/sparcv9/usbser_edge: undefined symbol
    Sep 9 09:33:27 jump-test krtld: [ID 826211 kern.notice] 'usbser_rsrv'
    Sep 9 09:33:27 jump-test krtld: [ID 819705 kern.notice] /kernel/drv/sparcv9/usbser_edge: undefined symbol
    Sep 9 09:33:27 jump-test krtld: [ID 826211 kern.notice] 'usbser_wsrv'
    Sep 9 09:33:27 jump-test krtld: [ID 819705 kern.notice] /kernel/drv/sparcv9/usbser_edge: undefined symbol
    Sep 9 09:33:27 jump-test krtld: [ID 826211 kern.notice] 'usbser_wput'
    Sep 9 09:33:27 jump-test krtld: [ID 819705 kern.notice] /kernel/drv/sparcv9/usbser_edge: undefined symbol
    Sep 9 09:33:27 jump-test krtld: [ID 826211 kern.notice] 'usbser_open'
    Sep 9 09:33:27 jump-test krtld: [ID 819705 kern.notice] /kernel/drv/sparcv9/usbser_edge: undefined symbol
    Sep 9 09:33:27 jump-test krtld: [ID 826211 kern.notice] 'usb_check_same_device'
    Sep 9 09:33:27 jump-test krtld: [ID 819705 kern.notice] /kernel/drv/sparcv9/usbser_edge: undefined symbol
    Sep 9 09:33:27 jump-test krtld: [ID 826211 kern.notice] 'usb_pipe_intr_xfer'
    Sep 9 09:33:27 jump-test krtld: [ID 819705 kern.notice] /kernel/drv/sparcv9/usbser_edge: undefined symbol
    Sep 9 09:33:27 jump-test krtld: [ID 826211 kern.notice] 'usb_create_pm_components'
    Sep 9 09:33:27 jump-test krtld: [ID 819705 kern.notice] /kernel/drv/sparcv9/usbser_edge: undefined symbol
    Sep 9 09:33:27 jump-test krtld: [ID 826211 kern.notice] 'usb_free_descr_tree'
    Sep 9 09:33:28 jump-test krtld: [ID 819705 kern.notice] /kernel/drv/sparcv9/usbser_edge: undefined symbol
    Sep 9 09:33:28 jump-test krtld: [ID 826211 kern.notice] 'usb_set_device_pwrlvl0'
    Sep 9 09:33:28 jump-test krtld: [ID 819705 kern.notice] /kernel/drv/sparcv9/usbser_edge: undefined symbol
    Sep 9 09:33:28 jump-test krtld: [ID 826211 kern.notice] 'usb_set_device_pwrlvl1'
    Sep 9 09:33:28 jump-test krtld: [ID 819705 kern.notice] /kernel/drv/sparcv9/usbser_edge: undefined symbol
    Sep 9 09:33:28 jump-test krtld: [ID 826211 kern.notice] 'usb_set_device_pwrlvl2'
    Sep 9 09:33:28 jump-test krtld: [ID 819705 kern.notice] /kernel/drv/sparcv9/usbser_edge: undefined symbol
    Sep 9 09:33:28 jump-test krtld: [ID 826211 kern.notice] 'usb_set_device_pwrlvl3'
    Sep 9 09:33:28 jump-test krtld: [ID 819705 kern.notice] /kernel/drv/sparcv9/usbser_edge: undefined symbol
    Sep 9 09:33:28 jump-test krtld: [ID 826211 kern.notice] 'usb_pipe_get_max_bulk_transfer_size'
    Sep 9 09:33:28 jump-test krtld: [ID 819705 kern.notice] /kernel/drv/sparcv9/usbser_edge: undefined symbol
    Sep 9 09:33:28 jump-test krtld: [ID 826211 kern.notice] 'usbser_soft_state_size'
    Sep 9 09:33:28 jump-test krtld: [ID 819705 kern.notice] /kernel/drv/sparcv9/usbser_edge: undefined symbol
    Sep 9 09:33:28 jump-test krtld: [ID 826211 kern.notice] 'usb_alloc_bulk_req'
    Sep 9 09:33:28 jump-test krtld: [ID 819705 kern.notice] /kernel/drv/sparcv9/usbser_edge: undefined symbol
    Sep 9 09:33:28 jump-test krtld: [ID 826211 kern.notice] 'usb_handle_remote_wakeup'
    Sep 9 09:33:28 jump-test krtld: [ID 819705 kern.notice] /kernel/drv/sparcv9/usbser_edge: undefined symbol
    Sep 9 09:33:28 jump-test krtld: [ID 826211 kern.notice] 'usb_client_attach'
    Sep 9 09:33:28 jump-test krtld: [ID 819705 kern.notice] /kernel/drv/sparcv9/usbser_edge: undefined symbol
    Sep 9 09:33:28 jump-test krtld: [ID 826211 kern.notice] 'usb_client_detach'
    Sep 9 09:33:28 jump-test krtld: [ID 472681 kern.notice] WARNING: mod_load: cannot load module 'usbser_edge'
    Sep 9 09:33:28 jump-test krtld: [ID 749970 kern.notice] WARNING: usbser_edge:
    Sep 9 09:33:28 jump-test krtld: [ID 225575 kern.notice] unable to resolve dependency, module 'misc/usba' not found
    Thanks in advance for any advice anyone can provide.
    pb

    I just attempted a generic search at Sunsolve, for "usbser_edge".
    It produced references to a lot of documents available after contract login to the site.
    If you have a Spectrum login account, get to BugID 4703982.
    It's from 2003 or so...
    but it discusses the SUNWuedg package being incorrectly installed,
    on beta versions of Sol-10, to an E250 and to a SB1000.
    Other search result references to various BugID's also happened to discuss
    removing references to the driver in the /etc/name_to_major file
    as well as in the /etc/driver_aliases file.
    See BugID 4790469 or BugID 5045102
    I don't trust my skill level with mucking around with such files, however.
    If you have contract coverage for the OS or for that system, open a support case.
    If not, then see if the SUNWuedg package is installed and remove it.
    Then a reconfiguration reboot may be in order.
    What the heck, try a reconfiguration reboot just for grins and giggles.
    ... just my two cents, at least.

  • Compile error: undefined symbols

    hello,
    i'm trying to install a software (Omnet, it's a network simulator) but while compiling it I get the following mesage. What do you think it depends on?
    Undefined symbols:
    "_xmlNewParserCtxt", referenced from:
    SAXParser::parse(char const*)in saxparser_libxml.o
    "_xmlDocGetRootElement", referenced from:
    SAXParser::parse(char const*)in saxparser_libxml.o
    "_xmlStructuredError", referenced from:
    SAXParser::parse(char const*)in saxparser_libxml.o
    "_xmlFreeParserCtxt", referenced from:
    SAXParser::parse(char const*)in saxparser_libxml.o
    SAXParser::parse(char const*)in saxparser_libxml.o
    SAXParser::parse(char const*)in saxparser_libxml.o
    "_xmlCtxtReadFile", referenced from:
    SAXParser::parse(char const*)in saxparser_libxml.o
    "_xmlFreeDoc", referenced from:
    SAXParser::parse(char const*)in saxparser_libxml.o
    SAXParser::parse(char const*)in saxparser_libxml.o
    ld: symbol(s) not found
    collect2: ld returned 1 exit status
    make[1]: * [libnedxml.so] Error 1
    make: * [nedxml] Error 2

    You should post such questions in Developer forum.
    Also, you will probably get better help from the OMNeT people themselves. They have a bug tracker and mailing list. The tool itself is based on Eclipse and is a 109 MB download. Doesn't look too enticing.

Maybe you are looking for

  • Can't create or modify ldap group or user

    I have a web proxy 4.0.6 (ans i try with 4.0.7)server link with 2003 active directory server But I cannot create or manage group The BaseDN is OU=company,DC=ssc,DC=com The BindDN is CN=Administrator,CN=Users,DC=ssc,DC=com The web proxy server can add

  • Itunes & external hard drive questions "original file could not be found"

    I recently got my first apple, a Powerbook G4, and I am trying to figure out how to store and access my music files that are on my external hard drive. I have some music stored on my laptop and the majority of it on the hard drive. I can play the fil

  • I1112 status of Shopping cart- Need to create a follow on document

    Hello Experts, I have one issue in which enduser had created a shopping cart and header status is approved but no follow on document is generated. at line item level the status is Error in Process. When i ran the report BBP_ALERT_SB_NOTTRANSFERED. th

  • Question about generate xml document

    Hi, I'm new to xml can anyone introduce me some tools to generate xml documents? or some faster way to generate xml documents.

  • Relinking objects in a timeline

    I set up a couple of projects but want to reference them in a different folder on my computer. Can I do that without having to redo the editing I already did on the timeline?