Package synonym not working

I'm calling a PL/SQL package from my APEX application. I created a synonym for the package as follows:
create or replace synonym apex_ebs.dcrd_inv_common for dcrd_inv_common;
However, i'm getting an error:
1 error has occurred
•ORA-06550: line 10, column 3: PLS-00201: identifier 'DCRD_INV_COMMON' must be declared ORA-06550: line 10, column 3: PL/SQL: Statement ignored
Did I miss a step?
If I go to object browser and view synonyms, it shows that DCRD_INV_COMMON does exist and is valid.
Thanks.
Paul

You are creating a private synonym in the APEX_EBS schema. Presumably what you are really trying to do is:
CREATE OR REPLACE SYNONYM apex_ebs.dcrd_inv_common FOR [schema_where_package_exists].dcrd_inv_common;Synonyms can be valid even when they do not point to anything at all. I just performed the following:
CREATE SYNONYM test FOR fred_flintstone;The synonym created without error and shows as a valid object. It simply points to something that doesn't actually exist. For that matter, synonyms don't actually 'point' to objects in that there is no connection between the synonym and the object it is intended to reference. All that happens if I issue "SELECT * FROM test" is that Oracle will substitute "SELECT * FROM fred_flintstone" when the SQL is executed.

Similar Messages

  • Table_From_Block Build-in Package is not working in Oracle 10G

    Hi
    Table_From_Block Build-in Package is not working in Oracle 10G
    Kindly advice..

    user648759 wrote:
    Hi
    Table_From_Block Build-in Package is not working in Oracle 10G
    Kindly advice..Provide a little more information. Forms version OS version, more information about your problem and question.
    --and explain what on earth Table_From_Block* mean's--
    Tony
    PS: TABLE_FORM_BLOCK is a built-in for internal use, usually auto generated by forms. For a moment I didn't get what that meant, need more coffee.
    Edited by: Tony Garabedian on Aug 29, 2008 12:39 PM

  • Air 2.7 and MacOs Lion: iPhone packager does not work

    hi. After upgrading from Snow Leopard to Lion the iPhone packager does not work. It throws an error concerning the Application Version Number. Is this a Know bug? Is there a work- around?  Thanks.  Michael.

    Yeah sorry, the start of my descriptor looks like this:
    <?xml version="1.0" encoding="utf-8" standalone="yes"?>
    <application xmlns="http://ns.adobe.com/air/application/2.7">
      <id></id>
      <versionNumber></versionNumber>
      <filename>d</filename>
      <description/>
      <name></name>
    When I go to compile the app the compiler inserts that line into my descriptor at the very bottom (just before the application tag closes). It's weird, I tried setting the <application xmlns="http://ns.adobe.com/air/application/2.7"> back to 2.6 and it works and seems to compile in 2.7 (as I noticed the timer bug).
    Anyway, I only tried 2.7 because I heard the GPU fullscreen bug had been fixed, but given that the timer issue still remains I'll go back to 2.6 for the time being.
    Thanks

  • After installing acrobat my Microsoft office package does not work properly, word will not open and in my email i can't select anything with the mouse

    After installing acrobat my Microsoft office package does not work properly, word will not open and when I want to write an email in my outlook email i can't select anything with the mouse. so copy past en delete are not an option.@

    Are you using any MS Office third party Add-ins? Test:  Remove third party Add-ins other than PDFMaker.  Test to see if the MS Office apps run afterward.
    Did you attempt to repair MS Office?  Test:  Go to Add/Remove Control Panel run Repair.
    Finally, have you tried testing to see if it's PDFMaker?  Test: Use the Add/Remove Control Panel to modify the Acrobat installation to remove PDFMaker.  See if MS Office applications launch and behave correctly?

  • Curl to download package is not working

    The curl command given on the site: http://dev.day.com/docs/en/crx/current/how_to/package_manager.html?cq_ck=1350401916867#Dow nloading%20Packages is not working. Can any one first test and give the exact working command to me???

    Can you try this
    curl -u <username>:<password> http://<host>:<port>/<path to package in repository> -o <destination file>
    Example - curl -u admin:admin http://localhost:4502/etc/packages/my_packages/test.zip -o ./test.zip
    if you don't use option "-o filepath" then it will write output stream to system output may be because of that you are not able to see the download.

  • IE 8 Thin App package in not working on system with IE 10 installed

    We have published IE8 thin app package for our users. But today I noticed that after upgrading IE browser to version 10 it is not working. when we launch the application on system with IE 8 than it is working fine.
    It crashes on systems with IE10. Any idea why it is happening?
    Regards,
    VST

    Download the offline installer here: http://fpdownload.macromedia.com/get/flashplayer/current/licensing/mac/install_flash_playe r_11_osx.dmg
    If it won't download directly, right click and "Save as"
    Go to: Mac HD/Library/Internet Plugins
    Trash the Flash Player.plugin file from there
    Go to: Mac HD/Library/Application Support/Adobe
    Trash the Flash Player folder (the whole folder)
    Empty the trash
    Reboot
    Mount the DMG and run the installer.
    BEFORE opening any Flash content in Safari, open Safari>Preferences, and check the Security tab to make sure "Allow all other plugins" is checked.

  • Import package does not work - beginner help

    Hi, I'm a beginner with java. I just trying to figure out how to use packages. I followed everything in the tutorial, but I can't figure out why my simple example does not work.
    I made the following directories three, for the sake of the example.
    in /home/username/Desktop I created a directory named it
    inside it I created prove
    inside prove I created test1 and test2
    Inside test1 I created the following sample class:
    package it.prove.test1;
    public class HelloWorld
         private String message;
         public HelloWorld(String message)
              this.message = message;
         public String getMessage()
              return this.message;
    }in the directory test2 I created this other one:
    package it.prove.test2;
    import it.prove.test1.HelloWorld;
    public class HelloWorldProgram
         public static void main(String[] args)
              HelloWorld hw = new HelloWorld("Guten Tag, Welt!");
              System.out.println(hw.getMessage());
    }So now I have this three:
    it
    it/prove
    it/prove/test1, it/prove/test2
    As I said in test1 there is HelloWorld.java and in test2 HelloWorldProgram.java.
    When I compile HelloWorld.java, it worked fine.
    When I try to compile HelloWorldProgram.java, the compiler says that cannot find package it.prove.test1..
    Why that? What did I make wrong?
    Sorry both for my bad english (it is not my first language) and for the really trivial question (I'm a really beginner).
    Tnx to whoever will help

    Assuming you are running on Windows here.
    Packages are directly tied to the classpath. Before java can find the it.prove.test1 package, it needs to be a part of the classpath. To make this possible, you need to add the root of the path, where the 'it' directory is in, to the classpath, like this:
    javac -cp .;/home/username/Desktop file.java
    the -cp switch tells java which classpath to use; it consists of two elements:
    . = current directory
    /home/username/Desktop = the directory containing the 'it' package root
    When run like this, it should work. The same goes for running the code, you would run it like this:
    java -cp .;/home/username/Desktop it.prove.test2.HelloWorldProgram
    Hope that gives you the hints you need.

  • Packaging ipa not working any more with AIR 3.3

    Hello,
    I use a custom ANE that worked without any problems on AIR 3.0, 3.1 and 3.2. Since I updated the ipa doesn't even compile any more. I get the following output on the command line on Windows and MacOS:
    K:\MyFiles\src\iOS\word smith pro>c:\air\bin\adt -package  -target ipa-test -storetype pkcs12 -keystore iphone_dev.p12 -provisioning-profile development.mobileprovision  wordSmithPro.ipa wordSmith-app-xml.xml WordSmithMob.swf icons sounds dicts -extdir "native"
    password:
    ld: warning: -ios_version_min not specificed, assuming 4.0
    ld: warning: ignoring file C:\\Users\\Henning\\AppData\\Local\\Temp\\ca8c0034-79
    68-44dd-9859-0abb8a07e41b/libcom.devarai.MyAD.a, file was built for archive whic
    h is not the architecture being linked (armv7)
    ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: C:\\air\\lib\\aot/lib/cr
    t1.o
    ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: C:\\air\\lib\\aot/lib/gc
    c/libgcc.a(_addsubdf3.o)
    ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: C:\\air\\lib\\aot/lib/gc
    c/libgcc.a(_fixunsdfdi.o)
    ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: C:\\air\\lib\\aot/lib/gc
    c/libgcc.a(_udivdi3.o)
    ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: C:\\air\\lib\\aot/lib/gc
    c/libgcc.a(_umoddi3.o)
    ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: C:\\air\\lib\\aot/lib/gc
    c/libgcc.a(_modsi3.o)
    ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: C:\\air\\lib\\aot/lib/gc
    c/libgcc.a(_udivsi3.o)
    ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: C:\\air\\lib\\aot/lib/gc
    c/libgcc.a(_umodsi3.o)
    ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: C:\\air\\lib\\aot/lib/gc
    c/libgcc.a(_divsi3.o)
    ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: C:\\air\\lib\\aot/lib/gc
    c/libgcc.a(_dvmd_tls.o)
    ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: C:\\air\\lib\\aot/lib/gc
    c/libgcc.a(_clz.o)
    ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: C:\\air\\lib\\aot/lib/gc
    c/libgcc.a(_fixdfsi.o)
    ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: C:\\air\\lib\\aot/lib/gc
    c/libgcc.a(_fixunsdfsi.o)
    ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: C:\\air\\lib\\aot/lib/gc
    c/libgcc.a(_divdi3.o)
    ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: C:\\air\\lib\\aot/lib/gc
    c/libgcc.a(_addsubsf3.o)
    ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: C:\\air\\lib\\aot/lib/gc
    c/libgcc.a(_fixdfdi.o)
    ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: C:\\air\\lib\\aot/lib/gc
    c/libgcc.a(_moddi3.o)
    ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: C:\\air\\lib\\aot/lib/gc
    c/libgcc.a(_cmpdf2.o)
    ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: C:\\air\\lib\\aot/lib/gc
    c/libgcc.a(_muldivdf3.o)
    ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: C:\\air\\lib\\aot/lib/gc
    c/libgcc.a(_unorddf2.o)
    ld: warning: ARM function not 4-byte aligned: _IDctSlow_ARM from C:\\air\\lib\\a
    ot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDctSlowProcessRowLoop from C:\\ai
    r\\lib\\aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDctSlowSkipArithmeticInRow from C
    :\\air\\lib\\aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDctSlowProcessColumnLoop from C:\
    \air\\lib\\aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDctSlowConstantxC1S7 from C:\\air
    \\lib\\aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDctSlowConstantTable from C:\\air
    \\lib\\aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDctSlowConstantxC7S1 from C:\\air
    \\lib\\aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDctSlowConstantxC3S5 from C:\\air
    \\lib\\aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDctSlowConstantxC5S3 from C:\\air
    \\lib\\aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDctSlowConstantxC4S4 from C:\\air
    \\lib\\aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDctSlowConstantxC2S6 from C:\\air
    \\lib\\aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDctSlowConstantxC6S2 from C:\\air
    \\lib\\aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: _IDct10_ARM from C:\\air\\lib\\aot
    /lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDct10ComputeRow0 from C:\\air\\li
    b\\aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDct10ComputeRow1 from C:\\air\\li
    b\\aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDct10ComputeRow2 from C:\\air\\li
    b\\aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDct10ComputeRow3 from C:\\air\\li
    b\\aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDct10_skip_Row3 from C:\\air\\lib
    \\aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDct10ProcessColumns from C:\\air\
    \lib\\aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDct10ProcessColumnLoop from C:\\a
    ir\\lib\\aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDct10Fill2WithZero from C:\\air\\
    lib\\aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDct10Fill1WithZero from C:\\air\\
    lib\\aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDct10Fill0WithZero from C:\\air\\
    lib\\aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: _IDct1_ARM from C:\\air\\lib\\aot/
    lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: _IDCT1_plus_ReconBlock_ARM from C:
    \\air\\lib\\aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDCT1_plus_ReconBlock_loop from C:
    \\air\\lib\\aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: _IDCT1_plus_ReconInter_ARM from C:
    \\air\\lib\\aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDCT1_plus_ReconInter_loop from C:
    \\air\\lib\\aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: _FilterBlock1dH_ARM11 from C:\\air
    \\lib\\aot/lib/libRuntimeAOT.arm-air.a(predfilters.o)
    ld: warning: ARM function not 4-byte aligned: loop1 from C:\\air\\lib\\aot/lib/l
    ibRuntimeAOT.arm-air.a(predfilters.o)
    ld: warning: ARM function not 4-byte aligned: _FilterBlock1dV_ARM11 from C:\\air
    \\lib\\aot/lib/libRuntimeAOT.arm-air.a(predfilters.o)
    ld: warning: ARM function not 4-byte aligned: loop3 from C:\\air\\lib\\aot/lib/l
    ibRuntimeAOT.arm-air.a(predfilters.o)
    ld: warning: ARM function not 4-byte aligned: loop4 from C:\\air\\lib\\aot/lib/l
    ibRuntimeAOT.arm-air.a(predfilters.o)
    ld: warning: ARM function not 4-byte aligned: _FilterBlock2dFirstPass_ARM11 from
    C:\\air\\lib\\aot/lib/libRuntimeAOT.arm-air.a(predfilters.o)
    ld: warning: ARM function not 4-byte aligned: loop5 from C:\\air\\lib\\aot/lib/l
    ibRuntimeAOT.arm-air.a(predfilters.o)
    ld: warning: ARM function not 4-byte aligned: _FilterBlock1dBilH_ARM11 from C:\\
    air\\lib\\aot/lib/libRuntimeAOT.arm-air.a(predfilters.o)
    ld: warning: ARM function not 4-byte aligned: FilterBlock1dBilH_next_row from C:
    \\air\\lib\\aot/lib/libRuntimeAOT.arm-air.a(predfilters.o)
    ld: warning: ARM function not 4-byte aligned: _FilterBlock1dBilV_ARM11 from C:\\
    air\\lib\\aot/lib/libRuntimeAOT.arm-air.a(predfilters.o)
    ld: warning: ARM function not 4-byte aligned: FilterBlock1dBilV_outer_loop from
    C:\\air\\lib\\aot/lib/libRuntimeAOT.arm-air.a(predfilters.o)
    ld: warning: ARM function not 4-byte aligned: FilterBlock1dBilV_inner_loop from
    C:\\air\\lib\\aot/lib/libRuntimeAOT.arm-air.a(predfilters.o)
    ld: warning: ARM function not 4-byte aligned: _FilterBlock2dBil_FirstPass_ARM11
    from C:\\air\\lib\\aot/lib/libRuntimeAOT.arm-air.a(predfilters.o)
    ld: warning: ARM function not 4-byte aligned: FilterBlock2dBil_FirstPass_next_ro
    w from C:\\air\\lib\\aot/lib/libRuntimeAOT.arm-air.a(predfilters.o)
    ld: warning: ARM function not 4-byte aligned: _Copy12x12_ARM9E from C:\\air\\lib
    \\aot/lib/libRuntimeAOT.arm-air.a(copy12x12.o)
    ld: warning: ARM function not 4-byte aligned: Copy12x12_CSrcAlign0 from C:\\air\
    \lib\\aot/lib/libRuntimeAOT.arm-air.a(copy12x12.o)
    ld: warning: ARM function not 4-byte aligned: Copy12x12_CSrcAlign1 from C:\\air\
    \lib\\aot/lib/libRuntimeAOT.arm-air.a(copy12x12.o)
    ld: warning: ARM function not 4-byte aligned: Copy12x12_CSrcAlign2 from C:\\air\
    \lib\\aot/lib/libRuntimeAOT.arm-air.a(copy12x12.o)
    ld: warning: ARM function not 4-byte aligned: Copy12x12_CSrcAlign3 from C:\\air\
    \lib\\aot/lib/libRuntimeAOT.arm-air.a(copy12x12.o)
    ld: warning: ARM function not 4-byte aligned: _ReconIntra_ARM11 from C:\\air\\li
    b\\aot/lib/libRuntimeAOT.arm-air.a(reconstruct-F6251070C86EBC8D.o)
    ld: warning: ARM function not 4-byte aligned: loop from C:\\air\\lib\\aot/lib/li
    bRuntimeAOT.arm-air.a(reconstruct-F6251070C86EBC8D.o)
    ld: warning: ARM function not 4-byte aligned: _ReconInter_ARM11 from C:\\air\\li
    b\\aot/lib/libRuntimeAOT.arm-air.a(reconstruct-F6251070C86EBC8D.o)
    ld: warning: ARM function not 4-byte aligned: loop1 from C:\\air\\lib\\aot/lib/l
    ibRuntimeAOT.arm-air.a(reconstruct-F6251070C86EBC8D.o)
    ld: warning: ARM function not 4-byte aligned: _ReconBlock_ARM11 from C:\\air\\li
    b\\aot/lib/libRuntimeAOT.arm-air.a(reconstruct-F6251070C86EBC8D.o)
    ld: warning: ARM function not 4-byte aligned: ReconBlock_ARM11_LOOP from C:\\air
    \\lib\\aot/lib/libRuntimeAOT.arm-air.a(reconstruct-F6251070C86EBC8D.o)
    ld: warning: ARM function not 4-byte aligned: _tDecodeBool from C:\\air\\lib\\ao
    t/lib/libRuntimeAOT.arm-air.a(tDecodeBool.o)
    ld: warning: ARM function not 4-byte aligned: _tDecodeBool128 from C:\\air\\lib\
    \aot/lib/libRuntimeAOT.arm-air.a(tDecodeBool.o)
    Undefined symbols for architecture armv7:
      "_ExtInitializer", referenced from:
          _g_com_adobe_air_fre_fmap in extensionglue.o
         (maybe you meant: _ExtInitializer_name)
      "_ExtFinalizer", referenced from:
          _g_com_adobe_air_fre_fmap in extensionglue.o
         (maybe you meant: _ExtFinalizer_name)
    ld: symbol(s) not found for architecture armv7
    Compilation failed while executing : ld64

    Kind of same thing happening with SDK 3.1 build where I'm also passing -platformsdk (IOS SDK 5.0 path) to the ADT. The IPA is generating but a lots of warning, and even when I'm running the IPA on device, its terminated with strange errors. I've investigated that its with other 'stageVideo' functionalities in the app and when I'm trying to close the stream by 'stream.close()' and 'stream.dispose()'. If I cut-off the -platformsdk in the adt build, then the app works fine, but the IOS 5.0 specific things apparently not working. I've also did 'armv7' only in the XCode.
    Following is the command-line for the adt that I'm using:
    /Applications/Adobe\ Flash\ Builder\ 4.6/sdks/4.6.0/bin/adt -package -target ipa-test-interpreter -provisioning-profile <myprofile>.mobileprovision -storetype pkcs12 -keystore Certificates.p12 <myipa>.ipa <myapp>-app.xml <myswf>.swf -extdir ../ext/ -platformsdk /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.0.sdk/
    Here's the warning while build:
    ld: warning: -ios_version_min not specificed, assuming 4.0
    ld: warning: ARM function not 4-byte aligned: _IDctSlow_ARM from /Applications/Adobe Flash Builder 4.6/sdks/4.6.0/lib/aot/lib/libRuntimeInterpreter.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDctSlowProcessRowLoop from /Applications/Adobe Flash Builder 4.6/sdks/4.6.0/lib/aot/lib/libRuntimeInterpreter.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDctSlowSkipArithmeticInRow from /Applications/Adobe Flash Builder 4.6/sdks/4.6.0/lib/aot/lib/libRuntimeInterpreter.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDctSlowProcessColumnLoop from /Applications/Adobe Flash Builder 4.6/sdks/4.6.0/lib/aot/lib/libRuntimeInterpreter.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDctSlowConstantxC1S7 from /Applications/Adobe Flash Builder 4.6/sdks/4.6.0/lib/aot/lib/libRuntimeInterpreter.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDctSlowConstantTable from /Applications/Adobe Flash Builder 4.6/sdks/4.6.0/lib/aot/lib/libRuntimeInterpreter.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDctSlowConstantxC7S1 from /Applications/Adobe Flash Builder 4.6/sdks/4.6.0/lib/aot/lib/libRuntimeInterpreter.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDctSlowConstantxC3S5 from /Applications/Adobe Flash Builder 4.6/sdks/4.6.0/lib/aot/lib/libRuntimeInterpreter.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDctSlowConstantxC5S3 from /Applications/Adobe Flash Builder 4.6/sdks/4.6.0/lib/aot/lib/libRuntimeInterpreter.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDctSlowConstantxC4S4 from /Applications/Adobe Flash Builder 4.6/sdks/4.6.0/lib/aot/lib/libRuntimeInterpreter.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDctSlowConstantxC2S6 from /Applications/Adobe Flash Builder 4.6/sdks/4.6.0/lib/aot/lib/libRuntimeInterpreter.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDctSlowConstantxC6S2 from /Applications/Adobe Flash Builder 4.6/sdks/4.6.0/lib/aot/lib/libRuntimeInterpreter.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: _IDct10_ARM from /Applications/Adobe Flash Builder 4.6/sdks/4.6.0/lib/aot/lib/libRuntimeInterpreter.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDct10ComputeRow0 from /Applications/Adobe Flash Builder 4.6/sdks/4.6.0/lib/aot/lib/libRuntimeInterpreter.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDct10ComputeRow1 from /Applications/Adobe Flash Builder 4.6/sdks/4.6.0/lib/aot/lib/libRuntimeInterpreter.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDct10ComputeRow2 from /Applications/Adobe Flash Builder 4.6/sdks/4.6.0/lib/aot/lib/libRuntimeInterpreter.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDct10ComputeRow3 from /Applications/Adobe Flash Builder 4.6/sdks/4.6.0/lib/aot/lib/libRuntimeInterpreter.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDct10_skip_Row3 from /Applications/Adobe Flash Builder 4.6/sdks/4.6.0/lib/aot/lib/libRuntimeInterpreter.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDct10ProcessColumns from /Applications/Adobe Flash Builder 4.6/sdks/4.6.0/lib/aot/lib/libRuntimeInterpreter.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDct10ProcessColumnLoop from /Applications/Adobe Flash Builder 4.6/sdks/4.6.0/lib/aot/lib/libRuntimeInterpreter.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDct10Fill2WithZero from /Applications/Adobe Flash Builder 4.6/sdks/4.6.0/lib/aot/lib/libRuntimeInterpreter.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDct10Fill1WithZero from /Applications/Adobe Flash Builder 4.6/sdks/4.6.0/lib/aot/lib/libRuntimeInterpreter.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDct10Fill0WithZero from /Applications/Adobe Flash Builder 4.6/sdks/4.6.0/lib/aot/lib/libRuntimeInterpreter.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: _IDct1_ARM from /Applications/Adobe Flash Builder 4.6/sdks/4.6.0/lib/aot/lib/libRuntimeInterpreter.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: _IDCT1_plus_ReconBlock_ARM from /Applications/Adobe Flash Builder 4.6/sdks/4.6.0/lib/aot/lib/libRuntimeInterpreter.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDCT1_plus_ReconBlock_loop from /Applications/Adobe Flash Builder 4.6/sdks/4.6.0/lib/aot/lib/libRuntimeInterpreter.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: _IDCT1_plus_ReconInter_ARM from /Applications/Adobe Flash Builder 4.6/sdks/4.6.0/lib/aot/lib/libRuntimeInterpreter.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDCT1_plus_ReconInter_loop from /Applications/Adobe Flash Builder 4.6/sdks/4.6.0/lib/aot/lib/libRuntimeInterpreter.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: _FilterBlock1dH_ARM11 from /Applications/Adobe Flash Builder 4.6/sdks/4.6.0/lib/aot/lib/libRuntimeInterpreter.arm-air.a(predfilters.o)
    ld: warning: ARM function not 4-byte aligned: loop1 from /Applications/Adobe Flash Builder 4.6/sdks/4.6.0/lib/aot/lib/libRuntimeInterpreter.arm-air.a(predfilters.o)
    ld: warning: ARM function not 4-byte aligned: _FilterBlock1dV_ARM11 from /Applications/Adobe Flash Builder 4.6/sdks/4.6.0/lib/aot/lib/libRuntimeInterpreter.arm-air.a(predfilters.o)
    ld: warning: ARM function not 4-byte aligned: loop3 from /Applications/Adobe Flash Builder 4.6/sdks/4.6.0/lib/aot/lib/libRuntimeInterpreter.arm-air.a(predfilters.o)
    ld: warning: ARM function not 4-byte aligned: loop4 from /Applications/Adobe Flash Builder 4.6/sdks/4.6.0/lib/aot/lib/libRuntimeInterpreter.arm-air.a(predfilters.o)
    ld: warning: ARM function not 4-byte aligned: _FilterBlock2dFirstPass_ARM11 from /Applications/Adobe Flash Builder 4.6/sdks/4.6.0/lib/aot/lib/libRuntimeInterpreter.arm-air.a(predfilters.o)
    ld: warning: ARM function not 4-byte aligned: loop5 from /Applications/Adobe Flash Builder 4.6/sdks/4.6.0/lib/aot/lib/libRuntimeInterpreter.arm-air.a(predfilters.o)
    ld: warning: ARM function not 4-byte aligned: _FilterBlock1dBilH_ARM11 from /Applications/Adobe Flash Builder 4.6/sdks/4.6.0/lib/aot/lib/libRuntimeInterpreter.arm-air.a(predfilters.o)
    ld: warning: ARM function not 4-byte aligned: FilterBlock1dBilH_next_row from /Applications/Adobe Flash Builder 4.6/sdks/4.6.0/lib/aot/lib/libRuntimeInterpreter.arm-air.a(predfilters.o)
    ld: warning: ARM function not 4-byte aligned: _FilterBlock1dBilV_ARM11 from /Applications/Adobe Flash Builder 4.6/sdks/4.6.0/lib/aot/lib/libRuntimeInterpreter.arm-air.a(predfilters.o)
    ld: warning: ARM function not 4-byte aligned: FilterBlock1dBilV_outer_loop from /Applications/Adobe Flash Builder 4.6/sdks/4.6.0/lib/aot/lib/libRuntimeInterpreter.arm-air.a(predfilters.o)
    ld: warning: ARM function not 4-byte aligned: FilterBlock1dBilV_inner_loop from /Applications/Adobe Flash Builder 4.6/sdks/4.6.0/lib/aot/lib/libRuntimeInterpreter.arm-air.a(predfilters.o)
    ld: warning: ARM function not 4-byte aligned: _FilterBlock2dBil_FirstPass_ARM11 from /Applications/Adobe Flash Builder 4.6/sdks/4.6.0/lib/aot/lib/libRuntimeInterpreter.arm-air.a(predfilters.o)
    ld: warning: ARM function not 4-byte aligned: FilterBlock2dBil_FirstPass_next_row from /Applications/Adobe Flash Builder 4.6/sdks/4.6.0/lib/aot/lib/libRuntimeInterpreter.arm-air.a(predfilters.o)
    ld: warning: ARM function not 4-byte aligned: _ReconIntra_ARM11 from /Applications/Adobe Flash Builder 4.6/sdks/4.6.0/lib/aot/lib/libRuntimeInterpreter.arm-air.a(reconstruct-F6251070C86EBC8D.o )
    ld: warning: ARM function not 4-byte aligned: loop from /Applications/Adobe Flash Builder 4.6/sdks/4.6.0/lib/aot/lib/libRuntimeInterpreter.arm-air.a(reconstruct-F6251070C86EBC8D.o )
    ld: warning: ARM function not 4-byte aligned: _ReconInter_ARM11 from /Applications/Adobe Flash Builder 4.6/sdks/4.6.0/lib/aot/lib/libRuntimeInterpreter.arm-air.a(reconstruct-F6251070C86EBC8D.o )
    ld: warning: ARM function not 4-byte aligned: loop1 from /Applications/Adobe Flash Builder 4.6/sdks/4.6.0/lib/aot/lib/libRuntimeInterpreter.arm-air.a(reconstruct-F6251070C86EBC8D.o )
    ld: warning: ARM function not 4-byte aligned: _ReconBlock_ARM11 from /Applications/Adobe Flash Builder 4.6/sdks/4.6.0/lib/aot/lib/libRuntimeInterpreter.arm-air.a(reconstruct-F6251070C86EBC8D.o )
    ld: warning: ARM function not 4-byte aligned: ReconBlock_ARM11_LOOP from /Applications/Adobe Flash Builder 4.6/sdks/4.6.0/lib/aot/lib/libRuntimeInterpreter.arm-air.a(reconstruct-F6251070C86EBC8D.o )
    ld: warning: ARM function not 4-byte aligned: _Copy12x12_ARM9E from /Applications/Adobe Flash Builder 4.6/sdks/4.6.0/lib/aot/lib/libRuntimeInterpreter.arm-air.a(copy12x12.o)
    ld: warning: ARM function not 4-byte aligned: Copy12x12_CSrcAlign0 from /Applications/Adobe Flash Builder 4.6/sdks/4.6.0/lib/aot/lib/libRuntimeInterpreter.arm-air.a(copy12x12.o)
    ld: warning: ARM function not 4-byte aligned: Copy12x12_CSrcAlign1 from /Applications/Adobe Flash Builder 4.6/sdks/4.6.0/lib/aot/lib/libRuntimeInterpreter.arm-air.a(copy12x12.o)
    ld: warning: ARM function not 4-byte aligned: Copy12x12_CSrcAlign2 from /Applications/Adobe Flash Builder 4.6/sdks/4.6.0/lib/aot/lib/libRuntimeInterpreter.arm-air.a(copy12x12.o)
    ld: warning: ARM function not 4-byte aligned: Copy12x12_CSrcAlign3 from /Applications/Adobe Flash Builder 4.6/sdks/4.6.0/lib/aot/lib/libRuntimeInterpreter.arm-air.a(copy12x12.o)
    ld: warning: ARM function not 4-byte aligned: _tDecodeBool from /Applications/Adobe Flash Builder 4.6/sdks/4.6.0/lib/aot/lib/libRuntimeInterpreter.arm-air.a(tDecodeBool.o)
    ld: warning: ARM function not 4-byte aligned: _tDecodeBool128 from /Applications/Adobe Flash Builder 4.6/sdks/4.6.0/lib/aot/lib/libRuntimeInterpreter.arm-air.a(tDecodeBool.o)

  • Package versioning not working

    I'm having trouble getting the package versioning to work for me for some reason. I've stripped it down to the most elemental of examples and I'm still getting back null for all the versioning info for my package.
    I set up a tmp package with a Tmp.java class as follows:
    package tmp;
    class Tmp
    public static void main(String[] argv)
    Package p = Tmp.class.getPackage();
    System.out.println("Version " + p.getSpecificationVersion() + "\nImplementation Version "
    + p.getImplementationVersion());
    My manifest file is as follows:
    Manifest-Version: 1.0
    Name: tmp
    Specification-Version: blah
    Implementation-Version: foo
    I made sure the manifest file has a newline at the end and is in UTF8 format. I package it up with:
    jar cfm tmp.jar tmp/manifest.txt tmp/*.class
    I run it with:
    java -cp tmp.jar tmp/Tmp.class
    and get:
    Version null
    Implementation Version null
    I can't get it to work with either Linux or Windows.
    Linux Java version:
    java version "1.5.0"
    Java(TM) 2 Runtime Environment, Standard Edition (build pxp64devifx-20060310 (SR1))
    IBM J9 VM (build 2.3, J2RE 1.5.0 IBM J9 2.3 Linux ppc64-64 j9vmxp6423ifx-20060310 (JIT enabled)
    J9VM - 20060220_05389_BHdSMr
    JIT - 20060220_2133_r8
    GC - 20060214_AA)
    JCL - 20060222a
    Windows Java version:
    java version "1.5.0_10"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_10-b03)
    Java HotSpot(TM) Client VM (build 1.5.0_10-b03, mixed mode, sharing)
    Any help would be most appreciated.

    Ok, I figured it out. I didn't have a / on the end of my Name: line.

  • Execute Package Task Not Working After New Installation VS2012

    After installing VS2012 Update 4, the execute package task runs the child package out of order.
    The same version of VS is being used as the old computer (same everything, SQL 2012, OS...).  The solution works correctly on machines where VS2012 was installed prior to July 2014.  I've downloaded the BIDS, SSDT.
    Anyone else have the same problem?  I have yet to find anywhere on the internet where someone has reported the same issue.  It has happened on multiple computers since August 2014.

    How to reproduce?
    It is not very likely, but did you try searching MS Connect for this issue?
    Arthur
    MyBlog
    Twitter

  • AIR 3.3 and compiling/packaging IPA not working any more. Why?

    Hello,
    I use a custom ANE that worked without any problems on AIR 3.0, 3.1 and 3.2. Since I updated the ipa doesn't even compile any more. I get the following output on the command line on Windows and MacOS:
    K:\MyFiles\src\iOS\word smith pro>c:\air\bin\adt -package  -target ipa-test -storetype pkcs12 -keystore iphone_dev.p12 -provisioning-profile development.mobileprovision  wordSmithPro.ipa wordSmith-app-xml.xml WordSmithMob.swf icons sounds dicts -extdir "native"
    password:
    ld: warning: -ios_version_min not specificed, assuming 4.0
    ld: warning: ignoring file C:\\Users\\Henning\\AppData\\Local\\Temp\\ca8c0034-79
    68-44dd-9859-0abb8a07e41b/libcom.devarai.MyAD.a, file was built for archive whic
    h is not the architecture being linked (armv7)
    ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: C:\\air\\lib\\aot/lib/cr
    t1.o
    ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: C:\\air\\lib\\aot/lib/gc
    c/libgcc.a(_addsubdf3.o)
    ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: C:\\air\\lib\\aot/lib/gc
    c/libgcc.a(_fixunsdfdi.o)
    ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: C:\\air\\lib\\aot/lib/gc
    c/libgcc.a(_udivdi3.o)
    ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: C:\\air\\lib\\aot/lib/gc
    c/libgcc.a(_umoddi3.o)
    ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: C:\\air\\lib\\aot/lib/gc
    c/libgcc.a(_modsi3.o)
    ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: C:\\air\\lib\\aot/lib/gc
    c/libgcc.a(_udivsi3.o)
    ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: C:\\air\\lib\\aot/lib/gc
    c/libgcc.a(_umodsi3.o)
    ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: C:\\air\\lib\\aot/lib/gc
    c/libgcc.a(_divsi3.o)
    ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: C:\\air\\lib\\aot/lib/gc
    c/libgcc.a(_dvmd_tls.o)
    ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: C:\\air\\lib\\aot/lib/gc
    c/libgcc.a(_clz.o)
    ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: C:\\air\\lib\\aot/lib/gc
    c/libgcc.a(_fixdfsi.o)
    ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: C:\\air\\lib\\aot/lib/gc
    c/libgcc.a(_fixunsdfsi.o)
    ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: C:\\air\\lib\\aot/lib/gc
    c/libgcc.a(_divdi3.o)
    ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: C:\\air\\lib\\aot/lib/gc
    c/libgcc.a(_addsubsf3.o)
    ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: C:\\air\\lib\\aot/lib/gc
    c/libgcc.a(_fixdfdi.o)
    ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: C:\\air\\lib\\aot/lib/gc
    c/libgcc.a(_moddi3.o)
    ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: C:\\air\\lib\\aot/lib/gc
    c/libgcc.a(_cmpdf2.o)
    ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: C:\\air\\lib\\aot/lib/gc
    c/libgcc.a(_muldivdf3.o)
    ld: warning: CPU_SUBTYPE_ARM_ALL subtype is deprecated: C:\\air\\lib\\aot/lib/gc
    c/libgcc.a(_unorddf2.o)
    ld: warning: ARM function not 4-byte aligned: _IDctSlow_ARM from C:\\air\\lib\\a
    ot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDctSlowProcessRowLoop from C:\\ai
    r\\lib\\aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDctSlowSkipArithmeticInRow from C
    :\\air\\lib\\aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDctSlowProcessColumnLoop from C:\
    \air\\lib\\aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDctSlowConstantxC1S7 from C:\\air
    \\lib\\aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDctSlowConstantTable from C:\\air
    \\lib\\aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDctSlowConstantxC7S1 from C:\\air
    \\lib\\aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDctSlowConstantxC3S5 from C:\\air
    \\lib\\aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDctSlowConstantxC5S3 from C:\\air
    \\lib\\aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDctSlowConstantxC4S4 from C:\\air
    \\lib\\aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDctSlowConstantxC2S6 from C:\\air
    \\lib\\aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDctSlowConstantxC6S2 from C:\\air
    \\lib\\aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: _IDct10_ARM from C:\\air\\lib\\aot
    /lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDct10ComputeRow0 from C:\\air\\li
    b\\aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDct10ComputeRow1 from C:\\air\\li
    b\\aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDct10ComputeRow2 from C:\\air\\li
    b\\aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDct10ComputeRow3 from C:\\air\\li
    b\\aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDct10_skip_Row3 from C:\\air\\lib
    \\aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDct10ProcessColumns from C:\\air\
    \lib\\aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDct10ProcessColumnLoop from C:\\a
    ir\\lib\\aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDct10Fill2WithZero from C:\\air\\
    lib\\aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDct10Fill1WithZero from C:\\air\\
    lib\\aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDct10Fill0WithZero from C:\\air\\
    lib\\aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: _IDct1_ARM from C:\\air\\lib\\aot/
    lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: _IDCT1_plus_ReconBlock_ARM from C:
    \\air\\lib\\aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDCT1_plus_ReconBlock_loop from C:
    \\air\\lib\\aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: _IDCT1_plus_ReconInter_ARM from C:
    \\air\\lib\\aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDCT1_plus_ReconInter_loop from C:
    \\air\\lib\\aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: _FilterBlock1dH_ARM11 from C:\\air
    \\lib\\aot/lib/libRuntimeAOT.arm-air.a(predfilters.o)
    ld: warning: ARM function not 4-byte aligned: loop1 from C:\\air\\lib\\aot/lib/l
    ibRuntimeAOT.arm-air.a(predfilters.o)
    ld: warning: ARM function not 4-byte aligned: _FilterBlock1dV_ARM11 from C:\\air
    \\lib\\aot/lib/libRuntimeAOT.arm-air.a(predfilters.o)
    ld: warning: ARM function not 4-byte aligned: loop3 from C:\\air\\lib\\aot/lib/l
    ibRuntimeAOT.arm-air.a(predfilters.o)
    ld: warning: ARM function not 4-byte aligned: loop4 from C:\\air\\lib\\aot/lib/l
    ibRuntimeAOT.arm-air.a(predfilters.o)
    ld: warning: ARM function not 4-byte aligned: _FilterBlock2dFirstPass_ARM11 from
    C:\\air\\lib\\aot/lib/libRuntimeAOT.arm-air.a(predfilters.o)
    ld: warning: ARM function not 4-byte aligned: loop5 from C:\\air\\lib\\aot/lib/l
    ibRuntimeAOT.arm-air.a(predfilters.o)
    ld: warning: ARM function not 4-byte aligned: _FilterBlock1dBilH_ARM11 from C:\\
    air\\lib\\aot/lib/libRuntimeAOT.arm-air.a(predfilters.o)
    ld: warning: ARM function not 4-byte aligned: FilterBlock1dBilH_next_row from C:
    \\air\\lib\\aot/lib/libRuntimeAOT.arm-air.a(predfilters.o)
    ld: warning: ARM function not 4-byte aligned: _FilterBlock1dBilV_ARM11 from C:\\
    air\\lib\\aot/lib/libRuntimeAOT.arm-air.a(predfilters.o)
    ld: warning: ARM function not 4-byte aligned: FilterBlock1dBilV_outer_loop from
    C:\\air\\lib\\aot/lib/libRuntimeAOT.arm-air.a(predfilters.o)
    ld: warning: ARM function not 4-byte aligned: FilterBlock1dBilV_inner_loop from
    C:\\air\\lib\\aot/lib/libRuntimeAOT.arm-air.a(predfilters.o)
    ld: warning: ARM function not 4-byte aligned: _FilterBlock2dBil_FirstPass_ARM11
    from C:\\air\\lib\\aot/lib/libRuntimeAOT.arm-air.a(predfilters.o)
    ld: warning: ARM function not 4-byte aligned: FilterBlock2dBil_FirstPass_next_ro
    w from C:\\air\\lib\\aot/lib/libRuntimeAOT.arm-air.a(predfilters.o)
    ld: warning: ARM function not 4-byte aligned: _Copy12x12_ARM9E from C:\\air\\lib
    \\aot/lib/libRuntimeAOT.arm-air.a(copy12x12.o)
    ld: warning: ARM function not 4-byte aligned: Copy12x12_CSrcAlign0 from C:\\air\
    \lib\\aot/lib/libRuntimeAOT.arm-air.a(copy12x12.o)
    ld: warning: ARM function not 4-byte aligned: Copy12x12_CSrcAlign1 from C:\\air\
    \lib\\aot/lib/libRuntimeAOT.arm-air.a(copy12x12.o)
    ld: warning: ARM function not 4-byte aligned: Copy12x12_CSrcAlign2 from C:\\air\
    \lib\\aot/lib/libRuntimeAOT.arm-air.a(copy12x12.o)
    ld: warning: ARM function not 4-byte aligned: Copy12x12_CSrcAlign3 from C:\\air\
    \lib\\aot/lib/libRuntimeAOT.arm-air.a(copy12x12.o)
    ld: warning: ARM function not 4-byte aligned: _ReconIntra_ARM11 from C:\\air\\li
    b\\aot/lib/libRuntimeAOT.arm-air.a(reconstruct-F6251070C86EBC8D.o)
    ld: warning: ARM function not 4-byte aligned: loop from C:\\air\\lib\\aot/lib/li
    bRuntimeAOT.arm-air.a(reconstruct-F6251070C86EBC8D.o)
    ld: warning: ARM function not 4-byte aligned: _ReconInter_ARM11 from C:\\air\\li
    b\\aot/lib/libRuntimeAOT.arm-air.a(reconstruct-F6251070C86EBC8D.o)
    ld: warning: ARM function not 4-byte aligned: loop1 from C:\\air\\lib\\aot/lib/l
    ibRuntimeAOT.arm-air.a(reconstruct-F6251070C86EBC8D.o)
    ld: warning: ARM function not 4-byte aligned: _ReconBlock_ARM11 from C:\\air\\li
    b\\aot/lib/libRuntimeAOT.arm-air.a(reconstruct-F6251070C86EBC8D.o)
    ld: warning: ARM function not 4-byte aligned: ReconBlock_ARM11_LOOP from C:\\air
    \\lib\\aot/lib/libRuntimeAOT.arm-air.a(reconstruct-F6251070C86EBC8D.o)
    ld: warning: ARM function not 4-byte aligned: _tDecodeBool from C:\\air\\lib\\ao
    t/lib/libRuntimeAOT.arm-air.a(tDecodeBool.o)
    ld: warning: ARM function not 4-byte aligned: _tDecodeBool128 from C:\\air\\lib\
    \aot/lib/libRuntimeAOT.arm-air.a(tDecodeBool.o)
    Undefined symbols for architecture armv7:
      "_ExtInitializer", referenced from:
          _g_com_adobe_air_fre_fmap in extensionglue.o
         (maybe you meant: _ExtInitializer_name)
      "_ExtFinalizer", referenced from:
          _g_com_adobe_air_fre_fmap in extensionglue.o
         (maybe you meant: _ExtFinalizer_name)
    ld: symbol(s) not found for architecture armv7
    Compilation failed while executing : ld64

    I'm getting this error
    Is that error is because of armv6 symbols? If so,how can i rectify it

  • 'Package' command not working in Indesign CS5.5

    Hi Everyone. I am using Indesign CS5.5, and cannot create a 'Package' folder that collects all fonts and graphic assets used in a document I am working on. Using File>Package, the progress bar hurries through very quickly (way too quickly for a 80Mb file!) and the resulting 'Package ' folder is empty - no fonts, no images!
    Has anyone else experienced this? And did they solve the problem?
    Thanks in advance.

    IDML never contains the images. It contains references to the images.
    The images aren't altered. The person who sent the file to you needs to relink the images to the InDesign file in the Links panel.

  • Synonym not working

    The command:
    SELECT * FROM [email protected]
    Returns rows but I needed to create a synonym to simplify my application code.
    I created a synonym named and FMDMMD the parameters I used are:
    Synonym Name: FMSMMD
    Public or Private: Private
    Schema: MMD2
    Object: DWEISTST2FMSSCO.ABC.GOV
    Database Link: DWEISTST2FMSSCO.ABC.GOV
    When I issue the command:
    SELECT * FROM PO_HEADERS_ALL@FMSSCO
    APEX displays the error message:
    ORA-02019: connection description for remote database not found
    When I created the sysnonym I did not know what to put in the Object property. How do I find out what the Object is for my synonym? I have privileges to create Private synonyms only. Do I need to request any information privileges from the DBA?

    When you create your synonym I would do something like:
    Synonym Name: FMSMMD
    Public or Private: Private
    Schema: MMD2
    Object:<table in the MMD2 schema>
    Database Link: DWEISTST2FMSSCO.ABC.GOVto access the synonym you created you would simply use:
    SELECT * FROM FMSMMD

  • Task Execution Working Correctly. Package Execution Not Working Correctly.

    I have created an SSIS solution (using SQL SERVER 2012) to extract data from ServiceNow. All the tasks are wrapped in a Sequence Container. When I right click on the Sequence Container and click Execute Task the package behaves as expected. It extracts
    the data from ServiceNow and performs the rest of the etl. However when I click Execute Package from the Solution Explorer the package successfully completes but it does not extract any data from Service Now.
    I have played around with settings and different package designs but with no change in behavior. I can execute with true success at the task level but not the package level. This behavior is even apparent after deployment. I can execute with success from
    the SSISDB but with no data extraction. When I hook the deployed package to a job I still get no data extraction.
    My thinking it has to be some kind of bug or hidden proxy setting because I only get true success (with data extraction) when I manually execute at the task level - i.e. the Sequence Container.
    I have been using SSIS for a couple years now and have not come across this issue. Hopefully someone can help or have some ideas.

    Got it. I needed a break and to think about this clearly. I needed to update the Package Property Delay Validation from False to True. That solved the issue. I guess the SSIS engine needed the extra time to validate the variable and expressions
    set up within the package.

  • Package distribution not working suddenly

    Hi All,
    All of a sudden we are facing package distribution issue on one of our DP(server 2012 OS).
    getting the below error could you please help me ASAP.
    Distmgr.lg:
    CDistributionManager::ConfigurePXE failed; 0x80041013
    DP monitoring task is disabed on server
    Failed to delete DP health monitoring task on "server" error = 0x80041013
    Pkgxmgr.log:
    ExecStaticMethod failed (80041013) SMS_DistributionPoint, AddFile
    CSendFileAction::AddFile failed; 0x80041013
    Deleting remote file "servername\SMS_DP$\pkgid:xxxxxxx"
    CSendFileAction::SendFiles failed; 0x80041013
    CSendFileAction::SendFiles failed; 0x80041013
    Prashanth Kumar System Center Administrator

    0x80041013
    Provider load failure
    Source: Windows Management (WMI)
    http://blogs.technet.com/b/configmgrteam/archive/2009/05/08/wmi-troubleshooting-tips.aspx
    https://paweljarosz.wordpress.com/2013/07/01/sccm-2012-content-distribution-to-distribution-points-error-during-connection-to-sms_dp-and-0x80041013/

Maybe you are looking for