Compiler switches

I am compiling my design for the NI PXIe5641R and saw the following message:
Phase 6: 22211 unrouted; (7335208)      REAL time: 4 mins 13 secs
   the router will be able to meet your timing requirements. To prevent excessive run time the router will change
   strategy. The router will now work to completely route this design but not to improve timing. This behavior will
   allow you to use the Static Timing Report and FPGA Editor to isolate the paths with timing problems. The cause of
   this behavior is either overly difficult constraints, or issues with the implementation or synthesis of logic in the
   critical timing path. If you would prefer the router continue trying to meet timing and you are willing to accept a
   long run time set the option "-xe c" to override the present behavior.
My question is where do I go to set the "-xe c" option for the compiler?
Thanks,
-Chuck

Hi Chuck,
You can access the Xilinx options by right clicking on your FPGA target and selecting properties. I would suggest using the timing performance design strategy.
JaceD
Signal Sources Product Support Engineer
National Instruments

Similar Messages

  • Is there a compiler switch to prevent mistakes in NSLog  statements?

    I keep making the same mistake, putting a float argument into an NSLOG statement and using %d to format it which of course returns ZERO.
    float val = 123.456;
    NSLog (@"my val=%d
    ", val);
    ---- the above statement will show 0 in the log, because of the incorrect type!
    I realize i should use %0.f to get an integer value, but is there a compiler switch that will check on these parameters and warn you ?

    Well, there is a compiler switch to detect mismatches in printf statements, and if you make a macro during testing that converts NSLog to printf then you can get the compiler to catch them!

  • Java compiler Switching

    Hi All,
    My question is about the compiler. I was just wondering if there was any code snippets or something that could help me figure out if there is a way to
    have the java compiler skipp some code given a variable.
    My problem is that I need to have versions and Im using classes with annotations that map to the db. the problem is if there is a version that doesn't have the same db as the previous I have to manually comment the annotation out..
    So any helps suggestions pointers?

    jbayuga wrote:
    Hi All,
    My question is about the compiler. I was just wondering if there was any code snippets or something that could help me figure out if there is a way to
    have the java compiler skipp some code given a variable.
    My problem is that I need to have versions and Im using classes with annotations that map to the db. the problem is if there is a version that doesn't have the same db as the previous I have to manually comment the annotation out..
    So any helps suggestions pointers?I wouldn't say this is a compiler issue more than a compiliing issue.
    Depending on what you are using to compile this (be it Ant or doing it by hand or what have you, you should be able ti setup what you want )
    I'm not to sure how far you are into java, but have you thought about something as simple as putting in an if/else statement around your annotations to allow them to appear or not depending on the value of variable that could come from the commandline or a configuration file.
    Also depending on weather or not you are in the development stage or the testing phase it might be easier to keep a compiled version of each around.
    Hope this helps.

  • DDK Compilation Issues

    I am having some problems precompiling tSTC.h due to all of the inlining.
    There is a switch (___tSTC_h_no_inline___) to keep the .ipp file from being included in the .h, but since all of the class methods are declared as inline, I still end up with problems. Short of doing a find/replace on all 6000+ occurrences of "inline", I am looking for an alternative that will speed up my compiles during development.
    I notice that the files are auto-generated: is it possible to get a version of the DDK that has been produced in a non-inlined form?
    scott gillespie
    applied brain, inc.

    The specific problem I was having turned out to be: two different sets of compile switches were passed to precompiler/compiler (gcc 3.1), thus causing problems at link time.
    However, I still have need for a non-inlined compile, and have already done roughly as you suggested.
    Thanks for the tips...
    spg
    scott gillespie
    applied brain, inc.

  • 64-bit compilation problem on Solaris/Intel: 7th argument not initialized

    I have a problem when compiling a program on a 64-bit Solaris Intel server. The problem is that when calling a function, if the 7th or next arguments are long arguments and I pass uncasted small integers values to it, the first 32-bit of my values are uninitialized.
    I have isolated the problem in the following source code.
    #include <stdio.h>
    #include <strings.h>
    void fnc1(a,b,c,d,e,f,g,h)
    long a,b,c,d,e,f,g,h;
    printf("%ld,%ld,%ld,%ld,%ld,%ld,%ld,%ld\n", a,b,c,d,e,f,g,h);
    void main()
    fnc1(0x10101010deadbeef,0x20202020deadbeef,
         0x30303030deadbeef,0x40404040deadbeef,
         0x50505050deadbeef,0x60606060deadbeef,
         0x70707070deadbeef,0x80808080deadbeef);
    fnc1(1,2,3,4,5,6,7,8);
    }I compile it using the following command:
    cc src1.c -g $* -m64 -o prog1.exeWhen I run the resulting .exe, I get the following result:
    1157442768875667183,2314885534015405807,3472328299155144431,4629771064294883055,5787213829434621679,6944656594574360303,8102099359714098927,-9187201948855714065
    1,2,3,4,5,6,8102099355978170375,-9187201952591642616The problem is that the first 32 bits of my 7th and 8th arguments are not initialized when the function is called.
    I know that in the following cases, I do not have the problem:
    - if I cast the arguments;
    - on other platforms (AIX, SunOs/Sparc, HPUX) or if I compile in 32-bit;
    - if I use optimization (-xO1 to -xO5) ;
    - if I prototype my function at the beginning of my source (void fnc1(long a,long b,long c,long d,long e,long f,long g,long h););
    I have over 1,000,000 lines of existing code to support. I am afraid using optimization would have other impacts and for now, I cast the arguments as problems are reported. Would there be a better way to handle this? By using a compiler switch?
    Thanks in advance.

    Tom.Truscott wrote:
    clamage45 wrote:
    But if you are passing to an ellipsis, you either cast actual arguments to the type the function expects, or the function extracts the default promoted type. Such code always works ...Yes, and developers should attempt to accomplish just that. Alas this is very difficult to ensure, particularly given the lack of a run-time type checking mechanism.In theory, proper use of the ellipsis function would be documented, and programmers would read and follow the documentation. In practice, some programmers don't read the instructions, or forget them, or someone ill-advisedly changes the way the function works so that existing calls stop working. Variable-argument functions are a fragile mechanism. (I program almost exclusively in C++, which has combinations of features such that variable-argument functions are rarely, if ever, needed.)
    Can one even assume that the value of the NULL macro is correct? Never, because the C standard allows a variety of definitions for NULL, and implementations vary. Passing NULL to an ellipsis is a recipe for failure. Don't do it.
    >
    Suppose you have function FI with an ellipsis that expects to get int arguments, and another FL that expects to get long arguments. When you port the code to a 64-bit environment, function FL fails. If you use the -signext option, function FI will fail.Ah, but for us FL never fails, since the compilers always widen the arguments. I fail to see the circumstance in which widening would cause FI to fail, could you please give a more specific example?
    void FI(int count, ...)
        va_list va;
        va_start(va, count);
        int t;
        while( --count >= 0) {
           t = va_arg(va, int);
           do_something(t);
    }Function FI expects to extract 32-bit int arguments. If compiled with -signext, the calling function will pass 64-bit arguments. Perhaps the -signext option also causes the 32-bit extraction to be changed to a 64-bit extraction. I have no personal experience with the option, and I'm not in a position where I can experiment right now.

  • REUSE SETTINGS supresses error messages when compiling an invalid object

    Hello,
    my test:
    Create a table and a packaged procedure referencing the table. Then drop the table and recompile the package:
    CREATE TABLE x (
        y     NUMBER
    CREATE OR REPLACE PACKAGE y
    AS
    PROCEDURE z;
    END y;
    SHOW ERRORS
    CREATE OR REPLACE PACKAGE BODY y
    AS
    PROCEDURE z
    IS
      v_count PLS_INTEGER;
    BEGIN
      SELECT COUNT(*)
      INTO v_count
      FROM x;
    END z;
    END y;
    SHOW ERRORS
    DROP TABLE x;
    PROMPT 1.Compile package
    ALTER PACKAGE y COMPILE;
    SHOW ERRORS
    PROMPT 2.Compile package body
    ALTER PACKAGE y COMPILE BODY;
    SHOW ERRORS
    PROMPT 3.Compile package with "REUSE SETTINGS"
    ALTER PACKAGE y COMPILE REUSE SETTINGS;
    SHOW ERRORS
    PROMPT 4.Compile package body with "REUSE SETTINGS"
    ALTER PACKAGE y COMPILE BODY REUSE SETTINGS;
    SHOW ERRORS
    SELECT object_name
          ,object_type
    FROM   user_objects
    WHERE  status = 'INVALID';
    --DROP PACKAGE y;Partly unexpected output
    Tabelle wurde erstellt.
    Package wurde erstellt.
    Keine Fehler.
    Package Body wurde erstellt.
    Keine Fehler.
    Tabelle wurde gelöscht.
    1.Compile package
    Warnung: Paket wurde mit Kompilierungsfehlern geõndert.
    Keine Fehler.
    2.Compile package body
    Warnung: Paketrumpf wurde mit Kompilierungsfehlern geõndert.
    Fehler bei PACKAGE BODY Y:
    LINE/COL ERROR
    8/3      PL/SQL: SQL Statement ignored
    10/8     PL/SQL: ORA-04044: procedure, function, package, or type is not
             allowed here
    3.Compile package with "REUSE SETTINGS"
    Warnung: Paket wurde mit Kompilierungsfehlern geõndert.
    Keine Fehler.
    4.Compile package body with "REUSE SETTINGS"
    Warnung: Paketrumpf wurde mit Kompilierungsfehlern geõndert.
    Keine Fehler.
    OBJECT_NAME     OBJECT_TYPE
    Y               PACKAGE BODY
    1 Zeile wurde ausgewõhlt.It says
    - Table created
    - Package created
    - Package body created
    - Table dropped
    - Package header compiled with errors (why?)
    - Package body compiled with errors (shown error is expected)
    - Package header compiled with errors (again why?)
    - Package body compiled with errors (no errors shown)
    So why is the header compiled with errors, when the object is valid.
    And why is no error shown for COMPILE REUSE SETTINGS when there are errors for the body?
    I use REUSE SETTINGS when recompiling invalid objects that were compiled for debug with
    ALTER PACKAGE abc COMPILE PLSQL_DEBUG = TRUE REUSE SETTINGSRegards
    Marcus
    Version:
    SQL*Plus: Release 10.2.0.1.0 - Production on Di Jan 27 12:45:20 2009
    Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 - 64bit Production
    With the Partitioning, OLAP and Data Mining options

    Hi,
    From SQL Reference Manual [REUSE SETTINGS|http://download.oracle.com/docs/cd/B19306_01/server.102/b14200/statements_1007.htm#BGBGEIGD]:
    Specify REUSE SETTINGS to prevent Oracle from dropping and reacquiring compiler switch settings. With this clause, Oracle preserves the existing settings and uses them for the recompilation of any parameters for which values are not specified elsewhere in this statement.
    For backward compatibility, Oracle Database sets the persistently stored value of the PLSQL_COMPILER_FLAGS initialization parameter to reflect the values of the PLSQL_CODE_TYPE and PLSQL_DEBUG parameters that result from this statement.
    Regards,

  • Building apache 2.2.25 for OS X 10.6, how to compile apr_stat$INODE64?

    In order to maintain PCI compliance, I've been trying to upgrade the version of Apache on my 10.6 Xserve from 2.2.22 to 2.2.25. So far, nothing that I've tried has worked. I've gone down an number of blind alleys, but after numerious ./configure changes, countless builds, experiments, and time spent with otool and nm, I think I've figured out what the basic problem is.
    Apache 2.2.25 requires an updated version of the APR and APR-UTIL libraries. APR includes a function named apr_stat (the APR equivelent of stat). Here's the problem: In 10.6, the versions of libapr included in 10.6 define two functions: apr_stat and apr_stat$INODE64. This is consistent with Apple's stat and stat$INODE64 functions, that allow 32-bit processes to call the 64-bit stat function and vice versa.
    My problem is that when I rebuild the APR and APR-UTIL libraries from apache's source, they only compile apr_stat. There's no apr_stat$INODE64, and any mod_*.so module that uses apr_stat$INODE64 fail to load. Which, by the way, seems to be most of them.
    I only see two solutions, but don't know how to proceed with either one.
    (a) Is there someway to get Apache's apr-1.4.8 and apr-util-1.5.2 to compile in such a way so it produces both apr_stat and the apr_stat$INODE64 functions? I've grepped the apr source to death and I can't find any compiler switch or configure flag that looks like like what I'm looking for.
    (b) I suppose I could also recompile all of the mod_*.so modules, but I'm not sure where to start with that, or even if it's practical.
    Any advice or help would be very much appreciated.

    PECraig,
    My guess is that you're still missing some pieces, or the pieces are in the wrong place. The "Symbol not found" error is because the Apple version of your (.so) modules are all linked to Apple's special version of apr/apr-util. When Apple compiles their Apache libraries, it includes two versions of the apr_stat function (equivalent to BSD stat()), named apr_stat() and apr_stat$INODE64(), the later being the 64-bit version of the function. This scheme makes it possible to access and correctly use the 64-bit version of the stat() function, which is the only way to get extended 64-bit inode information about a file or filesystem, from a 32-bit program. Conversely, 64-bit programs can still use the legacy 32-bit apr_stat() function, without having to be modified.
    If you recompiled the libraries then they should have both the apr_stat and apr_stat$INODE64 symbols in them. You can verify this using the nm command (i.e. nm -arch all /path/to/libapr.dylib | grep apr_stat). If they're both there, the next step would be to make sure you put them in the correct locations and Apache isn't still loading the old libraries.
    Also note that I compiled my versions of apr and apr-util directly into the apache binary (using --with-included-apr --with-included-apr-util), so my .so modules will link the copy of apr_stat that's part of the httpd binary image. This might not be necessary, but it seemed to help me.
    On the other hand, you might just wait. OS X 10.7 might get updated to a later version of Apache, if it hasn't been already, so Apple might solve your problem for you.

  • Java compiler howto question

    Hi all,
    I need to compile a jsp generated page I created.
    The file was created using the command:
    File file = File.createTempFile(className,".java");I'm trying now to compile the code using:
    Process compileProc = Runtime.getRuntime().exec("javac -classpath . " + file);and I get some IO exception (error = 2) in the CreateProcess.
    I quite sure that I have a problem with the compilation switches, but I can't make to much heads or tails from the man of javac on the subject.
    Can anyone give the command line I should use.
    (up till today I've always compiled with ant files, and didn't have to mess around with compilation switches).
    thanks in advance,
    kotsss

    This works:
    import java.io.*;
    public class Testpb{
    public static void main(String[] args) {
    String javaPath = "P:\\Program Files\\Java\\jdk1.6.0_01\\bin\\Javac.exe";
    String compilandDir = "J:\\BeatModelEx\\";
    String compiland = "BeatModelEx.java";
    ProcessBuilder pb = new ProcessBuilder(javaPath, "-cp", compilandDir, "-verbose", compiland );
    pb.directory(new File(compilandDir));
    try{
         Process p = pb.start();
         InputStream is = p.getErrorStream();
         InputStreamReader isr = new InputStreamReader(is);
         BufferedReader br = new BufferedReader(isr);
         String line;
         while ((line = br.readLine()) != null)
              System.out.println(line);
         p.waitFor();
    }catch(IOException ioe){
         System.out.println(ioe.getMessage());
         System.out.println(ioe.getCause());
         ioe.printStackTrace();
    }catch(InterruptedException ie){
         System.out.println(ie.getMessage());
         System.out.println(ie.getCause());
         ie.printStackTrace();
    }

  • Google GData Release vs Debug compiling

    I finally got the Google GData objective C library to compile and work well in my app. (If anybody wants details, I can post the steps.) But for some funny reason, it only compiles if I have the project set to Debug, either using the simulator or the real device. When I switch it to Release, I get multiple errors, for example:
    "_xmlReadMemory", referenced from:
    -[GDataXMLElement initWithXMLString:error:] in GDataXMLNode.o
    -[GDataXMLDocument initWithData:options:error:] in GDataXMLNode.o
    "_xmlFreeNs", referenced from:
    +[GDataXMLElement deleteNamespacePtr:fromXMLNode:] in GDataXMLNode.o
    ld: symbol(s) not found
    There must be a simple solution. Any ideas? Thanks much

    You might get a better response in the supporting google group
    http://groups.google.com/group/gdata-objectivec-client?hl=en
    I know you need to add the source files to your project (not the package) and there are a number a compile switches you need to make.

  • Is it still possible to create a 32-bit only iOS app?

    With the latest AIR release (17), is there any way to still create a 32-bit only iOS app for testing on the iPad 1? It's currently not possible to install an app with 64-bit support on an iPad 1 to test the app. My understanding, however, is that Apple will do something on their end that will allow apps submitted to the App Store (with 64-bit support) to still be downloaded and installed on an iPad 1. Having a way to test on the iPad 1 before submission to Apple would be nice.
    Is there a compiler switch or something that can be used for this purpose? If not, could such a switch be added easily? If we had such an option, we could continue testing on and supporting the iPad 1. Being in the education market, this is kind of critical to us.
    Thanks,
    Chris Sheffield
    Read Naturally, Inc.
    www.readnaturally.com

    Because an app built with 64-bit support *cannot* be installed on an iPad 1 device for testing purposes, whether using iTunes or Xcode. It simply doesn't work. This is the message generated by Xcode:
    This is when trying to install an app built with Flash Builder 4.7 and AIR sdk 17 beta.
    As I stated before, my understanding is that Apple will still allow installing apps on an iPad 1 through the App Store, but *only* through the App Store. In my opinion, this is too late. We really need a way to continue testing on the iPad 1, if at all possible. That's why I'm asking if there's a possibility of adding a compiler switch of some kind that would allow building 32-bit only apps, for testing purposes only.
    Thanks.

  • How do I rebuild a Flex 3.0/SDK 3.2 application in Flash Builder 4.7?

    I am trying to rebuild an old Adobe Flex/Air app.  The original developer is gone and we don't have the development environment he used available to us to do the rebuild.  As best I can see, this is an Adobe Flex SDK 3.2 application rebuilt in Flex Builder 3.0.   I've been able to get the project imported to Flash Builder 4.7 and set the SDK to use the 3.2 SDK and get a build, but all of my controls have the "Trial Version" water mark. 
    How can I get rid of this watermark?  Do I need a license for SDK 3.2 in addition to my Flash Builder 4.7 license?
    I've tried also to "upgrade" the proejct to 4.6 SDK in 3.0 Compatibility mode, but I am getting lots of errors at runtime for null object.
    I found this thread: http://forums.adobe.com/thread/441869
    But I don't know if that means I need to have an Adobe Flex 3.2 license key?  or will my new Flash Builder 4.7 key work?
    I'm new to Flex/Air and I'm just trying to get this old project rebuilt.  Any suggestions will be appreciated.

    Update - I have updated the license.properties file and added the compiler switch but still no luck.  Our Flash Builder 4.7 is fully licensed so I guess I need to know where to buy a Flex Builder 3 license key.  Is anyone from Adobe here?  Maybe someone can help me out please?

  • Problem with HP-UX extended procedures that use C++ Standard library

    I am experiencing a problem with using the C++ standard library on HP-UX inside my extended procedures.
    Here is the definition for the library and procedures:
    -bash-3.2$ more nuhash2.sql
    CREATE OR REPLACE LIBRARY xp_nuencryption_l
    AS
    '/home/jchamber/datasecure/lib/libxp_nuencryption.sl';
    CREATE OR REPLACE PACKAGE xp_nuencryption
    AS
    PROCEDURE xp_nuhash2;
    END xp_nuencryption;
    CREATE OR REPLACE PACKAGE BODY xp_nuencryption
    IS
    PROCEDURE xp_nuhash2
    IS EXTERNAL
    LIBRARY xp_nuencryption_l
    NAME "xp_nuhash2"
    LANGUAGE C;
    END xp_nuencryption;
    Here is the PL/SQL test program:
    -bash-3.2$ more testnuhash2.sql
    SET SERVEROUTPUT ON SIZE 1000000
    DECLARE
    BEGIN
    xp_nuencryption.xp_nuhash2 ();
    END;
    Here is the implementation of the extended procudure - notice how we are using the C++ Standard library:
    -bash-3.2$ more xp_nuhash2.cpp
    #include <string.h>
    #include <iostream>
    #include <fstream>
    class MyException {
    public:
    MyException() {}
    int func(std::ofstream& fout )
    fout << "func: About to throw exception in func()" << std::endl;
    throw MyException();
    extern "C"
    void xp_nuhash2 ()
    std::ofstream fout("/home/jchamber/xp_nuhash2.txt");
    try {
    fout << "xp_nuhash2: About to call func()" << std::endl;
    func(fout);
    catch (MyException& ex) {
    fout << "xp_nuhash2: caught MyException" << std::endl;
    fout << std::flush;
    fout.close();
    Here is how we build the library on HP-UX:
    # compile
    aCC -g -AA DA2.0W DS2.0 +z -c xp_nuhash2.cpp -o xp_nuhash.o
    #link using aCC
    aCC -g -AA DA2.0W DS2.0 +z -b -o /home/jchamber/datasecure/lib/libxp_nuencryption.sl xp_nuhash.o \
    /usr/lib/pa20_64/libstd_v2.a \
    /usr/lib/pa20_64/libCsup_v2.a
    chatr +dbg enable /home/jchamber/datasecure/lib/libxp_nuencryption.sl
    Here is how we test:
    SQL> @nuhash2
    Library created.
    Package created.
    Package body created.
    SQL> @testnuhash2
    DECLARE
    ERROR at line 1:
    ORA-28576: lost RPC connection to external procedure agent
    ORA-06512: at "JCHAMBER.XP_NUENCRYPTION", line 0
    ORA-06512: at line 3
    Now, if i use classic C++ (aCC -AP) it works. The trouble is, we have a lot of code that uses the Standard C++ library and we don't have the time to port it back to classic C++.
    The problem seems to be with an incompatibility with the standard C++ library. What is the magic potion of linker and/or compiler switches that would enable my extended procedures to use the standard C++ library?
    Here is the environment we are using:
    Oracle 9i (64-bit)
    HP UX 11.11
    Regards

    I am experiencing a problem with using the C++ standard library on HP-UX inside my extended procedures.
    Here is the definition for the library and procedures:
    -bash-3.2$ more nuhash2.sql
    CREATE OR REPLACE LIBRARY xp_nuencryption_l
    AS
    '/home/jchamber/datasecure/lib/libxp_nuencryption.sl';
    CREATE OR REPLACE PACKAGE xp_nuencryption
    AS
    PROCEDURE xp_nuhash2;
    END xp_nuencryption;
    CREATE OR REPLACE PACKAGE BODY xp_nuencryption
    IS
    PROCEDURE xp_nuhash2
    IS EXTERNAL
    LIBRARY xp_nuencryption_l
    NAME "xp_nuhash2"
    LANGUAGE C;
    END xp_nuencryption;
    Here is the PL/SQL test program:
    -bash-3.2$ more testnuhash2.sql
    SET SERVEROUTPUT ON SIZE 1000000
    DECLARE
    BEGIN
    xp_nuencryption.xp_nuhash2 ();
    END;
    Here is the implementation of the extended procudure - notice how we are using the C++ Standard library:
    -bash-3.2$ more xp_nuhash2.cpp
    #include <string.h>
    #include <iostream>
    #include <fstream>
    class MyException {
    public:
    MyException() {}
    int func(std::ofstream& fout )
    fout << "func: About to throw exception in func()" << std::endl;
    throw MyException();
    extern "C"
    void xp_nuhash2 ()
    std::ofstream fout("/home/jchamber/xp_nuhash2.txt");
    try {
    fout << "xp_nuhash2: About to call func()" << std::endl;
    func(fout);
    catch (MyException& ex) {
    fout << "xp_nuhash2: caught MyException" << std::endl;
    fout << std::flush;
    fout.close();
    Here is how we build the library on HP-UX:
    # compile
    aCC -g -AA DA2.0W DS2.0 +z -c xp_nuhash2.cpp -o xp_nuhash.o
    #link using aCC
    aCC -g -AA DA2.0W DS2.0 +z -b -o /home/jchamber/datasecure/lib/libxp_nuencryption.sl xp_nuhash.o \
    /usr/lib/pa20_64/libstd_v2.a \
    /usr/lib/pa20_64/libCsup_v2.a
    chatr +dbg enable /home/jchamber/datasecure/lib/libxp_nuencryption.sl
    Here is how we test:
    SQL> @nuhash2
    Library created.
    Package created.
    Package body created.
    SQL> @testnuhash2
    DECLARE
    ERROR at line 1:
    ORA-28576: lost RPC connection to external procedure agent
    ORA-06512: at "JCHAMBER.XP_NUENCRYPTION", line 0
    ORA-06512: at line 3
    Now, if i use classic C++ (aCC -AP) it works. The trouble is, we have a lot of code that uses the Standard C++ library and we don't have the time to port it back to classic C++.
    The problem seems to be with an incompatibility with the standard C++ library. What is the magic potion of linker and/or compiler switches that would enable my extended procedures to use the standard C++ library?
    Here is the environment we are using:
    Oracle 9i (64-bit)
    HP UX 11.11
    Regards

  • Not all characters showing up in "Import Settings" dialogue

    On the "Import Settings" dialogue in preferences, not all characters are shown when you select an encoder and use a custom setting.
    For example:
    When you select AIFF encoder and click "Custom...", sample rate and channel is shown as "sample rat" and "channe".
    Can someone tell Apple to fix this?

    Sounds like you have "Compilations" switched on.
    In Itunes look at "get info" for the missing artists and see if the part of a compilation box is checked.
    On you iPod go to settings>compilations and toggle it to off
    To get the artists to show up on the Ipod you only need to do step 2.
    When you have the compiliations features switched on (in either iTunes or iPod) artists that only have albums that are compilations will not show up in the artist list.
    As for your other problem you can sort the columns by clicking on the title bar at the top, to sort by artist or you can add something to the "Greatest Hits" album title to differentiate it - for example all my greatest hits albums are titled GH - Artist so I know which one is which

  • FB 4.7 AIR 3.6 Flex 4.9 iOS packing - Exception in thread "main" java.lang.OutOfMemoryError'

    I've got an error similar to Isaac_Sunkes' 'FB 4.7 iOS packaging - Exception in thread "main" java.lang.OutOfMemoryError',
    but the causes are not related to what he discovered, corrupt image or other files, I'd exclude bad archive contents in my project.
    I'm using Flash Builder 4.7 with Adobe AIR 3.6 set into an Apache Flex 4.9.1 SDK;
    HW system is:
    iMac,    2,7 GHz Intel Core i5,    8 GB 1600 MHz DDR3,    NVIDIA GeForce GT 640M 512 MB,    OS X 10.8.2 (12C3103)
    The Flash project consists in an application with a main SWF file which loads, via ActionScript methods, other SWF in cascade.
    I've formerly compiled and run the application on an iPad 1, IOS 5.0.1 (9A405), but got on the device the error alert:
    "Uncompiled ActionScript
    Your application is attempitng to run
    uncompiled ActionScript, probably
    due to the use of an embedded
    SWF. This is unsupported on iOS.
    See the Adobe Developer
    Connection website for more info."
    Then I changed the FB compiler switches, now are set to:
    -locale en_US
    -swf-version=19
    Please note that without the switch    -swf-version=19     the application is compiled correctly and the IPA is sent to the device
    and I can debug it, but iOS traps secondary SWF files and blocke the app usage, as previously told.
    they work on deploy of small applications,
    but, when I try to build a big IPA file either for an ad-hoc distribution, either for an debug on device, after some minutes long waiting, I get a Java stuck, with this trace:
    Error occurred while packaging the application:
    Exception in thread "main" java.lang.OutOfMemoryError: Java heap space
        at java.util.HashMap.addEntry(HashMap.java:753)
        at java.util.HashMap.put(HashMap.java:385)
        at java.util.HashSet.add(HashSet.java:200)
        at adobe.abc.Algorithms.addUses(Algorithms.java:165)
        at adobe.abc.Algorithms.findUses(Algorithms.java:187)
        at adobe.abc.GlobalOptimizer.sccp(GlobalOptimizer.java:4731)
        at adobe.abc.GlobalOptimizer.optimize(GlobalOptimizer.java:3615)
        at adobe.abc.GlobalOptimizer.optimize(GlobalOptimizer.java:2309)
        at adobe.abc.LLVMEmitter.optimizeABCs(LLVMEmitter.java:532)
        at adobe.abc.LLVMEmitter.generateBitcode(LLVMEmitter.java:341)
        at com.adobe.air.ipa.AOTCompiler.convertAbcToLlvmBitcodeImpl(AOTCompiler .java:599)
        at com.adobe.air.ipa.BitcodeGenerator.main(BitcodeGenerator.java:104)
    I've tried to change the Java settings on FB's eclipse.ini in MacOS folder,
    -vmargs
    -Xms(various settings up to)1024m
    -Xmx(various settings up to)1024m
    -XX:MaxPermSize=(various settings up to)512m
    -XX:PermSize=(various settings up to)256m
    but results are the same.
    Now settings are back as recommended:
    -vmargs
    -Xms256m
    -Xmx512m
    -XX:MaxPermSize=256m
    -XX:PermSize=64m
    I've changed the Flex build.properties
    jvm.args = ${local.d32} -Xms64m -Xmx1024m -ea -Dapple.awt.UIElement=true
    with no results; now I'n get back to the standard:
    jvm.args = ${local.d32} -Xms64m -Xmx384m -ea -Dapple.awt.UIElement=true
    and now I truely have no more ideas;
    could anyone give an help?
    many thanks in advance.

    I solved this. It turns out the app icons were corrupt. After removing them and replacing them with new files this error went away.

  • Npapi or webkit plugin are not working in firefox

    I have a Webkit plugin and NPAPI plugin. Both work fine in Safari but just would not work in Firefox (Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; en-US; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3) .
    about:plugins shows it as installed but when I try to access it from html page none of the entry points in a code are being called.(None of trace statement are being hit)
    I think Firefox has problem loading those plugins.
    I have similar NPAPI plugin working fine in Windows environment on all browsers, but MAC is giving me this problem.
    Does anyone has any ideas of what could be the problem?
    I even took a BASICPLUGIN sample for MAC and it has the same problem. Anyb
    == This happened ==
    Every time Firefox opened

    Christofer,
    I solved my problem after not getting any responses.....
    Turns out that some of my xcode compilation switches had to be changed, send me your minimal code that I can compile and i will help you finding it......My NSAPI plugin works just great with all mac browsers....in fact it is the same code excatly as i have for windows, just had to rename some files from .cpp to .m so that I could yuse some cocoa objects....
    Mark

Maybe you are looking for

  • Problem in displaying splash screen..

    Hi.. First of all my apology to repost the question as i was asked to post it here for the answer.I've developed a desktop application which has a splash screen.I'm using netbeans 6.0.Now, i am able to view the splash screen if i 'build' and 'run' th

  • Dynamic report issue

    Dears, I'm back again I have and issue with my dynamic report: My source: DECLARE vTABLE VARCHAR2(100); vCOLUMN VARCHAR2(100); vVALUE varchar2(100); vSQL VARCHAR2(1000); BEGIN vTABLE := :P46_TABLELIST; vCOLUMN:=:P46_COLUMNLIST; vVALUE:=:P46_COLVALUE;

  • ESS MSS Configuration steps

    Hi, Can anyone share congiuration manual for ESS MSS. ECC 6.0 , EHP 5. I really appreciate Siddharth for sharing Wiki config manual for ESS but it for <= EHP4.

  • LCA error in APO

    Dear All, we have Apo Development server Product Version SAP APO 3.0A. in that we are not able to use T-Code LC10. it always gives the error Syntax error in program : SAPLSLCA  . due to which not able stop or start LCA. kindly help on this. Thanks in

  • When saving pictures on tumlr they are saved as firefox document which is subsequently a mish mash when reopend

    windows xp, when i wish to save a picture from 'tumblr.com' i frequently only get the option to save the picture as a'firefox' document, not as a jpeg