Compile code in a file

i have some java codes in my "fl.txt"(c:\fl.txt). these are;
public class file_{
public static void main(String args[]){
System.out.print("hello world");
}i want to compile these code from my program(i am building it with java) at runtime.. how can ii do that.i think i need to use runtime.exec() method but i dont know how can i compile these codes in a file....

It is possible to dynamically compile code from within a running Java program,
but you should have a damn good reason for doing so.
Check out the documentation for javac: http://java.sun.com/javase/6/docs/technotes/tools/windows/javac.html
<quote>
javac supports the new Java Compiler API defined by the classes and interfaces in the javax.tools package.
Example
To perform a compilation using arguments as you would give on the command line, you can use the following:
JavaCompiler javac = ToolProvider.getSystemJavaCompiler();
int rc = javac.run(null, null, null, args);This will write any diagnostics to the standard output stream, and return the exit code that javac would give when invoked from the command line.
You can use other methods on the javax.tools.JavaCompiler interface to handle diagnostics, control where files are read from and written to, and so on.
</quote>
If you are using an older version of Java, check out the documentation to see the old interface to do this (com.sun.tools.javac.Main).

Similar Messages

  • How to retrieve constants value from compiled code in jar file?

    Hi everyone,
    I've been looking for a way to solve this for a week now, without any much success... and I've finally decided to ask the Java gurus for a solution! :-)
    Here's what I am basically trying to do:
    I have several jar files in which there are only compiled code (.class).
    In every class, there are 2 constants (declared as static final String) that I would like to retrieve (one is the version and the other the date of the last modification).
    My goal is to print a list of all the classes in the jar files with the values of these 2 constants for each class.
    The solution that I have right now to do this does not work properly: for now, I read all the elements of the classpath, check if these are jar files, and if so, I look into each one and load all the classes one by one and print the results.
    The problem with this is that it uses the method Class.forName(className) and as some classes are unfortunately present in many jar files (2 or 3 copies), once the classes have been loaded, then it won't be "reloaded".
    Without the possibility to "reload" these classes, I cannot see inconsistencies in the versions of the classes present in the jar files.
    I have read many articles, and I thought that I could then use a custom classloader and create a new instance of this classloader for each jar file.
    2 problems with this:
    - according to many posts in the different forums I have read, the jar files should not appear in the CLASSPATH (but this would be easier for me if I could use it...)
    - some classes will not be loaded if some classes (present in other jar files) are not loaded... and this makes things really really complicated to implement...
    So, I thought that I was maybe doing this the wrong way, and that there might be an easy way out of this...
    In fact, I do not need to load the classes... all I need to do, is take a sneak peek at the constants and print their values... and that's it!
    Somehow, I think that this is possible to retrieve the values of compile time constants (declared as static final String) as I can see that with Eclipse (when opening a jar file).
    So, my question is: how can I do that within my java application?
    Or maybe there is another easier solution to do what I need?
    Thanks in advance for your help!

    Hi everyone,
    I've been looking for a way to solve this for a week now, without any much success... and I've finally decided to ask the Java gurus for a solution! :-)
    Here's what I am basically trying to do:
    I have several jar files in which there are only compiled code (.class).
    In every class, there are 2 constants (declared as static final String) that I would like to retrieve (one is the version and the other the date of the last modification).
    My goal is to print a list of all the classes in the jar files with the values of these 2 constants for each class.
    The solution that I have right now to do this does not work properly: for now, I read all the elements of the classpath, check if these are jar files, and if so, I look into each one and load all the classes one by one and print the results.
    The problem with this is that it uses the method Class.forName(className) and as some classes are unfortunately present in many jar files (2 or 3 copies), once the classes have been loaded, then it won't be "reloaded".
    Without the possibility to "reload" these classes, I cannot see inconsistencies in the versions of the classes present in the jar files.
    I have read many articles, and I thought that I could then use a custom classloader and create a new instance of this classloader for each jar file.
    2 problems with this:
    - according to many posts in the different forums I have read, the jar files should not appear in the CLASSPATH (but this would be easier for me if I could use it...)
    - some classes will not be loaded if some classes (present in other jar files) are not loaded... and this makes things really really complicated to implement...
    So, I thought that I was maybe doing this the wrong way, and that there might be an easy way out of this...
    In fact, I do not need to load the classes... all I need to do, is take a sneak peek at the constants and print their values... and that's it!
    Somehow, I think that this is possible to retrieve the values of compile time constants (declared as static final String) as I can see that with Eclipse (when opening a jar file).
    So, my question is: how can I do that within my java application?
    Or maybe there is another easier solution to do what I need?
    Thanks in advance for your help!

  • *Added* code to existing source file, compiled it, and class file shrunk

    Another newbie here. Fortunately, my classpath is ok, so I'm able to compile a .java file.
    I added one line of code (System.out.println) to write the value of a variable to a log. After compiling with javac, I noticed that the resulting [new] class file was smaller than the existing class file. I looked at each of the class files with Textpad. It's gibberish, but I quickly saw that a large block of code was missing in the new class file, even though the size of the source file had been increased.
    There is a difference, however, between how the two class files were created. The existing class file was compiled (along with many others) by exporting an .EAR file from a development environment (WSAD) to the WebSphere Administrator Console. Conversely, I am now compiling the same source file with javac on my machine.
    I suspect that this is the reason why I can add code to a .java file, compile it, and have the resulting class file actually lose code. Even if I am correct, I don't know what to do about it.
    Does anyone have an idea?
    Regards,
    Daniel T.

    Thank you both for your replies. I've read many posts over the past few months, and I know how important it is to provide as much info as possible, when asking a question here. That said, I have another tasty tidbit...
    After replacing the existing (larger) class file with the new (smaller) class file, my application now produces this:
    "*Error 500: LinkageError while defining class*..." [name of class]
    *"...(Unsupported major.minor version 50.0) This is often caused by having a class defined at multiple locations within the classloader hierarchy. Other potential causes include compiling against an older or newer version of the class that has an incompatible method signature. Dumping the current context classloader hierarchy: ==> indicates defining classloader ==>[0] com.ibm.ws.classloader.CompoundClassLoader@6bd156d5 Local ClassPath:"*
    ...[the entire classpath]...
    Original exception--- java.lang.UnsupportedClassVersionError:
    I'm guessing that my focus should mostly be on the 'Original exception', and maybe I need to revisit the JRE or JDK or JVM (these terms are somewhat nebulous to me, so please forgive me using them interchangeably) on my machine. For now, I'll just keep trying stuff. Thanks again for the replies!
    Regards,
    Daniel T.

  • Does PLX file have any compiled code

    What exactly is a plx file. I created a plx file giving the COMPILE_ALL option as
    NO. I saved the plx and the pll in the libraries directory .
    When i run my form i can see the changes. Does the plx have any code or is it just
    a referece to the pll file.
    thanks

    the point with the security is a good point. I appended it in my blog:
    our projects are normally applications for customers and never standard-software. So we have no problem with security. The application server with the deployed forms and libraries is secured as strong as the database, so that only admins have access.
    ### this is added in the blog - try the example on your machine ###
    Other developer say: plx is only the compiled code, so nobody can steal my sourcecode or something valuable from within the code - in that case try this example:
    Create a library with a package and this variable:
    <pre>
    PACKAGE Const IS
    HiddenPW CONSTANT Varchar2 (100) := 'HiddenPW';
    END Const;
    </pre>
    Generate the plx and open it in an editor. Search for "HiddenPW". You'll find the name of the variable and the string associated to the var. That's not save in my eyes. Only the sourcecode is hidden. I think, that a pll on an Application Server is secure enough.
    If the application is standard software and is not for free, then you can use the plx-technique :-)
    ###

  • Running DS-5 armcc compiled code (PIC) under Windows EC 2013

    Hi All,
    i just wanted to know if it is generally (officially) supported to run code that is compiled via the armcc (5.03) from DS-5 under Windows Embedded Compact 2013. Or if this is discouraged (reasons?).
    The problem i have:
    The bootloader contains some code that must be run during Windows EC Startup. So this code is loaded from the Flash, copied to RAM (reserved and commited via VirtualAlloc and marked as executable) and then the functions are called via FunctionPointers.
    The code is compiled and linked as position independent and the stack base register is set accordingly before any function is called via pointer and reset when it returns.
    This works in about 9 out of 10 tests without problems. But sometimes i get all sort of exceptions (Data Abort, Prefetch Abort, Unknown Instruction, ...). Most (if not all) of the time they occur when the position independent code runs on one of the two
    cores.
    The code runs on an i.MX6DQ (dual).
    If i only enable one core, i can't reproduce the problem (i assume that multicore-handling and multithreading in WinEC 2013 Update 10 is really well tested and works without problems, so this can't be the real reason).
    I've thoroughly checked and debugged the code, i'm really sure there is no illegal access or other problem with the code itself.
    Could it be a problem to call code compiled via DS-5 armcc? I've compared assembler code that Visual Studio/Platform Builder generates with code that DS-5 generates (but i'm no assembler expert). I can't see any obvious special code that is added by Visual
    Studio/Platform Builder (i.e. that functions need) that is not there in the DS-5 code.
    Best Regards
    Sebastian

    So I think you could be able to image some code for ROM from another compiler and without knowledge of Windows CE. However, if the code will be called from Windows CE, this becomes more difficult requiring very careful isolation from the
    MMU state, processor state, kernel/user mode, etc. Code that works great when called from the bootloader might not work at all from Windows CE itself. The main problem with mixing code from different compilers is the object file format and conventions for
    entry and public names. Very unlikely that you'd be able to "link" code from any other compiler with PB-compiled code.
    You might think about the x86 image which can easily call BIOS from the bootloader but which can't even begin to call BIOS from CE itself. The problem isn't the compiler (which is different), but the operating environment differences and assumptions.
    Paul T.

  • Troublesho​oting compiled code?

    I am using Fieldpont modules to control some lab tests.  Since we have a few separate tests, we've decided to use compiled code to cut down on Labview costs. 
    The issue I'm having is when I have an error in the compiled code on a new install.  Is there any way to see where in the code the error is occurring?  Maybe some sort of test run mode or something? I know the code interacts with the windows registry as well as a few files on the hard drive. I think this is where the problem is. Unfortunately, I did not write the code, so I'm not certain where the problem could be.  I have always been able to easily troubleshoot issues with code when running the full Labview software, but with the compiled code, you can't see the block diagram.
    Any help would be greatly appreciated.
    Tony

    Hi Scubadude,
    I have included a link to a help file that walks through how to debug applications on remote systems.
    Debugging Applications and Shared Libraries:
    http://zone.ni.com/reference/en-XX/help/371361J-01​/lvhowto/debug_apps_dlls/
    Wear
    National Instruments
    Product Support Engineer

  • Error during distribution for compiled code generation-Reply

    Hi,
    Looking at your error messages, it looks as though your build is failing during the code generation phase of an autocompilation. To determine why the code generator crashed, either look in the $FORTE_ROOT/log/forte_ex*.log files or don't use autocompilation and use fcompile.
    There are many reasons why the code generator could crash. Some of the things I've come across are running out of memory and trying to find invalid classes.
    If its the invalid class problem you'll find a message like:
    Generating code for partition BLTCustomWindow_cl0_Part1.
    ERROR: Exiting due to following exception:
    SYSTEM ERROR: Client partition FTCompile_cl0_Client was terminated by escaped
    exception. See the remainder of the error stack for more information.
    Class: qqsp_ResourceException
    Error #: [1001, 3]
    Detected at: qqrt_ForteExecAgent::LoadPartition at 1
    Error Time: Tue Aug 18 17:52:44
    Exception occurred (locally) on partition "Forte_Executor", (partitionId =
    9EA25A00-36FE-11D2-87C4-502F15BEAA77:0x1, taskId =
    [9EA25A00-36FE-11D2-87C4-502F15BEAA77:0x1.6]) in application
    "FTCompile_cl0", pid 28331 on node stardev in environment <unknown>.
    FATAL ERROR: Invalid class ProductBMServices.ProductSecurityMgrProxy
    (0x4ecd,0x19a)
    Class: qqsp_ImplementationException
    Detected at: qqcg_TRclass::SetClass at 2
    Last TOOL statement: method ForteCompiler.ProcessPGF
    Error Time: Tue Aug 18 17:52:44
    Exception occurred (locally) on partition "Forte_Executor",
    (partitionId = 9EA25A00-36FE-11D2-87C4-502F15BEAA77:0x1, taskId =
    [9EA25A00-36FE-11D2-87C4-502F15BEAA77:0x1.6]) in application
    "FTCompile_cl0", pid 28331 on node stardev in environment <unknown>.
    The solution for this instance is to clean up the invalid classes using the c4tstdrv utility.
    c4tstdrv > setrepos star8
    c4tstdrv > setwork dmcompiledbuild
    c4tstdrv > open
    Type Service Flags Level
    err sh * 255
    trc rp 1 4
    c4tstdrv > findproj productbmservices
    c4tstdrv > cleanuprtclasses
    Removing extraneous RTclass ProductShootingLocationMgrProxy
    Removing extraneous RTclass PRTerritoryBaseMgrProxy
    Removing extraneous RTclass PRTerritoryMgrProxy
    Removing extraneous RTclass TalentBaseMgrProxy
    Removing extraneous RTclass TalentTypeMgrProxy
    Removing extraneous RTclass TitleTypeBaseMgrProxy
    Removing extraneous RTclass TitleTypeMgrProxy
    Removing extraneous RTclass ProductSecurityBaseClass
    Removing extraneous RTclass ProductSecurityBaseQuery
    Removing extraneous RTclass ProductSecurityQuery
    Removing extraneous RTclass ProductSecurityMgrProxy
    c4tstdrv > commit
    c4tstdrv > exit
    Integrate the changes to the workspace, start the build again and this should have cured the problem.
    However, its hard to know what the cause of your problem is without seeing the output in the log files.
    Good luck.
    Mark Carruthers
    20th Century Fox
    "Forte Consultants" <[email protected]> 01/22/99 08:35am >>>
    Hi,
    I'm doing application distribution for my application using a fscript
    script and am forcing compilation on 2 of my partitions.
    This I have been doing from quite sometime successfully. Recently I
    developed a new service and plugged it into my application for
    deployment.
    I'm successfully able to distribute & deploy the interpreted code. But
    I'm getting a long list of system errors when I try doing distribution
    for compiled code. And I see only one of the .exe generated instead of
    two because of which I'm unable to go ahead with installaion. I would
    appreciate if anybody let me know why this's happening ?. The following
    is the main chunk of this error list.
    Thanks in advance.
    --Anand Ramaswamy
    SYSTEM ERROR: Cannot resolve the distributed reference for an object of
    class
    (qqlo_Object) named (<Unknown>) for the reasons below.
    Class: qqsp_DistAccessException
    Error #: [601, 144]
    Detected at: qqdo_ProxyMgr::ResolveOutGoingProxy at 10
    Error Time: Fri Jan 22 10:44:22
    Exception occurred (locally) on partition "Fscript_cl9_Client",
    (partitionId = 32271CD0-4E62-11D2-AF29-9F40A9E1AA77:0x614:0x1,
    taskId =
    [32271CD0-4E62-11D2-AF29-9F40A9E1AA77:0x614:0x1.1]) in application
    "fscript", pid 4b81 on node MOOSUP in environment IGTSDENV.
    SYSTEM ERROR: Can not initially communicate with the object named
    (Unnamed),
    which is supposed to be in partition
    (32271CD0-4E62-11D2-AF29-9F40A9E1AA77:0x616:0x1).
    Class: qqsp_DistAccessException
    Error #: [601, 140]
    Detected at: qqdo_ProxyMgr::CheckAccess at 1
    Error Time: Fri Jan 22 10:44:22
    Exception occurred (locally) on partition "Fscript_cl9_Client",
    (partitionId = 32271CD0-4E62-11D2-AF29-9F40A9E1AA77:0x614:0x1,
    taskId =
    [32271CD0-4E62-11D2-AF29-9F40A9E1AA77:0x614:0x1.1]) in application
    "fscript", pid 4b81 on node MOOSUP in environment IGTSDENV.
    SYSTEM ERROR: Attempt to send to unknown destination partition
    (32271CD0-4E62-11D2-AF29-9F40A9E1AA77:0x616:0x1).
    Class: qqsp_DistAccessException
    Error #: [601, 102]
    Detected at: qqdo_PartitionMgr::SendMsg at 1
    Error Time: Fri Jan 22 10:44:22
    Distributed method called: qqdo_InternalMessage.<Message> (object
    name
    Unnamed) from partition "CodeGenerationSvc_cl0_Part1-router",
    (partitionId
    = 32271CD0-4E62-11D2-AF29-9F40A9E1AA77:0x615:0x1, taskId =
    [32271CD0-4E62-11D2-AF29-9F40A9E1AA77:0x615.2]) in application
    "CodeGenerationSvc_cl0", pid 7487 on node MOOSUP in environment
    IGTSDENV
    Exception occurred (locally) on partition "Fscript_cl9_Client",
    (partitionId = 32271CD0-4E62-11D2-AF29-9F40A9E1AA77:0x614:0x1,
    taskId =
    [32271CD0-4E62-11D2-AF29-9F40A9E1AA77:0x614:0x1.1]) in application
    "fscript", pid 4b81 on node MOOSUP in environment IGTSDENV.
    SYSTEM ERROR: Partition (32271CD0-4E62-11D2-AF29-9F40A9E1AA77:0x616:0x1)
    no
    longer exists. The process associated with the partition probably
    terminated.
    Class: qqsp_DistAccessException
    Detected at: qqdo_PartitionMgr::CheckStarted at 1
    Error Time: Fri Jan 22 10:44:22
    Exception occurred (locally) on partition "Fscript_cl9_Client",
    (partitionId = 32271CD0-4E62-11D2-AF29-9F40A9E1AA77:0x614:0x1,
    taskId =
    [32271CD0-4E62-11D2-AF29-9F40A9E1AA77:0x614:0x1.1]) in application
    "fscript", pid 4b81 on node MOOSUP in environment IGTSDENV.
    SYSTEM ERROR: This method invocation is being retried because the
    failures
    shown below and the fact that the dialog duration is MESSAGE. This is
    try #2.
    Class: qqsp_DistAccessException
    Error #: [601, 54]
    Detected at: qqdo_Message::Failed at 1
    Error Time: Fri Jan 22 10:44:19
    Exception occurred (locally) on partition "Fscript_cl9_Client",
    (partitionId = 32271CD0-4E62-11D2-AF29-9F40A9E1AA77:0x614:0x1,
    taskId =
    [32271CD0-4E62-11D2-AF29-9F40A9E1AA77:0x614:0x1.1]) in application
    "fscript", pid 4b81 on node MOOSUP in environment IGTSDENV.
    SYSTEM ERROR: The load balanced router is disabled or has no members.
    This
    can happen if all of the members terminated or failed.
    Class: qqsp_DistAccessException
    Error #: [601, 161]
    Detected at: qqdo_LbRouter::Route at 1
    Error Time: Fri Jan 22 10:44:19
    Distributed method called: GenerationMgrProxy.GeneratePartitionCode
    (object name
    site/codegenerationsvc_cl0/codegenerationsvc_cl0-codegensvc)
    from partition "Fscript_cl9_Client", (partitionId =
    32271CD0-4E62-11D2-AF29-9F40A9E1AA77:0x614:0x1, taskId =
    [32271CD0-4E62-11D2-AF29-9F40A9E1AA77:0x614.2]) in application
    "fscript",
    pid 4b81 on node MOOSUP in environment IGTSDENV
    Exception occurred (remotely) on partition
    "CodeGenerationSvc_cl0_Part1-router", (partitionId =
    32271CD0-4E62-11D2-AF29-9F40A9E1AA77:0x615:0x1, taskId =
    [32271CD0-4E62-11D2-AF29-9F40A9E1AA77:0x614:0x1.10]) in
    application
    "CodeGenerationSvc_cl0", pid 7487 on node MOOSUP in environment
    IGTSDENV.
    SYSTEM ERROR: This method invocation is being retried because the
    failures
    shown below and the fact that the dialog duration is MESSAGE. This is
    try #1.
    Class: qqsp_DistAccessException
    Error #: [601, 54]
    Detected at: qqdo_Message::Failed at 1
    Error Time: Fri Jan 22 10:44:15
    Exception occurred (locally) on partition "Fscript_cl9_Client",
    (partitionId = 32271CD0-4E62-11D2-AF29-9F40A9E1AA77:0x614:0x1,
    taskId =
    [32271CD0-4E62-11D2-AF29-9F40A9E1AA77:0x614:0x1.1]) in application
    "fscript", pid 4b81 on node MOOSUP in environment IGTSDENV.
    SYSTEM ERROR: Access to a load balanced router member (which is a
    service
    object) failed for the reasons below.
    Class: qqsp_DistAccessException
    Error #: [601, 162]
    Detected at: qqdo_LbRouter::Route at 2
    Error Time: Fri Jan 22 10:44:15
    Distributed method called: GenerationMgrProxy.GeneratePartitionCode
    (object name
    site/codegenerationsvc_cl0/codegenerationsvc_cl0-codegensvc)
    from partition "Fscript_cl9_Client", (partitionId =
    32271CD0-4E62-11D2-AF29-9F40A9E1AA77:0x614:0x1, taskId =
    [32271CD0-4E62-11D2-AF29-9F40A9E1AA77:0x614.3]) in application
    "fscript",
    pid 4b81 on node MOOSUP in environment IGTSDENV
    Distributed method called: qqlo_Object.<Message> (object name
    Unnamed)
    from partition "Forte_Executor", (partitionId =
    32271CD0-4E62-11D2-AF29-9F40A9E1AA77:0x615, taskId =
    [32271CD0-4E62-11D2-AF29-9F40A9E1AA77:0x615.12]) in application
    "CodeGenerationSvc_cl0", pid 7487 on node MOOSUP in environment
    IGTSDENV
    Exception occurred (remotely) on partition
    "CodeGenerationSvc_cl0_Part1-router", (partitionId =
    32271CD0-4E62-11D2-AF29-9F40A9E1AA77:0x615:0x1, taskId =
    [32271CD0-4E62-11D2-AF29-9F40A9E1AA77:0x614:0x1.10]) in
    application
    "CodeGenerationSvc_cl0", pid 7487 on node MOOSUP in environment
    IGTSDENV.
    SYSTEM ERROR: Cannot resolve the distributed reference for an object of
    class
    (qqlo_Object) named (<Unknown>) for the reasons below.
    Class: qqsp_DistAccessException
    Error #: [601, 144]
    Detected at: qqdo_ProxyMgr::ResolveOutGoingProxy at 10
    Error Time: Fri Jan 22 10:44:15
    Distributed method called: qqlo_Object.<Message> (object name
    Unnamed)
    from partition "Forte_Executor", (partitionId =
    32271CD0-4E62-11D2-AF29-9F40A9E1AA77:0x615, taskId =
    [32271CD0-4E62-11D2-AF29-9F40A9E1AA77:0x615.12]) in application
    "CodeGenerationSvc_cl0", pid 7487 on node MOOSUP in environment
    IGTSDENV
    Exception occurred (remotely) on partition
    "CodeGenerationSvc_cl0_Part1-router", (partitionId =
    32271CD0-4E62-11D2-AF29-9F40A9E1AA77:0x615:0x1, taskId =
    [32271CD0-4E62-11D2-AF29-9F40A9E1AA77:0x614:0x1.10]) in
    application
    "CodeGenerationSvc_cl0", pid 7487 on node MOOSUP in environment
    IGTSDENV.
    SYSTEM ERROR: This distributed reference was previously invalidated due
    to the
    reasons below.
    Class: qqsp_DistAccessException
    Error #: [601, 132]
    Detected at: qqdo_ProxyMgr::ResolveOutGoingProxy at 3
    Error Time: Fri Jan 22 10:44:15
    Exception occurred (remotely) on partition
    "CodeGenerationSvc_cl0_Part1-router", (partitionId =
    32271CD0-4E62-11D2-AF29-9F40A9E1AA77:0x615:0x1, taskId =
    [32271CD0-4E62-11D2-AF29-9F40A9E1AA77:0x614:0x1.10]) in
    application
    "CodeGenerationSvc_cl0", pid 7487 on node MOOSUP in environment
    IGTSDENV.
    INFORMATION: The connection to the partner was terminated by the
    Communication
    Manager for the reasons below.
    Class: qqsp_DistAccessException
    Detected at: qqdo_PartitionMgr::StopLocation at 1
    Error Time: Fri Jan 22 10:44:15
    Exception occurred (remotely) on partition
    "CodeGenerationSvc_cl0_Part1-router", (partitionId =
    32271CD0-4E62-11D2-AF29-9F40A9E1AA77:0x615:0x1, taskId =
    [32271CD0-4E62-11D2-AF29-9F40A9E1AA77:0x614:0x1.10]) in
    application
    "CodeGenerationSvc_cl0", pid 7487 on node MOOSUP in environment
    IGTSDENV.
    INFORMATION: Network partner closed connection. This usually means the
    process at the other end of the wire failed. Please go look there and
    find
    out why.
    Class: qqsp_DistAccessException
    Detected at: qqcm_HoseFSM::ReceivedClose at 2
    Error Time: Fri Jan 22 10:44:15
    Exception occurred (remotely) on partition
    "CodeGenerationSvc_cl0_Part1-router", (partitionId =
    32271CD0-4E62-11D2-AF29-9F40A9E1AA77:0x615:0x1, taskId =
    [32271CD0-4E62-11D2-AF29-9F40A9E1AA77:0x614:0x1.10]) in
    application
    "CodeGenerationSvc_cl0", pid 7487 on node MOOSUP in environment
    IGTSDENV.
    INFORMATION: Asynchronous Failure: Recieved a close from the network
    partner:
    Internet Location - Host: moosup.iroquois.com Port Number: 2504 Dot:
    193.1.11.26 %LINKDISCON, network partner disconnected logical link
    Event 4
    Class: qqsp_DistAccessException
    Detected at: qqcm_HoseFSM::ReceivedClose at 1
    Error Time: Fri Jan 22 10:44:15
    Exception occurred (remotely) on partition
    "CodeGenerationSvc_cl0_Part1-router", (partitionId =
    32271CD0-4E62-11D2-AF29-9F40A9E1AA77:0x615:0x1, taskId =
    [32271CD0-4E62-11D2-AF29-9F40A9E1AA77:0x614:0x1.10]) in
    application
    "CodeGenerationSvc_cl0", pid 7487 on node MOOSUP in environment
    IGTSDENV.
    SYSTEM ERROR: This method invocation is being retried because the
    failures
    shown below and the fact that the dialog duration is MESSAGE. This is
    try #1.
    Class: qqsp_DistAccessException
    Error #: [601, 54]
    Detected at: qqdo_Message::Failed at 1
    Error Time: Fri Jan 22 10:44:15
    Exception occurred (remotely) on partition
    "CodeGenerationSvc_cl0_Part1-router", (partitionId =
    32271CD0-4E62-11D2-AF29-9F40A9E1AA77:0x615:0x1, taskId =
    [32271CD0-4E62-11D2-AF29-9F40A9E1AA77:0x614:0x1.10]) in
    application
    "CodeGenerationSvc_cl0", pid 7487 on node MOOSUP in environment
    IGTSDENV.
    INFORMATION: The connection to the partner was terminated by the
    Communication
    Manager for the reasons below.
    Class: qqsp_DistAccessException
    Detected at: qqdo_PartitionMgr::StopLocation at 1
    Error Time: Fri Jan 22 10:44:15
    Distributed method called: qqlo_Object.<Message> (object name
    Unnamed)
    from partition "Forte_Executor", (partitionId =
    32271CD0-4E62-11D2-AF29-9F40A9E1AA77:0x615, taskId =
    [32271CD0-4E62-11D2-AF29-9F40A9E1AA77:0x615.12]) in application
    "CodeGenerationSvc_cl0", pid 7487 on node MOOSUP in environment
    IGTSDENV
    Exception occurred (remotely) on partition
    "CodeGenerationSvc_cl0_Part1-router", (partitionId =
    32271CD0-4E62-11D2-AF29-9F40A9E1AA77:0x615:0x1, taskId =
    [32271CD0-4E62-11D2-AF29-9F40A9E1AA77:0x614:0x1.10]) in
    application
    "CodeGenerationSvc_cl0", pid 7487 on node MOOSUP in environment
    IGTSDENV.
    INFORMATION: Network partner closed connection. This usually means the
    process at the other end of the wire failed. Please go look there and
    find
    out why.
    Class: qqsp_DistAccessException
    Detected at: qqcm_HoseFSM::ReceivedClose at 2
    Error Time: Fri Jan 22 10:44:15
    Exception occurred (remotely) on partition
    "CodeGenerationSvc_cl0_Part1-router", (partitionId =
    32271CD0-4E62-11D2-AF29-9F40A9E1AA77:0x615:0x1, taskId =
    [32271CD0-4E62-11D2-AF29-9F40A9E1AA77:0x614:0x1.10]) in
    application
    "CodeGenerationSvc_cl0", pid 7487 on node MOOSUP in environment
    IGTSDENV.
    INFORMATION: Asynchronous Failure: Recieved a close from the network
    partner:
    Internet Location - Host: moosup.iroquois.com Port Number: 2504 Dot:
    193.1.11.26 %LINKDISCON, network partner disconnected logical link
    Event 4
    Class: qqsp_DistAccessException
    Detected at: qqcm_HoseFSM::ReceivedClose at 1
    Error Time: Fri Jan 22 10:44:15
    Exception occurred (remotely) on partition
    "CodeGenerationSvc_cl0_Part1-router", (partitionId =
    32271CD0-4E62-11D2-AF29-9F40A9E1AA77:0x615:0x1, taskId =
    [32271CD0-4E62-11D2-AF29-9F40A9E1AA77:0x614:0x1.10]) in
    application
    "CodeGenerationSvc_cl0", pid 7487 on node MOOSUP in environment
    IGTSDENV.
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    Hi,
    If this INCLUDE is in a function group go the MAIN program and activate from there.
    Can you list out the include name?

  • JSP precompilation and my .java files compilation issues /  building WAR file using ANT

    Hello.
    I am new to working with WAR files and the whole process of it. A little
    background on what we are using. We are using, WLS 6.1 SP3. I am using the
    ant.bat that is supplied in the bin directory of the WLS install.
    I am trying to work with ANT and getting it to build the file. I am making
    progress, but at a point where I am having trouble getting my java code
    files to compile using ant. I am having one issue and looking to do one
    other item.
    1) I would like to precompile the JSPs if possible prior to putting into the
    WAR file. Not sure if this is done or not, but there was a utility when I
    was working with ibm's app server that gave us the ability to do a batch
    complile. Was thinking that maybe a similair concept is possibly here.
    2) Having issue getting ant to compile code properly. In the compile
    section of the build.xml file for ant, I tell it where the source files are,
    and the destionation folder for the compiled class files. I then try to set
    the classpath so that it finds the .jar files that are necessary for my
    source files to complile. But, it won't find them. And not sure how come.
    I may be going about this all wrong, but dont know. Here is the compile
    section of the build.xml I am using:
    <target name="compile" depends="prepare">
    <javac srcdir="classes" destdir="${deploy.home}/WEB-INF/classes"
    classpath="$(lib.home)"
    debug="on" optimize="on" deprecation="off"/>
    </target>
    One note, I've tried many different items in the classpath line, which
    don't work. if I do *.jar it fails at complie time, invalid argument. As
    well as if I use *.* and so on. if I list the explicit file names, it still
    doesn't seem to find them.
    I was wondering if anyone could help, if you need anymore information let me
    know, I can send the entire build.xml if necessary. I may be missing
    items, seeing that this is my first try at using ANT.
    Any help is appreciated and thanks in advance. Hopefully not sounding too
    off the wall. Hopefully get some clarification and understanding.
    Thank you.
    Kevin.

    Kevin Price wrote:
    Hello.
    I am new to working with WAR files and the whole process of it. A little
    background on what we are using. We are using, WLS 6.1 SP3. I am using the
    ant.bat that is supplied in the bin directory of the WLS install.
    I am trying to work with ANT and getting it to build the file. I am making
    progress, but at a point where I am having trouble getting my java code
    files to compile using ant. I am having one issue and looking to do one
    other item.
    1) I would like to precompile the JSPs if possible prior to putting into the
    WAR file. Not sure if this is done or not, but there was a utility when I
    was working with ibm's app server that gave us the ability to do a batch
    complile. Was thinking that maybe a similair concept is possibly here.you can use weblogic.jspc
    http://e-docs.bea.com/wls/docs70/jsp/reference.html#57794
    or just set the precompile flag in weblogic.xml
    You can configure WebLogic Server to precompile your JSPs when a Web
    Application is deployed or re-deployed or when WebLogic Server starts up
    by setting the precompile parameter to true in the <jsp-descriptor>
    element of the weblogic.xml deployment descriptor.
    >
    2) Having issue getting ant to compile code properly. In the compile
    section of the build.xml file for ant, I tell it where the source files are,
    and the destionation folder for the compiled class files. I then try to set
    the classpath so that it finds the .jar files that are necessary for my
    source files to complile. But, it won't find them. And not sure how come.
    I may be going about this all wrong, but dont know. Here is the compile
    section of the build.xml I am using:
    <target name="compile" depends="prepare">
    <javac srcdir="classes" destdir="${deploy.home}/WEB-INF/classes"
    classpath="$(lib.home)"
    debug="on" optimize="on" deprecation="off"/>
    </target>
    maybe because you are not using curly braces there on lib.home??
    if you do it the way above, you would have to list all your jars
    classpath="$(lib.home)\lib1.jar:$(lib.home)\lib2.jar"
    or you can nest
    <javac srcdir="classes" destdir="${deploy.home}/WEB-INF/classes"
    debug="on" optimize="on" deprecation="off">
         <classpath>
              <fileset dir="${lib.home}" includes="*.jar" />
         </classpath>
    </javac>
    One note, I've tried many different items in the classpath line, which
    don't work. if I do *.jar it fails at complie time, invalid argument. As
    well as if I use *.* and so on. if I list the explicit file names, it still
    doesn't seem to find them.
    I was wondering if anyone could help, if you need anymore information let me
    know, I can send the entire build.xml if necessary. I may be missing
    items, seeing that this is my first try at using ANT.
    Any help is appreciated and thanks in advance. Hopefully not sounding too
    off the wall. Hopefully get some clarification and understanding.
    Thank you.
    Kevin.

  • Problem compiling code blocks [SOLVED]

    It fails when I try to compile it:
    Error:
    libtool: link: cannot find the library `' or unhandled argument `blocks/src/codeblocks-8.02/src/src/wxAUI'
    make[3]: *** [codeblocks] Error 1
    make[3]: Leaving directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/src'
    make[2]: *** [all-recursive] Error 1
    make[2]: Leaving directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/src'
    make[1]: *** [all-recursive] Error 1
    make[1]: Leaving directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src'
    make: *** [all-recursive] Error 1
    ==> ERROR: Build Failed.
    Aborting...
    PKGBUILD
    # Contributor: Robert Hollencamp <[email protected]>
    # Contributor: Daniel J Griffiths <[email protected]>
    # Maintainer: Stefan Husmann <[email protected]>
    pkgname=codeblocks
    pkgver=8.02
    pkgrel=7
    pkgdesc="An open source and cross-platform C/C++ IDE"
    arch=('i686' 'x86_64')
    url="http://www.codeblocks.org"
    license=('GPL3')
    depends=('wxgtk' 'bzip2')
    makedepends=('zip')
    options=('!libtool')
    source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver-src.tar.bz2)
    md5sums=('ac15b4b3de50d7650c2f7a8dbcb30f88')
    build() {
    cd $pkgname-$pkgver || return 1
    ./configure --prefix=/usr --with-contrib-plugins=all || return 1
    make || return 1
    make DESTDIR="$pkgdir" install || return 1
    rm $pkgdir/usr/share/$pkgname/plugins/*.la
    I really don´t have a clue on what is wrong?
    Last edited by neuwerld (2009-05-07 10:51:27)

    I have already installed the wxgtk package.
    More build output:
    ==> Making package: codeblocks 8.02-7 x86_64 (Thu May 7 12:09:46 CEST 2009)
    ==> Checking Runtime Dependencies...
    ==> Checking Buildtime Dependencies...
    ==> Retrieving Sources...
    -> Found codeblocks-8.02-src.tar.bz2 in build dir
    ==> Validating source files with md5sums...
    codeblocks-8.02-src.tar.bz2 ... Passed
    ==> Extracting Sources...
    -> bsdtar -x -f codeblocks-8.02-src.tar.bz2
    ==> Removing existing pkg/ directory...
    ==> Entering fakeroot environment...
    ==> Starting build()...
    checking build system type... x86_64-unknown-linux-gnu
    checking host system type... x86_64-unknown-linux-gnu
    checking target system type... x86_64-unknown-linux-gnu
    checking for a BSD-compatible install... /bin/install -c
    checking whether build environment is sane... yes
    /bin/sh: /home/neuwerld/Desktop/code: No such file or directory
    configure: WARNING: `missing' script is too old or missing
    checking for a thread-safe mkdir -p... /bin/mkdir -p
    checking for gawk... gawk
    checking whether make sets $(MAKE)... yes
    checking for g++... g++
    checking for C++ compiler default output file name... a.out
    checking whether the C++ compiler works... yes
    checking whether we are cross compiling... no
    checking for suffix of executables...
    checking for suffix of object files... o
    checking whether we are using the GNU C++ compiler... yes
    checking whether g++ accepts -g... yes
    checking for style of include used by make... GNU
    checking dependency style of g++... gcc3
    checking for gcc... gcc
    checking whether we are using the GNU C compiler... yes
    checking whether gcc accepts -g... yes
    checking for gcc option to accept ISO C89... none needed
    checking dependency style of gcc... gcc3
    checking how to run the C preprocessor... gcc -E
    checking for gcc... (cached) gcc
    checking whether we are using the GNU C compiler... (cached) yes
    checking whether gcc accepts -g... (cached) yes
    checking for gcc option to accept ISO C89... (cached) none needed
    checking dependency style of gcc... (cached) gcc3
    checking whether gcc and cc understand -c and -o together... yes
    checking for a BSD-compatible install... /bin/install -c
    checking whether ln -s works... yes
    checking whether make sets $(MAKE)... (cached) yes
    checking for gawk... (cached) gawk
    checking for a sed that does not truncate output... /bin/sed
    checking for grep that handles long lines and -e... /bin/grep
    checking for egrep... /bin/grep -E
    checking for ld used by gcc... /usr/bin/ld
    checking if the linker (/usr/bin/ld) is GNU ld... yes
    checking for /usr/bin/ld option to reload object files... -r
    checking for BSD-compatible nm... /usr/bin/nm -B
    checking how to recognize dependent libraries... pass_all
    checking for ANSI C header files... yes
    checking for sys/types.h... yes
    checking for sys/stat.h... yes
    checking for stdlib.h... yes
    checking for string.h... yes
    checking for memory.h... yes
    checking for strings.h... yes
    checking for inttypes.h... yes
    checking for stdint.h... yes
    checking for unistd.h... yes
    checking dlfcn.h usability... yes
    checking dlfcn.h presence... yes
    checking for dlfcn.h... yes
    checking how to run the C++ preprocessor... g++ -E
    checking for g77... no
    checking for xlf... no
    checking for f77... no
    checking for frt... no
    checking for pgf77... no
    checking for cf77... no
    checking for fort77... no
    checking for fl32... no
    checking for af77... no
    checking for xlf90... no
    checking for f90... no
    checking for pgf90... no
    checking for pghpf... no
    checking for epcf90... no
    checking for gfortran... gfortran
    checking whether we are using the GNU Fortran 77 compiler... yes
    checking whether gfortran accepts -g... yes
    checking the maximum length of command line arguments... 1572864
    checking command to parse /usr/bin/nm -B output from gcc object... ok
    checking for objdir... .libs
    checking for ar... ar
    checking for ranlib... ranlib
    checking for strip... strip
    checking if gcc supports -fno-rtti -fno-exceptions... no
    checking for gcc option to produce PIC... -fPIC
    checking if gcc PIC flag -fPIC works... yes
    checking if gcc static flag -static works... yes
    checking if gcc supports -c -o file.o... yes
    checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
    checking whether -lc should be explicitly linked in... no
    checking dynamic linker characteristics... GNU/Linux ld.so
    checking how to hardcode library paths into programs... immediate
    checking whether stripping libraries is possible... yes
    checking if libtool supports shared libraries... yes
    checking whether to build shared libraries... yes
    checking whether to build static libraries... no
    configure: creating libtool
    appending configuration tag "CXX" to libtool
    checking for ld used by g++... /usr/bin/ld -m elf_x86_64
    checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes
    checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
    checking for g++ option to produce PIC... -fPIC
    checking if g++ PIC flag -fPIC works... yes
    checking if g++ static flag -static works... yes
    checking if g++ supports -c -o file.o... yes
    checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
    checking dynamic linker characteristics... GNU/Linux ld.so
    checking how to hardcode library paths into programs... immediate
    appending configuration tag "F77" to libtool
    checking if libtool supports shared libraries... yes
    checking whether to build shared libraries... yes
    checking whether to build static libraries... no
    checking for gfortran option to produce PIC... -fPIC
    checking if gfortran PIC flag -fPIC works... yes
    checking if gfortran static flag -static works... yes
    checking if gfortran supports -c -o file.o... yes
    checking whether the gfortran linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
    checking dynamic linker characteristics... GNU/Linux ld.so
    checking how to hardcode library paths into programs... immediate
    checking for dirent.h that defines DIR... yes
    checking for library containing opendir... none required
    checking for ANSI C header files... (cached) yes
    checking fcntl.h usability... yes
    checking fcntl.h presence... yes
    checking for fcntl.h... yes
    checking limits.h usability... yes
    checking limits.h presence... yes
    checking for limits.h... yes
    checking for stdlib.h... (cached) yes
    checking for string.h... (cached) yes
    checking sys/param.h usability... yes
    checking sys/param.h presence... yes
    checking for sys/param.h... yes
    checking for unistd.h... (cached) yes
    checking malloc.h usability... yes
    checking malloc.h presence... yes
    checking for malloc.h... yes
    checking for stdbool.h that conforms to C99... yes
    checking for _Bool... yes
    checking for an ANSI C-conforming const... yes
    checking for inline... inline
    checking for size_t... yes
    checking whether time.h and sys/time.h may both be included... yes
    checking for working volatile... yes
    checking whether closedir returns void... no
    checking for stdlib.h... (cached) yes
    checking for GNU libc compatible malloc... yes
    checking for working memcmp... yes
    checking whether lstat dereferences a symlink specified with a trailing slash... yes
    checking whether stat accepts an empty string... no
    checking for vprintf... yes
    checking for _doprnt... no
    checking for atexit... yes
    checking for getcwd... yes
    checking for isascii... yes
    checking for memchr... yes
    checking for memmove... yes
    checking for memset... yes
    checking for strcasecmp... yes
    checking for strchr... yes
    checking for strcspn... yes
    checking for strdup... yes
    checking for strrchr... yes
    checking for strstr... yes
    checking for dlopen in -ldl... yes
    checking for pthread_create in -lpthread... yes
    checking for snprintf... yes
    checking for vsnprintf... yes
    checking for library containing gzopen... -lz
    checking for library containing BZ2_bzopen... -lbz2
    checking whether to enable debugging... no
    checking whether to build the source formatter plugin... yes
    checking whether to build the autosave plugin... yes
    checking whether to build the class wizard plugin... yes
    checking whether to build the code completion plugin... yes
    checking whether to build the compiler plugin... yes
    checking whether to build the debugger plugin... yes
    checking whether to build the default MIME handler plugin... yes
    checking whether to build the open files list plugin... yes
    checking whether to build the foreign projects importer plugin... yes
    checking whether to build the scripted wizard plugin... yes
    checking whether to build the to-do plugin... yes
    checking which (if any) contrib plugins to build... all
    checking if the compiler supports precompiled headers... yes
    checking for wx-config... /usr/bin/wx-config
    checking for wxWidgets version >= 2.8.0... yes (version 2.8.9)
    checking for wxWidgets static library... no
    checking for wxWidgets platform... wxGTK
    checking for pkg-config... yes
    checking for pkg-config... /usr/bin/pkg-config
    checking pkg-config is at least version 0.9.0... yes
    checking for GTK2... yes
    checking if wxWidgets libraries are needed for plugins... no
    checking for PIC flags... -fPIC -DPIC
    configure: Configuring Code::Blocks...
    configure: SVN revision 1.0svn ()
    configure: creating ./config.status
    config.status: creating Makefile
    config.status: creating src/Makefile
    config.status: creating src/base/Makefile
    config.status: creating src/base/tinyxml/Makefile
    config.status: creating src/build_tools/Makefile
    config.status: creating src/build_tools/autorevision/Makefile
    config.status: creating src/include/autorevision.h
    config.status: creating src/include/Makefile
    config.status: creating src/include/scripting/Makefile
    config.status: creating src/include/scripting/bindings/Makefile
    config.status: creating src/include/scripting/include/Makefile
    config.status: creating src/include/scripting/sqplus/Makefile
    config.status: creating src/include/scripting/sqstdlib/Makefile
    config.status: creating src/include/scripting/squirrel/Makefile
    config.status: creating src/include/tinyxml/Makefile
    config.status: creating src/include/wxFlatNotebook/Makefile
    config.status: creating src/include/wxscintilla/Makefile
    config.status: creating src/sdk/Makefile
    config.status: creating src/sdk/scripting/Makefile
    config.status: creating src/sdk/scripting/bindings/Makefile
    config.status: creating src/sdk/scripting/squirrel/Makefile
    config.status: creating src/sdk/scripting/sqstdlib/Makefile
    config.status: creating src/sdk/scripting/sqplus/Makefile
    config.status: creating src/sdk/wxscintilla/Makefile
    config.status: creating src/sdk/wxFlatNotebook/Makefile
    config.status: creating src/sdk/resources/Makefile
    config.status: creating src/sdk/resources/lexers/Makefile
    config.status: creating src/src/wxAUI/Makefile
    config.status: creating src/src/resources/Makefile
    config.status: creating src/src/resources/icons/Makefile
    config.status: creating src/src/resources/images/Makefile
    config.status: creating src/src/resources/images/16x16/Makefile
    config.status: creating src/src/resources/images/settings/Makefile
    config.status: creating src/src/Makefile
    config.status: creating src/plugins/Makefile
    config.status: creating src/plugins/astyle/Makefile
    config.status: creating src/plugins/astyle/resources/Makefile
    config.status: creating src/plugins/autosave/Makefile
    config.status: creating src/plugins/classwizard/Makefile
    config.status: creating src/plugins/classwizard/resources/Makefile
    config.status: creating src/plugins/codecompletion/Makefile
    config.status: creating src/plugins/codecompletion/resources/Makefile
    config.status: creating src/plugins/compilergcc/Makefile
    config.status: creating src/plugins/compilergcc/depslib/Makefile
    config.status: creating src/plugins/compilergcc/depslib/src/Makefile
    config.status: creating src/plugins/compilergcc/resources/Makefile
    config.status: creating src/plugins/debuggergdb/Makefile
    config.status: creating src/plugins/debuggergdb/resources/Makefile
    config.status: creating src/plugins/debuggergdb/resources/images/Makefile
    config.status: creating src/plugins/debuggergdb/resources/images/16x16/Makefile
    config.status: creating src/plugins/defaultmimehandler/Makefile
    config.status: creating src/plugins/defaultmimehandler/resources/Makefile
    config.status: creating src/plugins/openfileslist/Makefile
    config.status: creating src/plugins/projectsimporter/Makefile
    config.status: creating src/plugins/projectsimporter/resources/Makefile
    config.status: creating src/plugins/scriptedwizard/Makefile
    config.status: creating src/plugins/scriptedwizard/resources/Makefile
    config.status: creating src/plugins/scriptedwizard/resources/avr/Makefile
    config.status: creating src/plugins/scriptedwizard/resources/avr/files/Makefile
    config.status: creating src/plugins/scriptedwizard/resources/c_file/Makefile
    config.status: creating src/plugins/scriptedwizard/resources/console/Makefile
    config.status: creating src/plugins/scriptedwizard/resources/console/c/Makefile
    config.status: creating src/plugins/scriptedwizard/resources/console/cpp/Makefile
    config.status: creating src/plugins/scriptedwizard/resources/d/Makefile
    config.status: creating src/plugins/scriptedwizard/resources/d/console/Makefile
    config.status: creating src/plugins/scriptedwizard/resources/directx/Makefile
    config.status: creating src/plugins/scriptedwizard/resources/directx/files/Makefile
    config.status: creating src/plugins/scriptedwizard/resources/dll/Makefile
    config.status: creating src/plugins/scriptedwizard/resources/dll/files/Makefile
    config.status: creating src/plugins/scriptedwizard/resources/empty/Makefile
    config.status: creating src/plugins/scriptedwizard/resources/empty_file/Makefile
    config.status: creating src/plugins/scriptedwizard/resources/fltk/Makefile
    config.status: creating src/plugins/scriptedwizard/resources/fltk/files/Makefile
    config.status: creating src/plugins/scriptedwizard/resources/fltk/fluid/Makefile
    config.status: creating src/plugins/scriptedwizard/resources/glfw/Makefile
    config.status: creating src/plugins/scriptedwizard/resources/glfw/files/Makefile
    config.status: creating src/plugins/scriptedwizard/resources/glut/Makefile
    config.status: creating src/plugins/scriptedwizard/resources/glut/files/Makefile
    config.status: creating src/plugins/scriptedwizard/resources/gtk/Makefile
    config.status: creating src/plugins/scriptedwizard/resources/gtk/files/Makefile
    config.status: creating src/plugins/scriptedwizard/resources/h_file/Makefile
    config.status: creating src/plugins/scriptedwizard/resources/irrlicht/Makefile
    config.status: creating src/plugins/scriptedwizard/resources/irrlicht/files/Makefile
    config.status: creating src/plugins/scriptedwizard/resources/lf/Makefile
    config.status: creating src/plugins/scriptedwizard/resources/lf/files/Makefile
    config.status: creating src/plugins/scriptedwizard/resources/lf/files/quick/Makefile
    config.status: creating src/plugins/scriptedwizard/resources/lf/files/structured/Makefile
    config.status: creating src/plugins/scriptedwizard/resources/ogre/Makefile
    config.status: creating src/plugins/scriptedwizard/resources/ogre/files/Makefile
    config.status: creating src/plugins/scriptedwizard/resources/opengl/Makefile
    config.status: creating src/plugins/scriptedwizard/resources/opengl/files_unix/Makefile
    config.status: creating src/plugins/scriptedwizard/resources/opengl/files_win/Makefile
    config.status: creating src/plugins/scriptedwizard/resources/qt4/Makefile
    config.status: creating src/plugins/scriptedwizard/resources/qt4/files/Makefile
    config.status: creating src/plugins/scriptedwizard/resources/sdl/Makefile
    config.status: creating src/plugins/scriptedwizard/resources/sdl/files/Makefile
    config.status: creating src/plugins/scriptedwizard/resources/plugins/Makefile
    config.status: creating src/plugins/scriptedwizard/resources/plugins/templates/Makefile
    config.status: creating src/plugins/scriptedwizard/resources/smartwin/Makefile
    config.status: creating src/plugins/scriptedwizard/resources/smartwin/files/Makefile
    config.status: creating src/plugins/scriptedwizard/resources/staticlib/Makefile
    config.status: creating src/plugins/scriptedwizard/resources/staticlib/files/Makefile
    config.status: creating src/plugins/scriptedwizard/resources/sharedlib/Makefile
    config.status: creating src/plugins/scriptedwizard/resources/sharedlib/files/Makefile
    config.status: creating src/plugins/scriptedwizard/resources/sys/Makefile
    config.status: creating src/plugins/scriptedwizard/resources/sys/files/Makefile
    config.status: creating src/plugins/scriptedwizard/resources/win32gui/Makefile
    config.status: creating src/plugins/scriptedwizard/resources/win32gui/files/Makefile
    config.status: creating src/plugins/scriptedwizard/resources/win32gui/files/dialog/Makefile
    config.status: creating src/plugins/scriptedwizard/resources/win32gui/files/frame/Makefile
    config.status: creating src/plugins/scriptedwizard/resources/wxwidgets/Makefile
    config.status: creating src/plugins/scriptedwizard/resources/wxwidgets/common/Makefile
    config.status: creating src/plugins/scriptedwizard/resources/wxwidgets/pch/Makefile
    config.status: creating src/plugins/scriptedwizard/resources/wxwidgets/rc/Makefile
    config.status: creating src/plugins/scriptedwizard/resources/wxwidgets/wxfb/Makefile
    config.status: creating src/plugins/scriptedwizard/resources/wxwidgets/wxfb/dialog/Makefile
    config.status: creating src/plugins/scriptedwizard/resources/wxwidgets/wxfb/frame/Makefile
    config.status: creating src/plugins/scriptedwizard/resources/wxwidgets/wxsmith/Makefile
    config.status: creating src/plugins/todo/Makefile
    config.status: creating src/plugins/todo/resources/Makefile
    config.status: creating src/plugins/xpmanifest/Makefile
    config.status: creating src/plugins/contrib/Makefile
    config.status: creating src/plugins/contrib/AutoVersioning/Makefile
    config.status: creating src/plugins/contrib/BrowseTracker/Makefile
    config.status: creating src/plugins/contrib/byogames/Makefile
    config.status: creating src/plugins/contrib/cb_koders/Makefile
    config.status: creating src/plugins/contrib/codesnippets/Makefile
    config.status: creating src/plugins/contrib/codesnippets/resources/Makefile
    config.status: creating src/plugins/contrib/codestat/Makefile
    config.status: creating src/plugins/contrib/codestat/resources/Makefile
    config.status: creating src/plugins/contrib/dragscroll/Makefile
    config.status: creating src/plugins/contrib/envvars/Makefile
    config.status: creating src/plugins/contrib/help_plugin/Makefile
    config.status: creating src/plugins/contrib/help_plugin/bzip2/Makefile
    config.status: creating src/plugins/contrib/help_plugin/zlib/Makefile
    config.status: creating src/plugins/contrib/keybinder/Makefile
    config.status: creating src/plugins/contrib/lib_finder/Makefile
    config.status: creating src/plugins/contrib/lib_finder/lib_finder/Makefile
    config.status: creating src/plugins/contrib/profiler/Makefile
    config.status: creating src/plugins/contrib/profiler/resources/Makefile
    config.status: creating src/plugins/contrib/source_exporter/Makefile
    config.status: creating src/plugins/contrib/source_exporter/wxPdfDocument/Makefile
    config.status: creating src/plugins/contrib/symtab/Makefile
    config.status: creating src/plugins/contrib/symtab/resources/Makefile
    config.status: creating src/plugins/contrib/regex_testbed/Makefile
    config.status: creating src/plugins/contrib/ThreadSearch/Makefile
    config.status: creating src/plugins/contrib/ThreadSearch/resources/Makefile
    config.status: creating src/plugins/contrib/ThreadSearch/resources/images/Makefile
    config.status: creating src/plugins/contrib/wxSmith/Makefile
    config.status: creating src/plugins/contrib/wxSmith/propgrid/Makefile
    config.status: creating src/plugins/contrib/wxSmith/plugin/Makefile
    config.status: creating src/plugins/contrib/wxSmith/properties/Makefile
    config.status: creating src/plugins/contrib/wxSmith/wxwidgets/Makefile
    config.status: creating src/plugins/contrib/wxSmith/wxwidgets/properties/Makefile
    config.status: creating src/plugins/contrib/wxSmith/wxwidgets/defitems/Makefile
    config.status: creating src/plugins/contrib/wxSmith/wxwidgets/icons/Makefile
    config.status: creating src/plugins/contrib/wxSmithContribItems/Makefile
    config.status: creating src/scripts/Makefile
    config.status: creating src/tools/Makefile
    config.status: creating src/tools/cb_share_config/Makefile
    config.status: creating src/tools/ConsoleRunner/Makefile
    config.status: creating src/setup/Makefile
    config.status: creating src/setup/mime/Makefile
    config.status: creating src/templates/Makefile
    config.status: creating src/templates/common/Makefile
    config.status: creating src/templates/unix/Makefile
    config.status: creating src/templates/win32/Makefile
    config.status: creating src/wxsmith/Makefile
    config.status: creating codeblocks.pc
    config.status: creating codeblocks.spec
    config.status: creating codeblocks.plist
    config.status: creating src/include/config.h
    config.status: src/include/config.h is unchanged
    config.status: executing depfiles commands
    * Code::Blocks source tree has been configured. *
    You can now build Code::Blocks by issuing 'make'.
    When the build is complete, become root and install
    it by issuing 'make install'.
    Making all in src
    make[1]: Entering directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src'
    Making all in base
    make[2]: Entering directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/base'
    Making all in tinyxml
    make[3]: Entering directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/base/tinyxml'
    make[3]: Nothing to be done for `all'.
    make[3]: Leaving directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/base/tinyxml'
    make[3]: Entering directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/base'
    make[3]: Nothing to be done for `all-am'.
    make[3]: Leaving directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/base'
    make[2]: Leaving directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/base'
    Making all in build_tools
    make[2]: Entering directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/build_tools'
    Making all in autorevision
    make[3]: Entering directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/build_tools/autorevision'
    ./auto_revision +int +wx +t ../../.. ../../../src/include/autorevision.h
    sh: svn: command not found
    make[3]: Leaving directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/build_tools/autorevision'
    make[3]: Entering directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/build_tools'
    make[3]: Nothing to be done for `all-am'.
    make[3]: Leaving directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/build_tools'
    make[2]: Leaving directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/build_tools'
    Making all in include
    make[2]: Entering directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/include'
    make all-recursive
    make[3]: Entering directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/include'
    Making all in scripting
    make[4]: Entering directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/include/scripting'
    Making all in squirrel
    make[5]: Entering directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/include/scripting/squirrel'
    make[5]: Nothing to be done for `all'.
    make[5]: Leaving directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/include/scripting/squirrel'
    Making all in sqstdlib
    make[5]: Entering directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/include/scripting/sqstdlib'
    make[5]: Nothing to be done for `all'.
    make[5]: Leaving directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/include/scripting/sqstdlib'
    Making all in sqplus
    make[5]: Entering directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/include/scripting/sqplus'
    make[5]: Nothing to be done for `all'.
    make[5]: Leaving directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/include/scripting/sqplus'
    Making all in bindings
    make[5]: Entering directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/include/scripting/bindings'
    make[5]: Nothing to be done for `all'.
    make[5]: Leaving directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/include/scripting/bindings'
    Making all in include
    make[5]: Entering directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/include/scripting/include'
    make[5]: Nothing to be done for `all'.
    make[5]: Leaving directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/include/scripting/include'
    make[5]: Entering directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/include/scripting'
    make[5]: Nothing to be done for `all-am'.
    make[5]: Leaving directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/include/scripting'
    make[4]: Leaving directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/include/scripting'
    Making all in tinyxml
    make[4]: Entering directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/include/tinyxml'
    make[4]: Nothing to be done for `all'.
    make[4]: Leaving directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/include/tinyxml'
    Making all in wxscintilla
    make[4]: Entering directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/include/wxscintilla'
    make[4]: Nothing to be done for `all'.
    make[4]: Leaving directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/include/wxscintilla'
    Making all in wxFlatNotebook
    make[4]: Entering directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/include/wxFlatNotebook'
    make[4]: Nothing to be done for `all'.
    make[4]: Leaving directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/include/wxFlatNotebook'
    make[4]: Entering directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/include'
    make[4]: Leaving directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/include'
    make[3]: Leaving directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/include'
    make[2]: Leaving directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/include'
    Making all in sdk
    make[2]: Entering directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/sdk'
    Making all in scripting
    make[3]: Entering directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/sdk/scripting'
    Making all in squirrel
    make[4]: Entering directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/sdk/scripting/squirrel'
    make[4]: Nothing to be done for `all'.
    make[4]: Leaving directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/sdk/scripting/squirrel'
    Making all in sqstdlib
    make[4]: Entering directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/sdk/scripting/sqstdlib'
    make[4]: Nothing to be done for `all'.
    make[4]: Leaving directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/sdk/scripting/sqstdlib'
    Making all in sqplus
    make[4]: Entering directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/sdk/scripting/sqplus'
    make[4]: Nothing to be done for `all'.
    make[4]: Leaving directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/sdk/scripting/sqplus'
    Making all in bindings
    make[4]: Entering directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/sdk/scripting/bindings'
    make[4]: Nothing to be done for `all'.
    make[4]: Leaving directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/sdk/scripting/bindings'
    make[4]: Entering directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/sdk/scripting'
    make[4]: Nothing to be done for `all-am'.
    make[4]: Leaving directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/sdk/scripting'
    make[3]: Leaving directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/sdk/scripting'
    Making all in wxscintilla
    make[3]: Entering directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/sdk/wxscintilla'
    make[3]: Nothing to be done for `all'.
    make[3]: Leaving directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/sdk/wxscintilla'
    Making all in wxFlatNotebook
    make[3]: Entering directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/sdk/wxFlatNotebook'
    make[3]: Nothing to be done for `all'.
    make[3]: Leaving directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/sdk/wxFlatNotebook'
    Making all in resources
    make[3]: Entering directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/sdk/resources'
    Making all in lexers
    make[4]: Entering directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/sdk/resources/lexers'
    make[4]: Nothing to be done for `all'.
    make[4]: Leaving directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/sdk/resources/lexers'
    make[4]: Entering directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/sdk/resources'
    PWD=`pwd` cd . && zip -j /home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/sdk/resources/manager_resources.zip *.xrc images/*.png > /dev/null
    make[4]: Leaving directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/sdk/resources'
    make[3]: Leaving directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/sdk/resources'
    make[3]: Entering directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/sdk'
    /bin/sh ../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I. -I../../src/include -I/usr/lib/wx/include/gtk2-unicode-release-2.8 -I/usr/include/wx-2.8 -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -D__WXGTK__ -pthread -I../../src/include -I../../src/include/wxscintilla/include -I../../src/include/tinyxml -I../../src/include/scripting/include -I../../src/include/scripting/sqplus -I../../src/include/wxFlatNotebook/include -Ulinux -Uunix -O2 -ffast-math -march=x86-64 -mtune=generic -O2 -pipe -DCB_PRECOMP -Winvalid-pch -fPIC -DPIC -fexceptions -MT configmanager-revision.lo -MD -MP -MF .deps/configmanager-revision.Tpo -c -o configmanager-revision.lo configmanager-revision.cpp
    g++ -DHAVE_CONFIG_H -I. -I../../src/include -I/usr/lib/wx/include/gtk2-unicode-release-2.8 -I/usr/include/wx-2.8 -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -D__WXGTK__ -pthread -I../../src/include -I../../src/include/wxscintilla/include -I../../src/include/tinyxml -I../../src/include/scripting/include -I../../src/include/scripting/sqplus -I../../src/include/wxFlatNotebook/include -Ulinux -Uunix -O2 -ffast-math -march=x86-64 -mtune=generic -O2 -pipe -DCB_PRECOMP -Winvalid-pch -fPIC -DPIC -fexceptions -MT configmanager-revision.lo -MD -MP -MF .deps/configmanager-revision.Tpo -c configmanager-revision.cpp -fPIC -DPIC -o .libs/configmanager-revision.o
    mv -f .deps/configmanager-revision.Tpo .deps/configmanager-revision.Plo
    /bin/sh ../../libtool --tag=CXX --mode=link g++ -O2 -ffast-math -march=x86-64 -mtune=generic -O2 -pipe -DCB_PRECOMP -Winvalid-pch -fPIC -DPIC -fexceptions -version-info 0:1:0 -o libcodeblocks.la -rpath /usr/lib annoyingdialog.lo autodetectcompilers.lo base64.lo blockallocated.lo cbexception.lo cbeditor.lo cbeditorprintout.lo cbplugin.lo cbproject.lo cbstyledtextctrl.lo cbthreadpool.lo cbworkspace.lo compileoptionsbase.lo compiler.lo compilercommandgenerator.lo compilerfactory.lo compileroptions.lo compiletargetbase.lo configmanager.lo configmanager-revision.lo configurationpanel.lo configuretoolsdlg.lo confirmreplacedlg.lo crc32.lo editarrayfiledlg.lo editarrayorderdlg.lo editarraystringdlg.lo editkeywordsdlg.lo editorbase.lo editorcolourset.lo editorconfigurationdlg.lo editorlexerloader.lo editormanager.lo editor_hooks.lo editpairdlg.lo editpathdlg.lo edittooldlg.lo encodingdetector.lo externaldepsdlg.lo filefilters.lo filegroupsandmasks.lo filemanager.lo finddlg.lo genericmultilinenotesdlg.lo globals.lo importers_globals.lo incrementalselectlistdlg.lo infowindow.lo loggers.lo logmanager.lo macrosmanager.lo managedthread.lo manager.lo menuitemsmanager.lo multiselectdlg.lo newfromtemplatedlg.lo personalitymanager.lo pipedprocess.lo pluginmanager.lo pluginsconfigurationdlg.lo printing_types.lo projectbuildtarget.lo projectdepsdlg.lo projectfile.lo projectfileoptionsdlg.lo projectlayoutloader.lo projectloader.lo projectloader_hooks.lo projectmanager.lo projectoptionsdlg.lo projectsfilemasksdlg.lo projecttemplateloader.lo replacedlg.lo scriptingmanager.lo scriptsecuritywarningdlg.lo sdk_events.lo searchresultslog.lo selecttargetdlg.lo templatemanager.lo toolsmanager.lo uservarmanager.lo virtualbuildtargetsdlg.lo workspaceloader.lo xtra_res.lo nullptr.lo -pthread -lwx_gtk2u_richtext-2.8 -lwx_gtk2u_aui-2.8 -lwx_gtk2u_xrc-2.8 -lwx_gtk2u_qa-2.8 -lwx_gtk2u_html-2.8 -lwx_gtk2u_adv-2.8 -lwx_gtk2u_core-2.8 -lwx_baseu_xml-2.8 -lwx_baseu_net-2.8 -lwx_baseu-2.8 scripting/bindings/libsqbindings.la scripting/sqplus/libsqplus.la scripting/sqstdlib/libsqstdlib.la scripting/squirrel/libsquirrel.la ../base/tinyxml/libtinyxml.la wxscintilla/libwxscintilla.la wxFlatNotebook/libwxflatnotebook.la -lpthread -ldl
    rm -fr .libs/libcodeblocks.la .libs/libcodeblocks.lai .libs/libcodeblocks.so .libs/libcodeblocks.so.0 .libs/libcodeblocks.so.0.0.1
    g++ -shared -nostdlib /usr/lib/gcc/x86_64-unknown-linux-gnu/4.3.3/../../../../lib/crti.o /usr/lib/gcc/x86_64-unknown-linux-gnu/4.3.3/crtbeginS.o .libs/annoyingdialog.o .libs/autodetectcompilers.o .libs/base64.o .libs/blockallocated.o .libs/cbexception.o .libs/cbeditor.o .libs/cbeditorprintout.o .libs/cbplugin.o .libs/cbproject.o .libs/cbstyledtextctrl.o .libs/cbthreadpool.o .libs/cbworkspace.o .libs/compileoptionsbase.o .libs/compiler.o .libs/compilercommandgenerator.o .libs/compilerfactory.o .libs/compileroptions.o .libs/compiletargetbase.o .libs/configmanager.o .libs/configmanager-revision.o .libs/configurationpanel.o .libs/configuretoolsdlg.o .libs/confirmreplacedlg.o .libs/crc32.o .libs/editarrayfiledlg.o .libs/editarrayorderdlg.o .libs/editarraystringdlg.o .libs/editkeywordsdlg.o .libs/editorbase.o .libs/editorcolourset.o .libs/editorconfigurationdlg.o .libs/editorlexerloader.o .libs/editormanager.o .libs/editor_hooks.o .libs/editpairdlg.o .libs/editpathdlg.o .libs/edittooldlg.o .libs/encodingdetector.o .libs/externaldepsdlg.o .libs/filefilters.o .libs/filegroupsandmasks.o .libs/filemanager.o .libs/finddlg.o .libs/genericmultilinenotesdlg.o .libs/globals.o .libs/importers_globals.o .libs/incrementalselectlistdlg.o .libs/infowindow.o .libs/loggers.o .libs/logmanager.o .libs/macrosmanager.o .libs/managedthread.o .libs/manager.o .libs/menuitemsmanager.o .libs/multiselectdlg.o .libs/newfromtemplatedlg.o .libs/personalitymanager.o .libs/pipedprocess.o .libs/pluginmanager.o .libs/pluginsconfigurationdlg.o .libs/printing_types.o .libs/projectbuildtarget.o .libs/projectdepsdlg.o .libs/projectfile.o .libs/projectfileoptionsdlg.o .libs/projectlayoutloader.o .libs/projectloader.o .libs/projectloader_hooks.o .libs/projectmanager.o .libs/projectoptionsdlg.o .libs/projectsfilemasksdlg.o .libs/projecttemplateloader.o .libs/replacedlg.o .libs/scriptingmanager.o .libs/scriptsecuritywarningdlg.o .libs/sdk_events.o .libs/searchresultslog.o .libs/selecttargetdlg.o .libs/templatemanager.o .libs/toolsmanager.o .libs/uservarmanager.o .libs/virtualbuildtargetsdlg.o .libs/workspaceloader.o .libs/xtra_res.o .libs/nullptr.o -Wl,--whole-archive scripting/bindings/.libs/libsqbindings.a scripting/sqplus/.libs/libsqplus.a scripting/sqstdlib/.libs/libsqstdlib.a scripting/squirrel/.libs/libsquirrel.a ../base/tinyxml/.libs/libtinyxml.a wxscintilla/.libs/libwxscintilla.a wxFlatNotebook/.libs/libwxflatnotebook.a -Wl,--no-whole-archive -lwx_gtk2u_richtext-2.8 -lwx_gtk2u_aui-2.8 -lwx_gtk2u_xrc-2.8 -lwx_gtk2u_qa-2.8 -lwx_gtk2u_html-2.8 -lwx_gtk2u_adv-2.8 -lwx_gtk2u_core-2.8 -lwx_baseu_xml-2.8 -lwx_baseu_net-2.8 -lwx_baseu-2.8 -lpthread -ldl -L/usr/lib/gcc/x86_64-unknown-linux-gnu/4.3.3 -L/usr/lib/gcc/x86_64-unknown-linux-gnu/4.3.3/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-unknown-linux-gnu/4.3.3/../../.. -lstdc++ -lm -lc -lgcc_s /usr/lib/gcc/x86_64-unknown-linux-gnu/4.3.3/crtendS.o /usr/lib/gcc/x86_64-unknown-linux-gnu/4.3.3/../../../../lib/crtn.o -march=x86-64 -mtune=generic -pthread -Wl,-soname -Wl,libcodeblocks.so.0 -o .libs/libcodeblocks.so.0.0.1
    (cd .libs && rm -f libcodeblocks.so.0 && ln -s libcodeblocks.so.0.0.1 libcodeblocks.so.0)
    (cd .libs && rm -f libcodeblocks.so && ln -s libcodeblocks.so.0.0.1 libcodeblocks.so)
    creating libcodeblocks.la
    (cd .libs && rm -f libcodeblocks.la && ln -s ../libcodeblocks.la libcodeblocks.la)
    make[3]: Leaving directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/sdk'
    make[2]: Leaving directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/sdk'
    Making all in src
    make[2]: Entering directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/src'
    Making all in wxAUI
    make[3]: Entering directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/src/wxAUI'
    make[3]: Nothing to be done for `all'.
    make[3]: Leaving directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/src/wxAUI'
    Making all in resources
    make[3]: Entering directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/src/resources'
    Making all in icons
    make[4]: Entering directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/src/resources/icons'
    make[4]: Nothing to be done for `all'.
    make[4]: Leaving directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/src/resources/icons'
    Making all in images
    make[4]: Entering directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/src/resources/images'
    Making all in 16x16
    make[5]: Entering directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/src/resources/images/16x16'
    make[5]: Nothing to be done for `all'.
    make[5]: Leaving directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/src/resources/images/16x16'
    Making all in settings
    make[5]: Entering directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/src/resources/images/settings'
    make[5]: Nothing to be done for `all'.
    make[5]: Leaving directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/src/resources/images/settings'
    make[5]: Entering directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/src/resources/images'
    make[5]: Nothing to be done for `all-am'.
    make[5]: Leaving directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/src/resources/images'
    make[4]: Leaving directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/src/resources/images'
    make[4]: Entering directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/src/resources'
    PWD=`pwd` cd . && zip /home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/src/resources/resources.zip *.xrc images/*.png images/16x16/*.png > /dev/null
    PWD=`pwd` cd ./start_here && zip /home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/src/resources/start_here.zip *.htm* *.png > /dev/null
    make[4]: Leaving directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/src/resources'
    make[3]: Leaving directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/src/resources'
    make[3]: Entering directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/src'
    /bin/sh ../../libtool --tag=CXX --mode=link g++ -O2 -ffast-math -march=x86-64 -mtune=generic -O2 -pipe -DCB_PRECOMP -Winvalid-pch -fPIC -DPIC -fexceptions -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lgdk_pixbuf-2.0 -lpangocairo-1.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -o codeblocks app.o appglobals.o compilersettingsdlg.o crashhandler.o dlgabout.o dlgaboutplugin.o environmentsettingsdlg.o infopane.o main.o prefix.o printdlg.o scriptconsole.o scriptingsettingsdlg.o splashscreen.o startherepage.o -LwxAUI -lwxaui -L../sdk -lcodeblocks -pthread -lwx_gtk2u_richtext-2.8 -lwx_gtk2u_aui-2.8 -lwx_gtk2u_xrc-2.8 -lwx_gtk2u_qa-2.8 -lwx_gtk2u_html-2.8 -lwx_gtk2u_adv-2.8 -lwx_gtk2u_core-2.8 -lwx_baseu_xml-2.8 -lwx_baseu_net-2.8 -lwx_baseu-2.8 -lpthread -ldl
    libtool: link: cannot find the library `' or unhandled argument `blocks/src/codeblocks-8.02/src/src/wxAUI'
    make[3]: *** [codeblocks] Error 1
    make[3]: Leaving directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/src'
    make[2]: *** [all-recursive] Error 1
    make[2]: Leaving directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src/src'
    make[1]: *** [all-recursive] Error 1
    make[1]: Leaving directory `/home/neuwerld/Desktop/code blocks/src/codeblocks-8.02/src'
    make: *** [all-recursive] Error 1
    ==> ERROR: Build Failed.
    Aborting...
    There you got all the output of the compiling, sry if it was to much
    Could it be this "configure: WARNING: `missing' script is too old or missing"?
    Last edited by neuwerld (2009-05-07 10:11:51)

  • Error when run the compiled code

    I have code below,
    import java.sql.*;
    public class testmysql{
         public static void main(String args[]){
              Connection conn = null;
    try{
    String userName = "root";
    String password = "password";
    String url = "jdbc:mysql://localhost:3307/ectol_db";
    Class.forName ("com.mysql.jdbc.Driver").newInstance ();
    conn = DriverManager.getConnection (url, userName, password);
    System.out.println ("Database connection established");
    }catch (Exception e) {
              e.printStackTrace();
    System.err.println ("Cannot connect to database server");
    }finally{
    if (conn != null){
    try{
    conn.close ();
    System.out.println ("Database connection terminated");
    }catch (Exception e) {
         e.printStackTrace();
         /* ignore close errors */
    and i have the mysql-connector-5.0.6.jar
    I able to compile code with javac testmysql.java command
    However, when i try to run the code with java testmysql command, it prompt me error below
    java.lang.ClassNotFoundException: com.mysql.jdbc.Driver
    at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:268)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:164)
    at testmysql.main(testmysql.java:11)
    Cannot connect to database server
    Anyone can help?

    ccwoon80 wrote:
    Actually, the jar and class file was in the same path...
    Thus, what the correct command i need to run the my code?Then your classpath would be .;mysql.jar (or whatever the heck the name of the connector was).
    So java -cp .;mysql.jar foo.bar.MyClass

  • 3.1EA3 Code parser bug + File - New...

    Hello guys,
    I was creating new package yesterday, because it was just some testing package, I didn't need to store the source code in a file. Keeping it in database only was enough for me...
    So I used File -> New and chose Package. Ok, this created a package specification template. But how to create package body? There is nothing like that in the File -> New window. So this is first thing I wanted to mention.
    So I created empty file, opened it in SQL Developer with current connection and started typing package body. The source code looked like this:
    CREATE OR REPLACE PACKAGE BODY AS TEST_PACKAGE2
    END TEST_PACKAGE2;Yes, there is a bug in this code "AS" should be on the end...
    I wrote planty of code in the package body and when I finished, saved it and wanted to compile, nothing happened. The only thing what will happen after you try to compile this, is that the file name in the tab is changed to italic, like when you do some change.
    Why is the filename on the tab changing to italic?
    Why compilator doesn't report any error message in this case?
    Edited by: xxsawer on 11.1.2012 23:44

    Hello Vadim,
    I think you are missing the point. The point is that you make a mistake in declaring new package body or spec and when trying to compile it, you don't get any warning or error. The procedure how you create new spec is irelevant...
    So once again.
    1) Create new empty file with name TEST_PACKAGE.pks
    2) Open it in SQL Developer and paste there exactly this:
    CREATE OR REPLACE PACKAGE AS TEST_PACKAGE
    FUNCTION TEST RETURN BOOLEAN;
    END TEST_PACKAGE;Try to compile it. You get nothing as compilation output. Yes in this case is part of first line underlined indicating there is some problem...
    3) Correct the mistake and use this as package spec
    CREATE OR REPLACE PACKAGE TEST_PACKAGE AS
    FUNCTION TEST RETURN BOOLEAN;
    END TEST_PACKAGE;4) Compile it -> You get "Compiled" as a message from the compilator
    5) Create new empty file TEST_PACKAGE.pkb
    6) Open it in SQL Developer and paste there exactly this:
    CREATE OR REPLACE PACKAGE BODY AS TEST_PACKAGE
    FUNCTION TEST RETURN BOOLEAN IS
    BEGIN
      NULL;
    END;
    END TEST_PACKAGE;Try to compile it. Nothing happens. No compilator output at all... Why???
    In this case even first line isn't underlined, but part of the function declaration is.
    So the point is, when you do mistake in package declaration like I did here (I moved keyword "AS" before name of package) you don't get any message from the compilator.

  • Java.lang.NoClassDefFoundError: com/sun/j3d/utils/applet/MainFrame         at HelloUniverse.main(Compiled Code)

    I'm getting this error
    java.lang.NoClassDefFoundError: com/sun/j3d/utils/applet/MainFrame
    at HelloUniverse.main(Compiled Code)
    I receive this error when I try to run the demos that are in the /usr/java1.1/demo folder.
    I followed the directions to install java3d. I installed the java3d binary in the top part of
    the JDK directory then ran the binary. Everything installed o.k., but I cannot run
    any of the demos. I also have J2SE 1.2.2_05a, JDK 1.1.8_10, and.
    JRE 1.1.8_10 installed. My operating system is SunOS 5.6, Solaris 2.6. My workstation
    is an Ultra 5 with 374mb ram.
    Here is part of the install intructions.
    Place the java3d1_2-solsparc.bin file into the top level directory
    of the JDK you wish to install Java 3D into. Execute the
    java3d1_2-solsparc.bin file (ex: sh java3d1_2-solsparc.bin).
    After installation, you may remove this file.
    The Java 3D(TM) SDK includes several demo programs that can
    verify correct installation. Assuming your Java 2 SDK is installed
    at ~/Solaris_JDK_1.2.2_05, try the following:
    cd ~/Solaris_JDK_1.2.2_05/demo/java3d/HelloUniverse
    java HelloUniverse
    Note: Many more demos are available under the demo/java3d/
    directory. Some of the demos require a maximum memory
    pool larger than the default in java. To increase the
    maximum memory pool to 64 meg, add the following command
    line options to java or appletviewer:
    java: -mx64m
    appletviewer: -J-mx64m
    You do not need to include the J3D jar files in your CLASSPATH,
    nor do you need to include the J3D shared libraries in your PATH.
    You should include "." in your CLASSPATH or ensure that CLASSPATH
    is not set.
    I'm not sure how to set set/unset the CLASSPATH and I'm not sure if I was supposed to
    place the binary file in the /usr/java1.1 or /usr/java or /usr/java1.2 directory.
    Can anyone help?
    tomjones

    -- If jar size isn't an issue, I recommend using thick "weblogic.jar" instead of the thin "wl*.jar" jars. The thick jar is a better performer, is used by more customers, and has more features. Otherwise:
              -- It might help to use the thin client jars from a later service pack - several service packs have been released since SP2, or you might even try using jars from a recent 9.2 SP or even 10.0.
              -- Also, check to see if the 1.4.2 JVM is up-to-date and/or try switching from the Sun JVM to the JRockit JVM (or vice-versa).
              -- Finally, it might help to check if your XP environment matches your Linux environment (JVM command-line, classpath, etc).
              -- Also: The IIOP newsgroup may also have some advice. The thin client uses the IIOP protocol even when a "t3:" URL is specified by the application.
              Tom

  • Compile asm to hex file and send to microcontroller pic...

    Hi,
    I would like to know if is it possible on new labview8 to compile code asm to hex file and send the file to pic micro pic16f84??.
    Actually, I did application on lv7.1 that modified the asm code and later call to System Exec.vi to use mspanwin to compile the file to hex file, and later call to icprog program to send the file hex to pic by serial port with programer JDM. It works but i would like the external program would be invisible to user. Therefore i would like to get all with labview, but i dont know if it is possible compile any language code programming to hex file to send pic, and if it possible send the hex file with labview algorithm on new version...
    Can anyone advise me?. Thanks Fonsi.

    Hi,
    There is Labview Embedded software to program microcontrollers (http://www.ni.com/labview/embedded) but this software is only for 32-bit processors so there is no way to do that for your pic controller (8 bits).
    Unfortunatelly, I think the solution you have done (calling the other programs from labview) is the only one you can use right now.
    Regards,
    Jaime Cabrera
    NI Applications Engineer 
    Regards,
    Jaime Cabrera
    NI Applications Engineering Spain

  • T-code for delete file from application server

    Hi all!
    Please, has any t-code for delete file from application server? For upload exist CG3Z, for download has CG3Y. And for delete? Has anyone?
    I need to delete file from application server in QA system and i don't want to create a program for this because i will need to transport a request from DEV to QA.

    I don't have contact with basis team.
    The FM EPS_DELETE_FILE support directory name with max 60 char. My dir. has more than that. I need a transaction for this.
    Anybody know if this transaction exist?

  • Compiled Code Error Running Excel

    Writing to Excel works fine with source code but gives this error with compiled code:
    Open VI Reference in Dispose Report.vi->Write_to_Excel.vi->Golden_Thread_V2.vi<APPEND>
    VI Path: <b>C:\Golden Thread\Golden Thread V2.2.exe\Excel_Quit.vi</b>
    Built Application or Shared Library (DLL): Make sure all dynamically loaded VIs were properly included in the build specification for the application or shared library.
    Any thoughts???
    Thanks.

    Hi Steve,
    if you use for example the "Append Table to Report.vi", then you have in the "Excel" case a dynamic loaded vi, also in the "New Report.vi". See the picture.
    See this KB: http://digital.ni.com/public.nsf/allkb/C38CE3F30542D65B86256F0E00740DD8
    Mike
    Message Edited by MikeS81 on 06-18-2008 03:42 PM
    Attachments:
    Unbenannt1.PNG ‏20 KB

Maybe you are looking for

  • GenericSortFilter.xsl unable to filter data in inline transformation.

    Hi,     I am working on MII 12.0     I need to filter an xml output of transaction. So I am using the inline transformation.     I am passing filter column name, filter column value, filter exp and filter type.     But the data is not getting filtere

  • Factoring discount in invoice list

    What is the meaning of factoring discount in invoice list and when it is applicable? If client don't want to apply it then how should i remove it from the invoice list screen? As the requirement of the client is to consolidate all the billing documen

  • XMLSearch / case in-sensitive search in a text node value with XPATH

    Hi everyone, I was aggregating some XML files and queries for a search engine. It is pretty easy with coldfusion XML functions BUT .... I was looking around XMLSearch to do a simple text search into nodes and I am stuck with it. with something like t

  • Creating forms in another languages.???

    can any1 give me an idea how to make foRms in other language......like german or arabic language..!!!! Edited by: Suhail Faraaz on Dec 4, 2009 11:55 PM

  • How to allocate a permanent memory?

    Hai, Is there any way to keep an object or a variable permanently in the memory such that I can access that object or variable's value using any other java program. Regards ackumar