Problem compiling module with named package

Hi,
I'm relatively new to Flex and only recently came upon Flex modules. I am trying to use an interface between the modules and my main application, both to enforce compatibility and to ease data access from the modules to the main application (i.e., the preferred approach on Adobe's module implementation docs). I am, however, running into a problem when trying to compile the module (using Ant) due to its implementation of an interface in a named package. It seems I have a choice between two compilation errors:
1) an error referring to difference between the named package structure and the unnamed package for my module
2) an interface not found error when I specify the full package name for the interface in the module "implements" attribute
#2 seemed more promising as I figured this was just some sort of source path error. After adjusting the source path many times, though, I have been unable to get past the interface not found error. I even tried to compile the interface into a SWC and then place the SWC on the library path.
Overall, the structure of the code is very simple:
com.example.workers.IModule
WorkerModule1
If I go ahead and make IModule part of an unnamed package, I can get past problem #1 (avoid #2) and get it to compile, but then I do not have the ability to cast the child of the loaded module (ModuleLoader.child) to the interface in my main application to insure that it is of the right type (though I can hack around this by checking if the child has a certain property or function).
Anyway, I am guessing that there might be something simple that I am missing here--i.e., some way to get the named package onto the path for my mxmlc-based compilation of the module or some way to add the named package structure to my module (adding an xmlns did not accomplish anything). In any case, any help here would be greatly appreciated.
--jonathan

You definitely have the wrong version. You want 2.0.1 (we
haven't made a 2.1). The download on the Flex page is always the
most current version, 2.0.1 in this case. Try it again.

Similar Messages

  • [solved] Compilation problems - virtualbox module with custom 2.6.37..

    Hi all
    I have some problems compiling the vbox drivers on my custom kernel26-n130 (http://aur.archlinux.org/packages.php?ID=32042). From /var/log/vbox-install.log:
    gcc -Wp,-MD,/tmp/vbox.0/linux/.SUPDrv-linux.o.d  -nostdinc -isystem /usr/lib/gcc/i686-pc-linux-gnu/4.5.2/include -I/usr/src/linux-2.6.37-N130/arch/x86/include -Iinclude
    In file included from include/linux/io.h:22:0,
                     from include/linux/pci.h:54,
                     from /tmp/vbox.0/r0drv/linux/the-linux-kernel.h:99,
                     from /tmp/vbox.0/linux/SUPDrv-linux.c:32:
    /usr/src/linux-2.6.37-N130/arch/x86/include/asm/io.h:45:21: fatal error: xen/xen.h: No such file or directory
    compilation terminated.
    I built the kernel without xen support. It's the same config I used with 2.6.36.2. I found a similar problem here: https://bbs.archlinux.org/viewtopic.php … 61#p871261 . I did the same as .:B:. did and commented out the  "#include <xen/xen.h>" line in  the file mentioned above. Compilation  runs fine and virtualbox seems to run with the drivers compiled this way. Though I don't think this is a very elegant way.
    Any other suggestions?
    Vlad
    PS: Sry for the noise!
    Had to install the xen header file...
    Last edited by DonVla (2011-01-08 16:26:36)

    I found the solution on http://communities.vmware.com/thread/29 … 0&tstart=0
    Linux x201 2.6.37-ARCH #1 SMP PREEMPT Fri Feb 18 16:58:42 UTC 2011 i686 Intel(R) Core(TM) i7 CPU M 620 @ 2.67GHz GenuineIntel GNU/Linux
    VMware Workstation 7.1.3 build-324285

  • Having problems compiling *.java with import javax.servlet.jsp......

    I've been trying to do the tutorials in a book titled Apache Jakarta-Tomcat as part of my introduction to JSP. I'm new to Java but do know the basics. I have on my machine Java 1.3, Java 1.4, Java FrameWorks 2.1 and Jython 2.1 on Win2000 Pro. So enough about my configuration. I have never worked with packages also.
    I downloaded the files from the books site due to the fact I make a lot of typos when hand coding Java (I've become a pretty good debugger of my own code). But everytime I go to compile the *.java I get error messages. So below you will find HelloTag.java and beneath that the error messages that are thrown when I try and compile it. I tested other bits of *.java and have had no problem compiling them. Is there a JSP module I'm missing?
    Am I doing something wrong or am I missing something from my configuration.
    Marijan Madunic
    package chapter2;
    import javax.servlet.jsp.JspException;
    import javax.servlet.jsp.JspTagException;
    import javax.servlet.jsp.tagext.TagSupport;
    public class HelloTag extends TagSupport
    public void HelloTag() {
    // Method called when the closing hello tag is encountered
    public int doEndTag() throws JspException {
    try {
    // We use the pageContext to get a Writer
    // We then print the text string Hello
    pageContext.getOut().print("Hello");
    catch (Exception e) {
    throw new JspTagException(e.getMessage());
    // We want to return SKIP_BODY because this Tag does not support
    // a Tag Body
    return SKIP_BODY;
    public void release() {
    // Call the parent's release to release any resources
    // used by the parent tag.
    // This is just good practice for when you start creating
    // hierarchies of tags.
    super.release();
    D:\Java\JDK 1.3\bin>javac HelloTag.java
    HelloTag.java:3: cannot resolve symbol
    symbol : class JspException
    location: package jsp
    import javax.servlet.jsp.JspException;
    ^
    HelloTag.java:4: cannot resolve symbol
    symbol : class JspTagException
    location: package jsp
    import javax.servlet.jsp.JspTagException;
    ^
    HelloTag.java:5: cannot resolve symbol
    symbol : class TagSupport
    location: package tagext
    import javax.servlet.jsp.tagext.TagSupport;
    ^
    HelloTag.java:7: cannot resolve symbol
    symbol : class TagSupport
    location: class chapter2.HelloTag
    public class HelloTag extends TagSupport
    ^
    HelloTag.java:14: cannot resolve symbol
    symbol : class JspException
    location: class chapter2.HelloTag
    public int doEndTag() throws JspException {
    ^
    HelloTag.java:20: cannot resolve symbol
    symbol : variable pageContext
    location: class chapter2.HelloTag
    pageContext.getOut().print("Hello");
    ^
    HelloTag.java:24: cannot resolve symbol
    symbol : class JspTagException
    location: class chapter2.HelloTag
    throw new JspTagException(e.getMessage());
    ^
    HelloTag.java:28: cannot resolve symbol
    symbol : variable SKIP_BODY
    location: class chapter2.HelloTag
    return SKIP_BODY;
    ^
    HelloTag.java:37: cannot resolve symbol
    symbol : variable super
    location: class chapter2.HelloTag
    super.release();
    ^
    9 errors

    Well, it looks like you've not got the servlet development kit JAR on your classpath. I think it'll probably be called servlet.jar on your system. Add that to the classpath if it's not already there.
    Incidentally, you've bumped into one of the areas Java's slightly lenient - declaring a method that looks like a constructor:
    public HelloTag() { }
    public void HelloTag() { }The first is a constructor, the second is a normal method. I'm assuming you intended to have the former instead of the latter.
    Anyway, hope this helps.

  • Compiling files with the 'package'-statement

    Hi,
    I have a problem compiling files that uses the 'package'-statement:
    I have 2 files ClassA.java and ClassB.java. ClassA uses objects of type ClassB. When I compile ClassA.java the compiler also automatically compiles ClassB.java. No problem so far.
    But when I add "package mypackage" to ClassA.java and ClassB.java and then try to compile ClassA.java with the command "javac -d . ClassA.java" I get the compile-error "Class mypackage.ClassB not found". This would mean that I would have to compile all my files separately?
    Can anybody tell me what I am doing wrong?
    Thx,
    Jan

    I was still working on it, but I think I have it now :-)
    Let me try to summarize what I think/hope that I understand:
    I have the following files in package mypackage:
    C:\src\mypackage\ClassA.java
    C:\src\mypackage\ClassB.java
    with ClassA using ClassB.
    I want to compile them into C:\classes\mypackage\ClassA.class and C:\classes\mypackage\ClassB.class
    I change directory to C:\classes and then give the command
    >javac -d . ..\src\mypackage\ClassA.java
    This didn't work at first because my classpath wasn't set correctly. To make it work I had to add C:\src to my classpath. Which surprised me a little because I thought that the classpath was only used to find *.class files and not by javac to find *.java files?
    If anybody has something to add to this, please feel free to do so.
    Jan

  • Problem compiling source file in package

    Hi, I have 5 source files which I have just packaged together and put in the same sub-directory, the problem is that when I try to compile the file with the main method I get the error message:"cannot read" then the name of the source file. I am compiling from the command line and setting the classpath as I compile with the statement:
    c:\j2sdk1.4.1\bin>javac -classpath c:\directory\package directory source file.java
    I'm not sure what I am doing wrong and the source files all compiled fine before I added the package statement to the files. Please any help would really be appreciated.

    It sounds like the java file your are trying to compile is not in the directory you are compiling from.
    Is this basically what you are doing?:
    Say the package name is mypackage.
    Assume we are O.K. with keeping source and class files together.
    Create a directory named 'mypackage' somewhere...C:\mypackage\.
    Put all the .java files in it (these .java files indicate that they are a member of the 'mypackage' package).
    At a command prompt, cd to the directory containing the 'mypackage' directory...'cd C:\'
    Compile the source files: C:\j2sdk1.4.1\bin\javac mypackage\*.java
    run the main class: C:\j2sdk1.4.1\bin\java mypackage.TheMainClass
    Basically, this says keep the files where you want them and point to javac, instead of moving everything under java/bin. btw it will save a lot of typing if you add java/bin to your PATH.
    Hope this helps.

  • Compile modules with apxs

    i've been using a filemaker 6 module successfully in a G4 server, but when i recently upgraded to an intel box and reinstalled filemaker (with "web server connector" to serve dynamic sites) the installation breaks apache. the error log seems to indicate the offender is an httpd module named mod_fmwsc.so.
    filemaker includes the source for the module and indicates in the manual that it can be compiled with apxs for later versions of apache. in terminal i cd'd to the folder containing the file (mod_fmwsc.c) and issued this command:
    apxs -c mod_fmwsc.c
    Which gave this message:
    gcc -DDARWIN -DUSE_HSREGEX -DUSE_EXPAT -I../lib/expat-lite -g -Os -pipe -DHARDSERVERLIMIT=2048 -DEAPI -DSHARED_MODULE -I/usr/include/httpd -c mod.fmwsc.c
    apxs:Break: Command failed with rc=16777215
    Not really familiar with this tool, so I'd appreciate any comments. Thanks
    Lost count   Mac OS X (10.4.9)  

    Big please. FB engineers, any plans on this?

  • Problem compiling APK with flash

    Hi
    I wrote an app for iPhone and wanted to put it on android, changing the settings in flash.But when I compile to get an APK the compilation stop just 10 or 9 second before the end I hear the warning sound of my mac and then nothing.
    When I compile other "test app" it goes all  the way  !!!
    Do someone have this issue ?

    Yes, after I faced this problem with my project I simply tested the component with a new blank file - and I get these problems.
    I personally downgraded to Flash CS4 as I count CS5 a complete crap - I waste too much time on its problems and infinite crashes. So this topic is not relevant for me anymore as with CS4 there is no such problem.

  • Cannot compile class with a package

    Hello,
    I am trying to implement the package example from the SUN Tutorial. It can be found on the page: http://java.sun.com/docs/books/tutorial/java/interpack/QandE/packages-questions.html
    I think I am doing like described but it doesn�t work. The files are stored like following on my machine:
    D:\Test\Java\mygame\Shared\Utilities.java               (this file can be compiled)
    D:\Test\Java\mygame\Server\Server.java                    (can�t be compiled)
    D:\Test\Java\mygame\Client\Client.java                    (can�t be compiled)
    I have no CLASSPATH set (but I tried), Java is installed in C:\Java\j2sdk, I also tried D:\mygame\Shared\Utilities|Server|Client.java
    The error message is:
    cannot resolve symbol
    Are there any further prerequisites?
    Thank you

    This is a minimal explanation of packages.
    Assume that your programs are part of a package named myapp, which is specified by this first line in each source file: package myapp;
    Also assume that directory (C:\java\work\) is listed in the CLASSPATH list of directories.
    Also assume that all your source files reside in this directory structure: C:\java\work\myapp\
    Then a statement to compile your source file named aProgram.java is:
    C:\java\work\>javac myapp\aProgram.java
    And a statement to run the program is:
    java myapp.aProgram
    (This can be issued from any directory, as Java will search for the program, starting the search from the classpath directories.)
    Explanation:
    Compiling
    A class is in a package if there is a package statement at the top of the class.
    The source file needs to be in a subdirectory structure. The subdirectory structure must match the package statement. The top subdirectory must be in the classpath directory.
    So, you generate a directory structure C:\java\work\myapp\ which is the [classpath directory + the package subdirectory structure], and place aProgram.java in it.
    Then from the classpath directory (C:\java\work\) use the command: javac myapp\aProgram.java
    Running
    Compiling creates a file, aProgram.class in the myapp directory.
    (The following is where people tend to get lost.)
    The correct name now, as far as java is concerned, is the combination of package name and class name: myapp.aProgram (note I omit the .class) If you don't use this name, java will complain that it can't find the class.
    To run a class that's NOT part of a package, you use the command: java SomeFile (assuming that SomeFile.class is in a directory that's listed in the classpath)
    To run a class that IS part of a package, you use the command java myapp.aProgram (Note that this is analogous to the command for a class not in a package, you just use the fully qualified name)
    Here is a reference: http://java.sun.com/j2se/1.4.1/docs/tooldocs/findingclasses.html

  • Problem using DG4ODBC with named SQL Server instance

    I am running DG4ODBC on a 64 bit LINUX machine with the Microsoft SQL Server driver installed. I have successfully tested this with a SQL Server instance that was not named (GENERALI_DSN).The named instance gives the following when trying to query:
    ORA-28500: connection from ORACLE to a non-Oracle system returned this message:
    [unixODBC][Microsoft][SQL Server Native Client 11.0]Login timeout expired {HYT00}[unixODBC][Microsoft][SQL Server Native Client 11.0]SQL Server Network Interfaces: Error Locating Server/Instance Specified [xFFFFFFFF].  {08001,NativeErr = -1}[unixODBC][Microsoft][SQL Server Native Client 11.0]A network-related or instance-specific error has occurred while establishing a connection to SQL Server. Server is not found or not accessible. Check if instance name is correct and if SQL Server is configured to allow remote connections. For more information see SQL Server Books Online. {08001,NativeErr = -1}
    ORA-02063: preceding 2 lines from DEVMISC
    odbc.ini
    [GENERALI_DSN]
    Driver                  = SQL Server Native Client 11.0
    Server                  = CLTDMJCWBYZ.eu.scor.local
    User                    = everest
    Password                = everest
    Database                = Everest_Generali
    [DEVMISC_DSN]
    Driver                  = SQL Server Native Client 11.0
    Server                  = [USVCLTDEVSQL02\DEVMISC]
    User                    = link_user
    Password                = password1
    Database                = DBA
    initDG4ODBC2.ora
    # HS init parameters
    HS_FDS_CONNECT_INFO = DEVMISC_DSN
    HS_FDS_TRACE_LEVEL = DEBUG
    HS_FDS_SHAREABLE_NAME = /usr/lib64/libodbc.so
    # ODBC specific environment variables
    set ODBCINI=/home/oracle/.odbc.ini
    listener.ora
    SID_LIST_LISTENER_GW =
       (SID_LIST =
          (SID_DESC =
           (SID_NAME=DG4ODBC)
          (ORACLE_HOME=/home/oracle/product/11.2.0)
          (ENV=LD_LIBRARY_PATH=/usr/lib64:/home/oracle/product/11.2.0/lib:/opt/micro
    soft/sqlncli/lib)
          (PROGRAM=dg4odbc)
          (SID_DESC =
           (SID_NAME=DG4ODBC2)
          (ORACLE_HOME=/home/oracle/product/11.2.0)
          (ENVS=LD_LIBRARY_PATH=/usr/lib64:/home/oracle/product/11.2.0/lib:/opt/micr
    osoft/sqlncli/lib)
          (PROGRAM=dg4odbc)
    LISTENER_GW =
      (DESCRIPTION_LIST =
        (DESCRIPTION =
          (ADDRESS = (PROTOCOL = TCP)(HOST = usvcltprdoragw)(PORT = 1521))
    tnsnames.ora
    DG4ODBC =
       (DESCRIPTION=
          (ADDRESS=(PROTOCOL=tcp)(HOST=usvcltprdoragw)(PORT=1521))
          (CONNECT_DATA=(SID=DG4ODBC))
          (HS=OK)
    DG4ODBC2 =
       (DESCRIPTION=
          (ADDRESS=(PROTOCOL=tcp)(HOST=usvcltprdoragw)(PORT=1521))
          (CONNECT_DATA=(SID=DG4ODBC2))
          (HS=OK)
    I can't figure out why the named instance does not work but the other one does. Any help would be greatly appreciated!

    Did you check with the ODBC test utility isql (it is installed by default when you install the unixODBC Driver manager) if your ODBC driver can connect at all to that named instance? I have some doubts that it will work either as there was a blog commented by a MS engineer:
    Introducing the new Microsoft ODBC Drivers for SQL Server - Microsoft SQLNCli team blog - Site Home - MSDN Blogs
    who states that named instance connections are not supported using that driver.
    - Klaus

  • Problems Compiling Code With Function Pointers Using Sun CC (SUNWspro)

    I have a header file that contains a declaration to a function pointer as follows:
    int (*pFuncPntr)(char host, char comm, void *data);
    Then, in a *.c file which includes the header file where the function pointer is declared, the prototype for the function is at the top of the file and appears as follows:
    int someFunc(char hostname, char community, void *data);
    Then, in the same *.c file, down below, I attempt to assign the function pointer to the address of the function declared as follows:
    pFuncPntr = &someFunc;
    ... and further down in the *.c file is the definition of someFunc. ........................
    When I compile, I get the following error:
    : identifier redeclared: pFuncPntr
    current : int
    previous: pointer to function(pointer to char, pointer to char, pointer
    to void) returning int : "/vobs/pp2dev/src/cmds/emcp_pmgmtd/sparc_solaris/../emc
    p_pmgmtd.h", line 84
    "/vobs/pp2dev/src/cmds/emcp_pmgmtd/sparc_solaris/emcp_pmgmtd_solaris.c", line 46
    As far as I've read, this is the standard way of assigning a function pointer to the address of a function.
    Does anyone have any ideas what CC compiler is complaining about?
    Appreciate your response,
    dedham_ma_man

    WHen I try to include the ftp.jar package?? I use "package com.enterprisedt.net.ftp;".That isn't how you import a package. That declares that the class it is at the top of will belong to that package, and that's not what you want. I'm guessing that you need
    import com.enterprisedt.net.ftp.*;
    at the top of your code, just after the line where you declare the real name of the package your class is going to belong to.
    By the way, you need the compiled version of your downloaded FTP code, i.e. the .class files. If you got source code (.java files) you'll need to compile them, but you should be able to get the compiled version as a download.

  • Problem compiling bankapp with pro c

    I'm having difficulty using pro c to build the bank var .ec files. I'm pretty
    confident I have proc configured correctly, as I am able to build the oracle samples.
    I am getting a very strange group of errors when I try to precompile the .ec
    files. Throughout the precomp. process, the compiler complains that semicolons
    are various strings (suffix, _f, <eof>, etc.).  I'm pretty sure I need to change
    something in my tuxedo configuration, but I've been spinning wheels for a while
    here and was hoping someone could point me in the right direction.
    thanks

    Manoj,
    Here is the error message (Hope it helps):
    TUXDIR=/opt/Tuxedo:/u01/app/oracle/product/8.1.6/precomp \
    /u01/app/oracle/product/8.1.6/bin/proc iname=TLR TLR.ec \
    include=/opt/Tuxedo/include
    Pro*C/C++: Release 8.1.6.0.0 - Production on Fri Jun 8 14:21:45 2001
    (c) Copyright 1999 Oracle Corporation. All rights reserved.
    System default option values taken from: /u01/app/oracle/product/8.1.6/precomp/admin/pcscfg.cfg
    Syntax error at line 54, column 1, file /usr/include/bits/mathcalls.h:
    Error at line 54, column 1 in file /usr/include/bits/mathcalls.h
    __MATHCALL (acos,, (_Mdouble_ __x));
    1
    PCC-S-02201, Encountered the symbol "suffix" when expecting one of the following
    ; , = ( [
    The symbol ";" was substituted for "suffix" to continue.
    Syntax error at line 54, column 1, file /usr/include/bits/mathcalls.h:
    Error at line 54, column 1 in file /usr/include/bits/mathcalls.h
    __MATHCALL (acos,, (_Mdouble_ __x));
    1
    PCC-S-02201, Encountered the symbol "suffix" when expecting one of the following
    ; { , = ( [ auto, char, const, double, enum, extern, float,
    int, long, ulong_varchar, OCIBFileLocator OCIBlobLocator,
    OCIClobLocator, OCIDateTime, OCIExtProcContext, OCIInterval,
    OCIRowid, OCIDate, OCINumber, OCIRaw, OCIString, register,
    short, signed, sql_context, sql_cursor, static, struct,
    typedef, union, unsigned, utext, uvarchar, varchar, void,
    volatile, a typedef name, a precompiled header, exec oracle,
    exec oracle begin, exec, exec sql, exec sql begin,
    exec sql type, exec sql var, exec sql include,
    The symbol ";" was substituted for "suffix" to continue.
    Syntax error at line 56, column 1, file /usr/include/bits/mathcalls.h:
    Error at line 56, column 1 in file /usr/include/bits/mathcalls.h
    __MATHCALL (asin,, (_Mdouble_ __x));
    1
    PCC-S-02201, Encountered the symbol "suffix" when expecting one of the following
    ; , = ( [
    The symbol ";" was substituted for "suffix" to continue.
    Syntax error at line 56, column 1, file /usr/include/bits/mathcalls.h:
    Error at line 56, column 1 in file /usr/include/bits/mathcalls.h
    __MATHCALL (asin,, (_Mdouble_ __x));
    1
    PCC-S-02201, Encountered the symbol "suffix" when expecting one of the following
    ; { , = ( [ auto, char, const, double, enum, extern, float,
    int, long, ulong_varchar, OCIBFileLocator OCIBlobLocator,
    OCIClobLocator, OCIDateTime, OCIExtProcContext, OCIInterval,
    OCIRowid, OCIDate, OCINumber, OCIRaw, OCIString, register,
    short, signed, sql_context, sql_cursor, static, struct,
    typedef, union, unsigned, utext, uvarchar, varchar, void,
    volatile, a typedef name, a precompiled header, exec oracle,
    exec oracle begin, exec, exec sql, exec sql begin,
    exec sql type, exec sql var, exec sql include,
    The symbol ";" was substituted for "suffix" to continue.
    Syntax error at line 58, column 1, file /usr/include/bits/mathcalls.h:
    Error at line 58, column 1 in file /usr/include/bits/mathcalls.h
    __MATHCALL (atan,, (_Mdouble_ __x));
    1
    PCC-S-02201, Encountered the symbol "suffix" when expecting one of the following
    ; , = ( [
    The symbol ";" was substituted for "suffix" to continue.
    Syntax error at line 58, column 1, file /usr/include/bits/mathcalls.h:
    Error at line 58, column 1 in file /usr/include/bits/mathcalls.h
    __MATHCALL (atan,, (_Mdouble_ __x));
    1
    PCC-S-02201, Encountered the symbol "suffix" when expecting one of the following
    ; { , = ( [ auto, char, const, double, enum, extern, float,
    int, long, ulong_varchar, OCIBFileLocator OCIBlobLocator,
    OCIClobLocator, OCIDateTime, OCIExtProcContext, OCIInterval,
    OCIRowid, OCIDate, OCINumber, OCIRaw, OCIString, register,
    short, signed, sql_context, sql_cursor, static, struct,
    typedef, union, unsigned, utext, uvarchar, varchar, void,
    volatile, a typedef name, a precompiled header, exec oracle,
    exec oracle begin, exec, exec sql, exec sql begin,
    exec sql type, exec sql var, exec sql include,
    The symbol ";" was substituted for "suffix" to continue.
    Syntax error at line 60, column 1, file /usr/include/bits/mathcalls.h:
    Error at line 60, column 1 in file /usr/include/bits/mathcalls.h
    __MATHCALL (atan2,, (_Mdouble_ __y, Mdouble __x));
    1
    PCC-S-02201, Encountered the symbol "suffix" when expecting one of the following
    ; , = ( [
    The symbol ";" was substituted for "suffix" to continue.
    Syntax error at line 60, column 1, file /usr/include/bits/mathcalls.h:
    Error at line 60, column 1 in file /usr/include/bits/mathcalls.h
    __MATHCALL (atan2,, (_Mdouble_ __y, Mdouble __x));
    1
    PCC-S-02201, Encountered the symbol "suffix" when expecting one of the following
    ; { , = ( [ auto, char, const, double, enum, extern, float,
    int, long, ulong_varchar, OCIBFileLocator OCIBlobLocator,
    OCIClobLocator, OCIDateTime, OCIExtProcContext, OCIInterval,
    OCIRowid, OCIDate, OCINumber, OCIRaw, OCIString, register,
    short, signed, sql_context, sql_cursor, static, struct,
    typedef, union, unsigned, utext, uvarchar, varchar, void,
    volatile, a typedef name, a precompiled header, exec oracle,
    exec oracle begin, exec, exec sql, exec sql begin,
    exec sql type, exec sql var, exec sql include,
    The symbol ";" was substituted for "suffix" to continue.
    Syntax error at line 63, column 1, file /usr/include/bits/mathcalls.h:
    Error at line 63, column 1 in file /usr/include/bits/mathcalls.h
    __MATHCALL (cos,, (_Mdouble_ __x));
    1
    PCC-S-02201, Encountered the symbol "suffix" when expecting one of the following
    ; , = ( [
    The symbol ";" was substituted for "suffix" to continue.
    Syntax error at line 63, column 1, file /usr/include/bits/mathcalls.h:
    Error at line 63, column 1 in file /usr/include/bits/mathcalls.h
    __MATHCALL (cos,, (_Mdouble_ __x));
    1
    PCC-S-02201, Encountered the symbol "suffix" when expecting one of the following
    ; { , = ( [ auto, char, const, double, enum, extern, float,
    int, long, ulong_varchar, OCIBFileLocator OCIBlobLocator,
    OCIClobLocator, OCIDateTime, OCIExtProcContext, OCIInterval,
    OCIRowid, OCIDate, OCINumber, OCIRaw, OCIString, register,
    short, signed, sql_context, sql_cursor, static, struct,
    typedef, union, unsigned, utext, uvarchar, varchar, void,
    volatile, a typedef name, a precompiled header, exec oracle,
    exec oracle begin, exec, exec sql, exec sql begin,
    exec sql type, exec sql var, exec sql include,
    The symbol ";" was substituted for "suffix" to continue.
    Syntax error at line 65, column 1, file /usr/include/bits/mathcalls.h:
    Error at line 65, column 1 in file /usr/include/bits/mathcalls.h
    __MATHCALL (sin,, (_Mdouble_ __x));
    1
    PCC-S-02201, Encountered the symbol "suffix" when expecting one of the following
    ; , = ( [
    The symbol ";" was substituted for "suffix" to continue.
    Syntax error at line 65, column 1, file /usr/include/bits/mathcalls.h:
    Error at line 65, column 1 in file /usr/include/bits/mathcalls.h
    __MATHCALL (sin,, (_Mdouble_ __x));
    1
    PCC-S-02201, Encountered the symbol "suffix" when expecting one of the following
    ; { , = ( [ auto, char, const, double, enum, extern, float,
    int, long, ulong_varchar, OCIBFileLocator OCIBlobLocator,
    OCIClobLocator, OCIDateTime, OCIExtProcContext, OCIInterval,
    OCIRowid, OCIDate, OCINumber, OCIRaw, OCIString, register,
    short, signed, sql_context, sql_cursor, static, struct,
    typedef, union, unsigned, utext, uvarchar, varchar, void,
    volatile, a typedef name, a precompiled header, exec oracle,
    exec oracle begin, exec, exec sql, exec sql begin,
    exec sql type, exec sql var, exec sql include,
    The symbol ";" was substituted for "suffix" to continue.
    Syntax error at line 67, column 1, file /usr/include/bits/mathcalls.h:
    Error at line 67, column 1 in file /usr/include/bits/mathcalls.h
    __MATHCALL (tan,, (_Mdouble_ __x));
    1
    PCC-S-02201, Encountered the symbol "suffix" when expecting one of the following
    ; , = ( [
    The symbol ";" was substituted for "suffix" to continue.
    Syntax error at line 67, column 1, file /usr/include/bits/mathcalls.h:
    Error at line 67, column 1 in file /usr/include/bits/mathcalls.h
    __MATHCALL (tan,, (_Mdouble_ __x));
    1
    PCC-S-02201, Encountered the symbol "suffix" when expecting one of the following
    ; { , = ( [ auto, char, const, double, enum, extern, float,
    int, long, ulong_varchar, OCIBFileLocator OCIBlobLocator,
    OCIClobLocator, OCIDateTime, OCIExtProcContext, OCIInterval,
    OCIRowid, OCIDate, OCINumber, OCIRaw, OCIString, register,
    short, signed, sql_context, sql_cursor, static, struct,
    typedef, union, unsigned, utext, uvarchar, varchar, void,
    volatile, a typedef name, a precompiled header, exec oracle,
    exec oracle begin, exec, exec sql, exec sql begin,
    exec sql type, exec sql var, exec sql include,
    The symbol ";" was substituted for "suffix" to continue.
    Syntax error at line 78, column 1, file /usr/include/bits/mathcalls.h:
    Error at line 78, column 1 in file /usr/include/bits/mathcalls.h
    __MATHCALL (cosh,, (_Mdouble_ __x));
    1
    PCC-S-02201, Encountered the symbol "suffix" when expecting one of the following
    ; , = ( [
    The symbol ";" was substituted for "suffix" to continue.
    Syntax error at line 78, column 1, file /usr/include/bits/mathcalls.h:
    Error at line 78, column 1 in file /usr/include/bits/mathcalls.h
    __MATHCALL (cosh,, (_Mdouble_ __x));
    1
    PCC-S-02201, Encountered the symbol "suffix" when expecting one of the following
    ; { , = ( [ auto, char, const, double, enum, extern, float,
    int, long, ulong_varchar, OCIBFileLocator OCIBlobLocator,
    OCIClobLocator, OCIDateTime, OCIExtProcContext, OCIInterval,
    OCIRowid, OCIDate, OCINumber, OCIRaw, OCIString, register,
    short, signed, sql_context, sql_cursor, static, struct,
    typedef, union, unsigned, utext, uvarchar, varchar, void,
    volatile, a typedef name, a precompiled header, exec oracle,
    exec oracle begin, exec, exec sql, exec sql begin,
    exec sql type, exec sql var, exec sql include,
    The symbol ";" was substituted for "suffix" to continue.
    Syntax error at line 80, column 1, file /usr/include/bits/mathcalls.h:
    Error at line 80, column 1 in file /usr/include/bits/mathcalls.h
    __MATHCALL (sinh,, (_Mdouble_ __x));
    1
    PCC-S-02201, Encountered the symbol "suffix" when expecting one of the following
    ; , = ( [
    The symbol ";" was substituted for "suffix" to continue.
    Syntax error at line 80, column 1, file /usr/include/bits/mathcalls.h:
    Error at line 80, column 1 in file /usr/include/bits/mathcalls.h
    __MATHCALL (sinh,, (_Mdouble_ __x));
    1
    PCC-S-02201, Encountered the symbol "suffix" when expecting one of the following
    ; { , = ( [ auto, char, const, double, enum, extern, float,
    int, long, ulong_varchar, OCIBFileLocator OCIBlobLocator,
    OCIClobLocator, OCIDateTime, OCIExtProcContext, OCIInterval,
    OCIRowid, OCIDate, OCINumber, OCIRaw, OCIString, register,
    short, signed, sql_context, sql_cursor, static, struct,
    typedef, union, unsigned, utext, uvarchar, varchar, void,
    volatile, a typedef name, a precompiled header, exec oracle,
    exec oracle begin, exec, exec sql, exec sql begin,
    exec sql type, exec sql var, exec sql include,
    The symbol ";" was substituted for "suffix" to continue.
    Syntax error at line 82, column 1, file /usr/include/bits/mathcalls.h:
    Error at line 82, column 1 in file /usr/include/bits/mathcalls.h
    __MATHCALL (tanh,, (_Mdouble_ __x));
    1
    PCC-S-02201, Encountered the symbol "suffix" when expecting one of the following
    ; , = ( [
    The symbol ";" was substituted for "suffix" to continue.
    Syntax error at line 82, column 1, file /usr/include/bits/mathcalls.h:
    Error at line 82, column 1 in file /usr/include/bits/mathcalls.h
    __MATHCALL (tanh,, (_Mdouble_ __x));
    1
    PCC-S-02201, Encountered the symbol "suffix" when expecting one of the following
    ; { , = ( [ auto, char, const, double, enum, extern, float,
    int, long, ulong_varchar, OCIBFileLocator OCIBlobLocator,
    OCIClobLocator, OCIDateTime, OCIExtProcContext, OCIInterval,
    OCIRowid, OCIDate, OCINumber, OCIRaw, OCIString, register,
    short, signed, sql_context, sql_cursor, static, struct,
    typedef, union, unsigned, utext, uvarchar, varchar, void,
    volatile, a typedef name, a precompiled header, exec oracle,
    exec oracle begin, exec, exec sql, exec sql begin,
    exec sql type, exec sql var, exec sql include,
    The symbol ";" was substituted for "suffix" to continue.
    Syntax error at line 86, column 1, file /usr/include/bits/mathcalls.h:
    Error at line 86, column 1 in file /usr/include/bits/mathcalls.h
    __MATHCALL (acosh,, (_Mdouble_ __x));
    1
    PCC-S-02201, Encountered the symbol "suffix" when expecting one of the following
    ; , = ( [
    The symbol ";" was substituted for "suffix" to continue.
    Syntax error at line 86, column 1, file /usr/include/bits/mathcalls.h:
    Error at line 86, column 1 in file /usr/include/bits/mathcalls.h
    __MATHCALL (acosh,, (_Mdouble_ __x));
    1
    PCC-S-02201, Encountered the symbol "suffix" when expecting one of the following
    ; { , = ( [ auto, char, const, double, enum, extern, float,
    int, long, ulong_varchar, OCIBFileLocator OCIBlobLocator,
    OCIClobLocator, OCIDateTime, OCIExtProcContext, OCIInterval,
    OCIRowid, OCIDate, OCINumber, OCIRaw, OCIString, register,
    short, signed, sql_context, sql_cursor, static, struct,
    typedef, union, unsigned, utext, uvarchar, varchar, void,
    volatile, a typedef name, a precompiled header, exec oracle,
    exec oracle begin, exec, exec sql, exec sql begin,
    exec sql type, exec sql var, exec sql include,
    The symbol ";" was substituted for "suffix" to continue.
    Syntax error at line 88, column 1, file /usr/include/bits/mathcalls.h:
    Error at line 88, column 1 in file /usr/include/bits/mathcalls.h
    __MATHCALL (asinh,, (_Mdouble_ __x));
    1
    PCC-S-02201, Encountered the symbol "suffix" when expecting one of the following
    ; , = ( [
    The symbol ";" was substituted for "suffix" to continue.
    Syntax error at line 88, column 1, file /usr/include/bits/mathcalls.h:
    Error at line 88, column 1 in file /usr/include/bits/mathcalls.h
    __MATHCALL (asinh,, (_Mdouble_ __x));
    1
    PCC-S-02201, Encountered the symbol "suffix" when expecting one of the following
    ; { , = ( [ auto, char, const, double, enum, extern, float,
    int, long, ulong_varchar, OCIBFileLocator OCIBlobLocator,
    OCIClobLocator, OCIDateTime, OCIExtProcContext, OCIInterval,
    OCIRowid, OCIDate, OCINumber, OCIRaw, OCIString, register,
    short, signed, sql_context, sql_cursor, static, struct,
    typedef, union, unsigned, utext, uvarchar, varchar, void,
    volatile, a typedef name, a precompiled header, exec oracle,
    exec oracle begin, exec, exec sql, exec sql begin,
    exec sql type, exec sql var, exec sql include,
    The symbol ";" was substituted for "suffix" to continue.
    Syntax error at line 90, column 1, file /usr/include/bits/mathcalls.h:
    Error at line 90, column 1 in file /usr/include/bits/mathcalls.h
    __MATHCALL (atanh,, (_Mdouble_ __x));
    1
    PCC-S-02201, Encountered the symbol "suffix" when expecting one of the following
    ; , = ( [
    The symbol ";" was substituted for "suffix" to continue.
    Syntax error at line 90, column 1, file /usr/include/bits/mathcalls.h:
    Error at line 90, column 1 in file /usr/include/bits/mathcalls.h
    __MATHCALL (atanh,, (_Mdouble_ __x));
    1
    PCC-S-02201, Encountered the symbol "suffix" when expecting one of the following
    ; { , = ( [ auto, char, const, double, enum, extern, float,
    int, long, ulong_varchar, OCIBFileLocator OCIBlobLocator,
    OCIClobLocator, OCIDateTime, OCIExtProcContext, OCIInterval,
    OCIRowid, OCIDate, OCINumber, OCIRaw, OCIString, register,
    short, signed, sql_context, sql_cursor, static, struct,
    typedef, union, unsigned, utext, uvarchar, varchar, void,
    volatile, a typedef name, a precompiled header, exec oracle,
    exec oracle begin, exec, exec sql, exec sql begin,
    exec sql type, exec sql var, exec sql include,
    The symbol ";" was substituted for "suffix" to continue.
    Syntax error at line 96, column 1, file /usr/include/bits/mathcalls.h:
    Error at line 96, column 1 in file /usr/include/bits/mathcalls.h
    __MATHCALL (exp,, (_Mdouble_ __x));
    1
    PCC-S-02201, Encountered the symbol "suffix" when expecting one of the following
    ; , = ( [
    The symbol ";" was substituted for "suffix" to continue.
    Syntax error at line 96, column 1, file /usr/include/bits/mathcalls.h:
    Error at line 96, column 1 in file /usr/include/bits/mathcalls.h
    __MATHCALL (exp,, (_Mdouble_ __x));
    1
    PCC-S-02201, Encountered the symbol "suffix" when expecting one of the following
    ; { , = ( [ auto, char, const, double, enum, extern, float,
    int, long, ulong_varchar, OCIBFileLocator OCIBlobLocator,
    OCIClobLocator, OCIDateTime, OCIExtProcContext, OCIInterval,
    OCIRowid, OCIDate, OCINumber, OCIRaw, OCIString, register,
    short, signed, sql_context, sql_cursor, static, struct,
    typedef, union, unsigned, utext, uvarchar, varchar, void,
    volatile, a typedef name, a precompiled header, exec oracle,
    exec oracle begin, exec, exec sql, exec sql begin,
    exec sql type, exec sql var, exec sql include,
    The symbol ";" was substituted for "suffix" to continue.
    Syntax error at line 106, column 1, file /usr/include/bits/mathcalls.h:
    Error at line 106, column 1 in file /usr/include/bits/mathcalls.h
    __MATHCALL (frexp,, (_Mdouble_ __x, int *__exponent));
    1
    PCC-S-02201, Encountered the symbol "suffix" when expecting one of the following
    ; , = ( [
    The symbol ";" was substituted for "suffix" to continue.
    Syntax error at line 106, column 1, file /usr/include/bits/mathcalls.h:
    Error at line 106, column 1 in file /usr/include/bits/mathcalls.h
    __MATHCALL (frexp,, (_Mdouble_ __x, int *__exponent));
    1
    PCC-S-02201, Encountered the symbol "suffix" when expecting one of the following
    ; { , = ( [ auto, char, const, double, enum, extern, float,
    int, long, ulong_varchar, OCIBFileLocator OCIBlobLocator,
    OCIClobLocator, OCIDateTime, OCIExtProcContext, OCIInterval,
    OCIRowid, OCIDate, OCINumber, OCIRaw, OCIString, register,
    short, signed, sql_context, sql_cursor, static, struct,
    typedef, union, unsigned, utext, uvarchar, varchar, void,
    volatile, a typedef name, a precompiled header, exec oracle,
    exec oracle begin, exec, exec sql, exec sql begin,
    exec sql type, exec sql var, exec sql include,
    The symbol ";" was substituted for "suffix" to continue.
    Syntax error at line 109, column 1, file /usr/include/bits/mathcalls.h:
    Error at line 109, column 1 in file /usr/include/bits/mathcalls.h
    __MATHCALL (ldexp,, (_Mdouble_ __x, int __exponent));
    1
    PCC-S-02201, Encountered the symbol "suffix" when expecting one of the following
    ; , = ( [
    The symbol ";" was substituted for "suffix" to continue.
    Syntax error at line 109, column 1, file /usr/include/bits/mathcalls.h:
    Error at line 109, column 1 in file /usr/include/bits/mathcalls.h
    __MATHCALL (ldexp,, (_Mdouble_ __x, int __exponent));
    1
    PCC-S-02201, Encountered the symbol "suffix" when expecting one of the following
    ; { , = ( [ auto, char, const, double, enum, extern, float,
    int, long, ulong_varchar, OCIBFileLocator OCIBlobLocator,
    OCIClobLocator, OCIDateTime, OCIExtProcContext, OCIInterval,
    OCIRowid, OCIDate, OCINumber, OCIRaw, OCIString, register,
    short, signed, sql_context, sql_cursor, static, struct,
    typedef, union, unsigned, utext, uvarchar, varchar, void,
    volatile, a typedef name, a precompiled header, exec oracle,
    exec oracle begin, exec, exec sql, exec sql begin,
    exec sql type, exec sql var, exec sql include,
    The symbol ";" was substituted for "suffix" to continue.
    Syntax error at line 112, column 1, file /usr/include/bits/mathcalls.h:
    Error at line 112, column 1 in file /usr/include/bits/mathcalls.h
    __MATHCALL (log,, (_Mdouble_ __x));
    1
    PCC-S-02201, Encountered the symbol "suffix" when expecting one of the following
    ; , = ( [
    The symbol ";" was substituted for "suffix" to continue.
    Syntax error at line 112, column 1, file /usr/include/bits/mathcalls.h:
    Error at line 112, column 1 in file /usr/include/bits/mathcalls.h
    __MATHCALL (log,, (_Mdouble_ __x));
    1
    PCC-S-02201, Encountered the symbol "suffix" when expecting one of the following
    ; { , = ( [ auto, char, const, double, enum, extern, float,
    int, long, ulong_varchar, OCIBFileLocator OCIBlobLocator,
    OCIClobLocator, OCIDateTime, OCIExtProcContext, OCIInterval,
    OCIRowid, OCIDate, OCINumber, OCIRaw, OCIString, register,
    short, signed, sql_context, sql_cursor, static, struct,
    typedef, union, unsigned, utext, uvarchar, varchar, void,
    volatile, a typedef name, a precompiled header, exec oracle,
    exec oracle begin, exec, exec sql, exec sql begin,
    exec sql type, exec sql var, exec sql include,
    The symbol ";" was substituted for "suffix" to continue.
    Syntax error at line 115, column 1, file /usr/include/bits/mathcalls.h:
    Error at line 115, column 1 in file /usr/include/bits/mathcalls.h
    __MATHCALL (log10,, (_Mdouble_ __x));
    1
    PCC-S-02201, Encountered the symbol "suffix" when expecting one of the following
    ; , = ( [
    The symbol ";" was substituted for "suffix" to continue.
    Syntax error at line 115, column 1, file /usr/include/bits/mathcalls.h:
    Error at line 115, column 1 in file /usr/include/bits/mathcalls.h
    __MATHCALL (log10,, (_Mdouble_ __x));
    1
    PCC-S-02201, Encountered the symbol "suffix" when expecting one of the following
    ; { , = ( [ auto, char, const, double, enum, extern, float,
    int, long, ulong_varchar, OCIBFileLocator OCIBlobLocator,
    OCIClobLocator, OCIDateTime, OCIExtProcContext, OCIInterval,
    OCIRowid, OCIDate, OCINumber, OCIRaw, OCIString, register,
    short, signed, sql_context, sql_cursor, static, struct,
    typedef, union, unsigned, utext, uvarchar, varchar, void,
    volatile, a typedef name, a precompiled header, exec oracle,
    exec oracle begin, exec, exec sql, exec sql begin,
    exec sql type, exec sql var, exec sql include,
    The symbol ";" was substituted for "suffix" to continue.
    Syntax error at line 118, column 1, file /usr/include/bits/mathcalls.h:
    Error at line 118, column 1 in file /usr/include/bits/mathcalls.h
    __MATHCALL (modf,, (_Mdouble_ __x, Mdouble *__iptr));
    1
    PCC-S-02201, Encountered the symbol "suffix" when expecting one of the following
    ; , = ( [
    The symbol ";" was substituted for "suffix" to continue.
    Syntax error at line 118, column 1, file /usr/include/bits/mathcalls.h:
    Error at line 118, column 1 in file /usr/include/bits/mathcalls.h
    __MATHCALL (modf,, (_Mdouble_ __x, Mdouble *__iptr));
    1
    PCC-S-02201, Encountered the symbol "suffix" when expecting one of the following
    ; { , = ( [ auto, char, const, double, enum, extern, float,
    int, long, ulong_varchar, OCIBFileLocator OCIBlobLocator,
    OCIClobLocator, OCIDateTime, OCIExtProcContext, OCIInterval,
    OCIRowid, OCIDate, OCINumber, OCIRaw, OCIString, register,
    short, signed, sql_context, sql_cursor, static, struct,
    typedef, union, unsigned, utext, uvarchar, varchar, void,
    volatile, a typedef name, a precompiled header, exec oracle,
    exec oracle begin, exec, exec sql, exec sql begin,
    exec sql type, exec sql var, exec sql include,
    The symbol ";" was substituted for "suffix" to continue.
    Syntax error at line 122, column 1, file /usr/include/bits/mathcalls.h:
    Error at line 122, column 1 in file /usr/include/bits/mathcalls.h
    __MATHCALL (expm1,, (_Mdouble_ __x));
    1
    PCC-S-02201, Encountered the symbol "suffix" when expecting one of the following
    ; , = ( [
    The symbol ";" was substituted for "suffix" to continue.
    Syntax error at line 122, column 1, file /usr/include/bits/mathcalls.h:
    Error at line 122, column 1 in file /usr/include/bits/mathcalls.h
    __MATHCALL (expm1,, (_Mdouble_ __x));
    1
    PCC-S-02201, Encountered the symbol "suffix" when expecting one of the following
    ; { , = ( [ auto, char, const, double, enum, extern, float,
    int, long, ulong_varchar, OCIBFileLocator OCIBlobLocator,
    OCIClobLocator, OCIDateTime, OCIExtProcContext, OCIInterval,
    OCIRowid, OCIDate, OCINumber, OCIRaw, OCIString, register,
    short, signed, sql_context, sql_cursor, static, struct,
    typedef, union, unsigned, utext, uvarchar, varchar, void,
    volatile, a typedef name, a precompiled header, exec oracle,
    exec oracle begin, exec, exec sql, exec sql begin,
    exec sql type, exec sql var, exec sql include,
    The symbol ";" was substituted for "suffix" to continue.
    Syntax error at line 125, column 1, file /usr/include/bits/mathcalls.h:
    Error at line 125, column 1 in file /usr/include/bits/mathcalls.h
    __MATHCALL (log1p,, (_Mdouble_ __x));
    1
    PCC-S-02201, Encountered the symbol "suffix" when expecting one of the following
    ; , = ( [
    The symbol ";" was substituted for "suffix" to continue.
    Syntax error at line 125, column 1, file /usr/include/bits/mathcalls.h:
    Error at line 125, column 1 in file /usr/include/bits/mathcalls.h
    __MATHCALL (log1p,, (_Mdouble_ __x));
    1
    PCC-S-02201, Encountered the symbol "suffix" when expecting one of the following
    ; { , = ( [ auto, char, const, double, enum, extern, float,
    int, long, ulong_varchar, OCIBFileLocator OCIBlobLocator,
    OCIClobLocator, OCIDateTime, OCIExtProcContext, OCIInterval,
    OCIRowid, OCIDate, OCINumber, OCIRaw, OCIString, register,
    short, signed, sql_context, sql_cursor, static, struct,
    typedef, union, unsigned, utext, uvarchar, varchar, void,
    volatile, a typedef name, a precompiled header, exec oracle,
    exec oracle begin, exec, exec sql, exec sql begin,
    exec sql type, exec sql var, exec sql include,
    The symbol ";" was substituted for "suffix" to continue.
    Syntax error at line 128, column 1, file /usr/include/bits/mathcalls.h:
    Error at line 128, column 1 in file /usr/include/bits/mathcalls.h
    __MATHCALL (logb,, (_Mdouble_ __x));
    1
    PCC-S-02201, Encountered the symbol "suffix" when expecting one of the following
    ; , = ( [
    The symbol ";" was substituted for "suffix" to continue.
    Syntax error at line 128, column 1, file /usr/include/bits/mathcalls.h:
    Error at line 128, column 1 in file /usr/include/bits/mathcalls.h
    __MATHCALL (logb,, (_Mdouble_ __x));
    1
    PCC-S-02201, Encountered the symbol "suffix" when expecting one of the following
    ; { , = ( [ auto, char, const, double, enum, extern, float,
    int, long, ulong_varchar, OCIBFileLocator OCIBlobLocator,
    OCIClobLocator, OCIDateTime, OCIExtProcContext, OCIInterval,
    OCIRowid, OCIDate, OCINumber, OCIRaw, OCIString, register,
    short, signed, sql_context, sql_cursor, static, struct,
    typedef, union, unsigned, utext, uvarchar, varchar, void,
    volatile, a typedef name, a precompiled header, exec oracle,
    exec oracle begin, exec, exec sql, exec sql begin,
    exec sql type, exec sql var, exec sql include,
    The symbol ";" was substituted for "suffix" to continue.
    Syntax error at line 143, column 1, file /usr/include/bits/mathcalls.h:
    Error at line 143, column 1 in file /usr/include/bits/mathcalls.h
    __MATHCALL (pow,, (_Mdouble_ __x, Mdouble __y));
    1
    PCC-S-02201, Encountered the symbol "suffix" when expecting one of the following
    ; , = ( [
    The symbol ";" was substituted for "suffix" to continue.
    Syntax error at line 143, column 1, file /usr/include/bits/mathcalls.h:
    Error at line 143, column 1 in file /usr/include/bits/mathcalls.h
    __MATHCALL (pow,, (_Mdouble_ __x, Mdouble __y));
    1
    PCC-S-02201, Encountered the symbol "suffix" when expecting one of the following
    ; { , = ( [ auto, char, const, double, enum, extern, float,
    int, long, ulong_varchar, OCIBFileLocator OCIBlobLocator,
    OCIClobLocator, OCIDateTime, OCIExtProcContext, OCIInterval,
    OCIRowid, OCIDate, OCINumber, OCIRaw, OCIString, register,
    short, signed, sql_context, sql_cursor, static, struct,
    typedef, union, unsigned, utext, uvarchar, varchar, void,
    volatile, a typedef name, a precompiled header, exec oracle,
    exec oracle begin, exec, exec sql, exec sql begin,
    exec sql type, exec sql var, exec sql include,
    The symbol ";" was substituted for "suffix" to continue.
    Syntax error at line 146, column 1, file /usr/include/bits/mathcalls.h:
    Error at line 146, column 1 in file /usr/include/bits/mathcalls.h
    __MATHCALL (sqrt,, (_Mdouble_ __x));
    1
    PCC-S-02201, Encountered the symbol "suffix" when expecting one of the following
    ; , = ( [
    The symbol ";" was substituted for "suffix" to continue.
    Syntax error at line 146, column 1, file /usr/include/bits/mathcalls.h:
    Error at line 146, column 1 in file /usr/include/bits/mathcalls.h
    __MATHCALL (sqrt,, (_Mdouble_ __x));
    1
    PCC-S-02201, Encountered the symbol "suffix" when expecting one of the following
    ; { , = ( [ auto, char, const, double, enum, extern, float,
    int, long, ulong_varchar, OCIBFileLocator OCIBlobLocator,
    OCIClobLocator, OCIDateTime, OCIExtProcContext, OCIInterval,
    OCIRowid, OCIDate, OCINumber, OCIRaw, OCIString, register,
    short, signed, sql_context, sql_cursor, static, struct,
    typedef, union, unsigned, utext, uvarchar, varchar, void,
    volatile, a typedef name, a precompiled header, exec oracle,
    exec oracle begin, exec, exec sql, exec sql begin,
    exec sql type, exec sql var, exec sql include,
    The symbol ";" was substituted for "suffix" to continue.
    Syntax error at line 150, column 1, file /usr/include/bits/mathcalls.h:
    Error at line 150, column 1 in file /usr/include/bits/mathcalls.h
    __MATHCALL (hypot,, (_Mdouble_ __x, Mdouble __y));
    1
    PCC-S-02201, Encountered the symbol "suffix" when expecting one of the following
    ; , = ( [
    The symbol ";" was substituted for "suffix" to continue.
    Syntax error at line 150, column 1, file /usr/include/bits/mathcalls.h:
    Error at line 150, column 1 in file /usr/include/bits/mathcalls.h
    __MATHCALL (hypot,, (_Mdouble_ __x, Mdouble __y));
    1
    PCC-S-02201, Encountered the symbol "suffix" when expecting one of the following
    ; { , = ( [ auto, char, const, double, enum, extern, float,
    int, long, ulong_varchar, OCIBFileLocator OCIBlobLocator,
    OCIClobLocator, OCIDateTime, OCIExtProcContext, OCIInterval,
    OCIRowid, OCIDate, OCINumber, OCIRaw, OCIString, register,
    short, signed, sql_context, sql_cursor, stati

  • Problem Compiling Projects with Servlet & Custom Taglibs

    There was a bug in Jdeveloper 3 that if you compiled JSP's that used Custom Tags Jdeveloper validated your web.xml file - very annoying (if anyone knows a workaround plese let me know). There is a workaround in JDeveloper 9 detailed in the release notes http://otn.oracle.com/products/jdev/htdocs/readme_902.html. Has this been fixed in 10g. Incidently I loaded the Oracle Developer Suite 10g documentaion cd dated April 04 and JDevloper was described as 9i - is this the latest version ?

    Perhaps
    javac -classpath .;..;c:\jdk1.3.1_07\lib\servlet.jar pdm\FileName.java

  • Problems compiling with packages

    Hi,
    I wonder if anyone could help me.
    I have had problems compiling using a package. I have altered the classpath in autoexec.bat with:
    SET CLASSPATH=%classpath%;C:\jdk1.3.1_02\classes;.
    the package class files are stored in C:\jdk1.3.1_02\classes\helliker\id3
    and I have imported the class with:
    import helliker.id3.*;
    I am getting the following error:
    C:\My Documents\Uni work\mp3 project\test\Driver.java:1: package helliker.id3 does not exist
    import helliker.id3.*;
    ^
    Can anybody help?
    Thanks,
    Dave

    Perhaps the version of Windows you are using does not use autoexec.bat. For example, in NT and XP, you set Classpath using ControlPanel/System/Advanced/Environment Variables.
    Perhaps there is a typo in your Classpath, for example an extra space.
    On a command line, try this:
    javac -classpath C:\jdk1.3.1_02\classes C:\My Documents\Uni work\mp3 project\test\Driver.java
    If that works, then definitely Classpath is not set as you think it is.

  • Compiling application (with several sub-packages) from another java app

    Hi,
    I'm writing my own build tool and need to be able to compile an external application (pulled from cvs, subversion, ...) from within this build tool.
    Probably I need to use com.sun.tools.javac.Main.compile ?
    But how do I pass classpath, output dir, etc to this class and how can I make it compile all files in all (sub)packages of the given folder ?
    thanks for any help.

    Never mind my previous post, I found a solution to the "the input line is too long" problem:
    Putting all the files in a temporary file and then providing that file as the source to compile, like this:
    javac -g:none -cp <classpath> -d classes @sourcefiles.txtwhere sourcefiles.txt is the name of the temporary file that contains the names of the source files (note the "@"-prefix)
    For some reason, this is not mentioned/documented in the java docs (at least not in my docs)
    Ok, so everything is compiling now, but I have one problem remaining:
    For each "module" that I compile (the application I use for my tests consists of several "modules", i.e. subpackages), I get an error stating that "The system cannot find the path specified"
    This seems obvious, because it is trying to write a file <package-name>\classes\<package-name>\<classname>.class
    But why is it trying to write that file ?
    -> Is this a known bug or something ?
    Let me explain a little more...
    For each compilation I do using the com.sun.tools.javac.Main.compile() method, it is giving this error.
    Everything is compiling correctly, but it seems it is trying to write an extra class file to a wrong path.
    Until now, it was always the first file in the row that gave the problem.
    Example:
    ** module 1:
    sources/com/example/module1/class1.java
    sources/com/example/module1/class2.java
    sources/com/example/module1/class3.java
    sources/com/example/module1/sub1/subclass1.java
    sources/com/example/module1/sub1/subclass2.java
    sources/com/example/module1/sub1/subclass3.java
    ** module 2:
    sources/com/example/module2/class1.java
    sources/com/example/module2/class2.java
    sources/com/example/module2/class3.java
    sources/com/example/module2/sub1/subclass1.java
    sources/com/example/module2/sub1/subclass2.java
    sources/com/example/module2/sub1/subclass3.java
    => My application will compile module 1, do some other things with it and the module 2 and again do some other things with it.
    The result would be:
    Application started.
    Loading configuration: OK
    Compiling sources for module module1: E:\temp\_User_\project\packaging\workingdir\source\com/example/module1\class1.java:12: error while writing com.example.module1.class1: com\example\module1\classes\com\example\module1\class1.class (The system cannot find the path specified)public class class1 extends Thread {
           ^
    Note: Some input files use or override a deprecated API.
    Note: Recompile with -deprecation for details.
    1 error
    OK
    Note: Contents of my classes directory for module1:
    classes/com/example/module1/class1.class
    classes/com/example/module1/class2.class
    classes/com/example/module1/class3.class
    classes/com/example/module1/sub1/subclass1.class
    classes/com/example/module1/sub1/subclass2.class
    classes/com/example/module1/sub1/subclass3.class
    => all class files are correctly compiled
    Compiling sources for module module2: E:\temp\_User_\project\packaging\workingdir\source\com/example/module2\class1.java:12: error while writing com.example.module2.class1: com\example\module2\classes\com\example\module2\class1.class (The system cannot find the path specified)public class class1 extends Thread {
           ^
    Note: Some input files use or override a deprecated API.
    Note: Recompile with -deprecation for details.
    1 error
    OK
    Application finished without errors.
    Note: Contents of my classes directory for module2:
    classes/com/example/module2/class1.class
    classes/com/example/module2/class2.class
    classes/com/example/module2/class3.class
    classes/com/example/module2/sub1/subclass1.class
    classes/com/example/module2/sub1/subclass2.class
    classes/com/example/module2/sub1/subclass3.class
    So, as you can see everything compiles as expected, but an error message is displayed related to each first file that is compiled.
    ==> Is this a known issue ?
    ==> What can I do about it ?
    Suggestions welcome

  • Problem when working with package???Please, help me!!!

    I got 3 .java files from one Java tutorial as follow:
    Server.java (in package mygame.server)
    Utilities.java (in package mygame.shared)
    Client.java (in package mygame.client)
    All the above files are placed in "E:\Java Programmes\source"
    After compiling, i got correspponding .class files:
    Server.class (placed in "E:\Java Programmes\class\mygame\server")
    Utilities.class (placed in "E:\Java Programmes\class\mygam\shared")
    Clients.class (placed in "E:\Java Programmes\class\mygame\client")
    But when i run Server.class which contains main method, i got error as follow:
    E:\Java Programmes>java class\mygame\server\Server
    Exception in thread "main" java.lang.NoClassDefFoundError: class\mygame\server\S
    erver (wrong name: mygame/server/Server)
    at java.lang.ClassLoader.defineClass1(Native Method)
    at java.lang.ClassLoader.defineClass(Unknown Source)
    at java.security.SecureClassLoader.defineClass(Unknown Source)
    at java.net.URLClassLoader.defineClass(Unknown Source)
    at java.net.URLClassLoader.access$100(Unknown Source)
    at java.net.URLClassLoader$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClassInternal(Unknown Source)
    That was very puzzled for me. I cannot find out what wrong with my files. Please., any boby, help me!!! I always got this problem when working with package and managing files. Thanls a lot.

    java -cp "E:\Java Programmes\class" mygame.server.Server

Maybe you are looking for

  • IPod stuck in "do not disconnect" and NOT recognized by iTunes

    I updated to 7.1.1.... and my iPod is not stuck in "do Not disconnect" and not recognized by iTunes. I have tried the Toshiba "Safely Remove Hardware" -- and selecting the iPOD -- but, notice comes back "cannot disconnect now because a program is acc

  • MainStage 2 performance / CPU Spikes

    MainStage 1 was almost perfect. Just to join the misery ... Same problems (i am reading about on Forums everywhere) here with MainStage 2. Huge cpu spikes and stuttering audio from Virtual Synths. Basically unplayable. CPU usage is at least 30% highe

  • Error in HTTP Server , OAS 10g

    Hi all, i'm not sure this is the right forum to post this question... i keep getting this error in HTTP Server of OAS10g middle tier: [Thu Jul 28 15:51:47 2005] [error] [client 10.42.48.237] [ecid: 1050719549026,1] MOD_OC4J_0080: After calling Apache

  • Replace amount in OOPS ALV

    hi all, i am using OOPS ALV to display the report. requirment is that i need to dispaly * when the value of the amount coloumn is 0. i changed that coloumn to character and displayed as "*", but now i am not able to used the summing option given by A

  • Online Demos Available on OTN!!

    The JDeveloper Team has uploaded our latest online demos of JDeveloper 2.0 on OTN. Have a look at: http://technet.oracle.com/product/tools/appjava/info/walkthru/onl inedemo.html Or click on Online Demos on the JDeveloper Technical Information page Th