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

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

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

Similar Messages

  • SAP T-Codes with Functiona Area, Business Process, Sub-Process wise details

    Hi Experts,
    I am Involved in GRC AC5.3 implementation Project. In this we need to work on complete Role-Redesign Process, which involves building of New Roles as per their requirement (Transaction used in past one Year). We find 3500 T-Codes, which are used by the client from past one year. We need to segregate the All the T-Codes into Functiona Area, Business Process, Sub-Process wise.
    *Is there any data source available on Complete information on SAP T-Codes with Functiona Area, Business Process, and Sub-Process wise details.
    Thank and Regards,
    Sathish...

    Hi Satish,
    As per my knowledge, Since the role design is more specific to any client there is no standard classification.
    However you can classify them taking leverage of sap provided rule set for RAR or Existing customized ruleset in your landscape, based on that you can start grouping the Tcodes  and start framing the roles.

  • Problem in code with Google Translate

    hi
    i have Problem in code with Google Translate
    Imports Google.API.Translate.Language
    Imports Google.API.Translate
    Public Class Form1
    Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
    Dim text As String = "hello"
    Dim tr As New TranslateClient("https://translate.google.com")
    Dim xx As String = tr.Translate(text, Language.English, Language.French, Google.API.Translate.TranslateFormat.Text)
    MsgBox(xx)
    End Sub
    End Class
    All things good but it shows an error in the second line

    For assistance with Google API's contact Google.
    La vida loca

  • Is it possible compiling code with java2 sdk 1.4.2_16 using netbeans 6.5.1?

    Hi,
    I'm using NetBeans 6.5.1 ide (uses jdk 1.6).
    I prepared java codes to deploy the system uses java version 1.4.2_16.
    Is it possible to compile code for 1.4.2_16 using NetBeans 6.5.1?
    Thanks.

    If you really have iphone 3gs, then you can update it further.
    If you have an iphone 3g, then you cannot.
    Identifying iPhone models - Apple Support

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

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

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

  • Cannot compile code with debug symbols

    I have a source code file that will not compile with debug symbols. I get an assertion failed in file ../src/regman/regman_local.cc at line 5224. The compile command and output are below.
    /opt/SUNWspro/bin/cc -g -xarch=v9b -xopenmp=noopt -xc99=all -c -o output/spirecon.o spirecon.c
    cg: assertion failed in file ../src/regman/regman_local.cc at line 5224
    cg: Out of range
    cg: 1 errors
    cc: cg failed for spirecon.c
    However without the debug options and using the default -fast switch, i.e.
    /opt/SUNWspro/bin/cc -fast -xarch=v9b -xopenmp=noopt -xc99=all -c -o output/spirecon.o spirecon.c
    it compiles without any problems.
    I was hoping someone might have a suggestion as to how what might cause this type of error.

    I have been told this is bugid: 4420630
    It only happens when you try to use the optimizing
    backend code generator without any optimization.
    (That's what -xopenmp=noopt does)
    If you add an -xO1 flag the assertion should go away, but you
    will also lose some (but not all) of your debuggability.
    --chris                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Cannot compile a prog in C++ using Sun WS 5.0 on Solaris 8

    I am getting errors while compiling a helloworld program in C++ using Sun Workshop 5.0 on Solaris 8. The error messages are given below.
    The command I use for compiling my program is :
    CC Hello.cpp
    Is there anything wrong with the installation of the compiler?
    (All my C is code is compiling perfectly)
    Do I need to make some settings?
    Is the Sun compiler 5.0 incompatible with Solaris 8?
    In addition to this, if I want to use the list and vector classes, what headers can I use? What should the compilation command be?
    Thanks,
    Puneet Singhal
    I am getting these error messages:
    "/usr/include/iso/wchar_iso.h", line 100: Error: Multiple declaration for mbstate_t.
    "/opt/SUNWspro/SC5.0/include/CC/./iosfwd", line 51: Error: The name mbstate_t is ambiguous, std::mb
    state_t and std::mbstate_t.
    "/opt/SUNWspro/SC5.0/include/CC/./iosfwd", line 78: Error: The name mbstate_t is ambiguous, std::mb
    state_t and std::mbstate_t.
    "/opt/SUNWspro/SC5.0/include/CC/rw/iotraits", line 56: Error: The name mbstate_t is ambiguous, std:
    :mbstate_t and std::mbstate_t.
    4 Error(s) detected.
    The program listing of Hello.cpp:
    ----------------------------------------------------#include<iostream.h>
    int main()
    cout << "Hello World";
    return 0;

    I've been able to compile this program fine on Solaris 8 with Forte Developer 6 Update 2. The exact version+patches is: CC: Sun WorkShop 6 update 2 C++ 5.3 Patch 111685-04 2001/12/13
    I've also compiled with Workshop 5.0, and the code works fine. This is on Solaris 8 with the following compiler version+patches:
    CC: WorkShop Compilers 5.0 01/12/04 C++ 5.0 Patch 107311-16
    Let me know if you have any questions.
    -Moazam

  • JCOP Tools Problem Error code: 6985 (Conditions of use not satisfied)

    I have a problem with the JCOP tools. I am developing a very simple applet which does nothing at all. It is a "hello world" type applet so that I can get something working. It compiles ok, however as soon as I try to run it under the emulator I get an error.
    Status: Conditions of use not satisfied jcshell: Error code: 6985 (Conditions of use not satisfied) jcshell: Wrong response APDU: 6985
    This always happens when the jcshell issues the install command.
    The install command is:
    install -i 1234567890 -t -l -d -m -p -s -b -e -q C9#(1234567890) 1234567890 1234567890
    I must be doing something very basic incorrectly. I have tried searching the forums and internet and I haven't found anything. Any help would be appreciated.
    The code is this:
    package pt.microfil.test;
    import javacard.framework.*;
    import javacard.framework.ISO7816;
    import javacard.framework.ISOException;
    import javacard.framework.APDU;
    public class testcard extends Applet {
         final static byte CLASS = (byte) 0x80; // Class of the APDU commands
         final static byte INS_READ = (byte) 0x02; // instruction for the READ APDU command
         // this is the text string which will send back from the ICC to the IFD
         final static byte[] text = {(byte) 'e', (byte) 't', (byte) 's', (byte) ' ',
         (byte) 'g', (byte) 'e', (byte) 'h', (byte) 't', (byte) 's', (byte) ' ',
         (byte) 'd', (byte) 'e', (byte) 's', (byte) ' ',
         (byte) 'G', (byte) 'l', (byte) 'u', (byte) 'm', (byte) 'p'};
         public static void install(byte[] bArray, short bOffset, byte bLength) {
              // GP-compliant JavaCard applet registration
              //new testcard().register(bArray, (short) (bOffset + 1), bArray[bOffset]);
              new testcard().register();
         public static void install() {
              new testcard().register();
         public void process(APDU apdu) {
              byte[] cmd_apdu = apdu.getBuffer(); // the cmd_apdu variable is used because of performance reasons
              if (cmd_apdu[ISO7816.OFFSET_CLA] == CLASS) {  // it is the rigth class
              switch(cmd_apdu[ISO7816.OFFSET_INS]) {      // check the instruction byte
              case INS_READ: // it is a READ instruction
              // check if P1=P2=0
              if ((cmd_apdu[ISO7816.OFFSET_P1] != 0) || (cmd_apdu[ISO7816.OFFSET_P2] != 0)) {
              ISOException.throwIt(ISO7816.SW_WRONG_P1P2);
              } // if
              // check if P3=length of the text field
              short le = (short)(cmd_apdu[ISO7816.OFFSET_LC] & 0x00FF); // calculate Le (expected length)
              short len_text = (short)text.length; // the len_text variable is used because of performance reasons
              if (le != len_text) {
              ISOException.throwIt((short)(ISO7816.SW_CORRECT_LENGTH_00 + len_text)); // give the expected length back to the IFD
              } // if
              apdu.setOutgoing(); // set transmission to outgoing data
              apdu.setOutgoingLength((short)len_text); // set the number of bytes to send to the IFD
              apdu.sendBytesLong(text, (short)0, (short)len_text);
              break;
              default : // the instruction in the command apdu is not supported
              ISOException.throwIt(ISO7816.SW_INS_NOT_SUPPORTED);
              } // switch
              } // if
              else {         // the class in the command apdu is not supported
              ISOException.throwIt(ISO7816.SW_CLA_NOT_SUPPORTED);
    }

    i also found this error and i change the package name and applet id.it is not changing.now i got same error.
    cm>  install -i 6d796170702e617070  -q C9#() 6d797061636b616765 6d796170702e617070
    jcshell: Error code: 6985 (Conditions of use not satisfied)
    jcshell: Wrong response APDU: 6985
    Unexpected error; aborting execution
    how can i solve the problem??

  • Problem while working with function module RFC_READ_TABLE

    Dear Experts,
                     I am facing a problem while working on the FM RFC_READ_TABLE, in which there is a tables parameter options which is of table type, to which I am passing the condition of selection.  In the debugg mode I found the select quiry in the source code of function module is not executing the condition passed in the options parameter.
    My actual requirement is to fetch all the custom programs in a remote server, the code I have written is below.
    TYPES :
             BEGIN OF ty_tadir,
               pgmid  TYPE pgmid,
               object TYPE  trobjtype,
               obj_name  TYPE  sobj_name,
             END OF ty_tadir.
    DATA : it_tadir TYPE STANDARD TABLE OF ty_tadir,
            wa_tadir TYPE ty_tadir.
      data: stmp_dokhl  like TAB512       occurs 100000 with header line.
      data: options1    like rfc_db_opt occurs     10 with header line.
    data: wa_options1 like line of options1.
      data: nametab1    like rfc_db_fld  occurs     10 with header line.
    START-OF-SELECTION.
    DATA : W_VALUE(5)  TYPE C,
           W_VALUE1(20) TYPE C.
    W_VALUE1 =  'OBJ_NAME like'.
    W_VALUE = 'z*'.
    CONCATENATE 'OBJ_NAME LIKE' ' ''' W_VALUE '''' INTO OPTIONS1-TEXT.
    CONCATENATE W_VALUE1 W_VALUE INTO wa_OPTIONS1-TEXT SEPARATED BY SPACE.
    APPEND wa_OPTIONS1 to OPTIONS1.
    CLEAR wa_OPTIONS1.
        call function 'RFC_READ_TABLE'
             destination                'zard'
             exporting
                  query_table          = 'TADIR' "'ZBANK_GUARANTEE'
             tables
                  options              = options1
                  fields               = nametab1
                  data                 = stmp_dokhl
             exceptions
                  table_not_available  = 1
                  table_without_data   = 2
                  option_not_valid     = 3
                  field_not_valid      = 4
                  not_authorized       = 5
                  data_buffer_exceeded = 6
                  others               = 7 .
    Please give me some inputs on this,
    With warm regards,
    Murthy.
    Edited by: pr murthy on Sep 18, 2008 1:49 PM
    Edited by: pr murthy on Sep 18, 2008 2:14 PM

    Hi
    I have tried this and with small change this is working fine.
    TYPES :
    BEGIN OF ty_tadir,
    pgmid TYPE pgmid,
    object TYPE trobjtype,
    obj_name TYPE sobj_name,
    END OF ty_tadir.
    DATA : it_tadir TYPE STANDARD TABLE OF ty_tadir,
    wa_tadir TYPE ty_tadir.
    data: stmp_dokhl like TAB512 occurs 100000 with header line.
    data: options1 like rfc_db_opt occurs 10 with header line.
    data: wa_options1 like line of options1.
    data: nametab1 like rfc_db_fld occurs 10 with header line.
    START-OF-SELECTION.
    DATA : W_VALUE(5) TYPE C,
    W_VALUE1(20) TYPE C.
    W_VALUE1 = 'OBJ_NAME LIKE ''Z%'''.
    wa_options1-text = w_value1.
    APPEND wa_OPTIONS1 to OPTIONS1.
    CLEAR wa_OPTIONS1.
    call function 'RFC_READ_TABLE'
    *destination 'zard'
    exporting
    query_table = 'TADIR' "'ZBANK_GUARANTEE'
    tables
    options = options1
    fields = nametab1
    data = stmp_dokhl
    exceptions
    table_not_available = 1
    table_without_data = 2
    option_not_valid = 3
    field_not_valid = 4
    not_authorized = 5
    data_buffer_exceeded = 6
    others = 7 .

  • XI-- IDOC scenario, how to link process code with function module

    Hi Forum,
    I have a XI--->IDOC (R/3) scenario,
    where i m creating a IDOC in XI and sending it to R/3,
    i have done all settings to send the IDOC from XI to the R/3,
    i also have the function module to process that IDOC in R/3,
    the problem is:
    I want to know in details (step by step) how to make a Idoc Inbound process code, link it with the function module and use the process code in the Partner Profile in R/3,
    pls help

    HI,
    FOr this u need to go to transaction WE41 for inbound and WE40 for outbound there u assign the function module.
    Now u go to WE20 transaction for partner profile and u can assign the proces code to the inbound message.
    Go to the below help for more information:
    http://help.sap.com/saphelp_nw04/helpdata/en/72/c18ee5546a11d182cc0000e829fbfe/frameset.htm
    Inbound process code:
    http://help.sap.com/saphelp_nw04/helpdata/en/72/c18ee5546a11d182cc0000e829fbfe/frameset.htm
    Thnx
    Chirag

  • Problems sending mail with txt attachtment using SO_DOCUMENT_SEND_API1 MF

    Hi gurus,
    I allready tried to search in the forum some threads related with my problem, but i couldnt found any with the same problem that im having.
    My problem it's when attachting an txt file, using MF SO_DOCUMENT_SEND_API1 MF, the mail attachtment it's coming with the txt file but instead of coming with the all lines in the contents_bins table the file it's coming with a few lines. I think the problem it's that the txt file should come with 80 characters per line, like it's on the contents_bin table, buu instead that the MF it's filling me each line of the file with 1024 characters.
    Does anyone has ideas what im doing wrong?
    Ps - Below goes my code.
    Thanks in Advance,
    Best Regards,
    João Martins.
      CLEAR contents_bin.
      REFRESH contents_bin.
      PERFORM get_attachment TABLES tab_movimentos contents_bin
                             USING linha_inicial
                             linha_final.
      CLEAR: document_data, tab_lines.
      MOVE 'Aviso Ficheiro Retorno' TO document_data-obj_descr.
      MOVE 'Aviso Ficheiro de Retorno TU' TO document_data-obj_name.
      DESCRIBE TABLE contents_txt LINES tab_lines.
      READ TABLE contents_txt INDEX tab_lines.
      document_data-doc_size = ( tab_lines - 1 ) * 255
                               + STRLEN( contents_txt ).
      CLEAR packing_list.
      REFRESH packing_list.
      packing_list-transf_bin = space.
      packing_list-head_start = 1.
      packing_list-head_num = 0.
      packing_list-body_start = 1.
      DESCRIBE TABLE contents_txt LINES packing_list-body_num.
      packing_list-doc_type = 'RAW'.
      APPEND packing_list.
      packing_list-transf_bin = 'X'.
      packing_list-head_start = 1.
      packing_list-head_num   = 1.
      ADD 1 TO tab_lines.
      packing_list-body_start = tab_lines.
      CLEAR: lv_filename, tab_lines.
      CONCATENATE 'Fich Retorno -' nome_ficheiro INTO lv_filename.
      DESCRIBE TABLE contents_bin LINES tab_lines.
      packing_list-doc_type   =  'TXT'.
      packing_list-obj_descr  =  'Ficheiro Retorno'.
      packing_list-obj_name   =  lv_filename.
      packing_list-doc_size   =  tab_lines * 255.
      APPEND packing_list.
      CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
           EXPORTING
                document_data              = document_data
                put_in_outbox              = 'X'
                sender_address             = 'SIFJOB'
                sender_address_type        = 'B'
           IMPORTING
                sent_to_all                = sent_to_all
           TABLES
                packing_list               = packing_list
                contents_bin               = contents_bin
                contents_txt               = contents_txt
                receivers                  = tab_receiver
           EXCEPTIONS
                too_many_receivers         = 1
                document_not_sent          = 2
                document_type_not_exist    = 3
                operation_no_authorization = 4
                parameter_error            = 5
                x_error                    = 6
                enqueue_error              = 7
                OTHERS                     = 8.
      SUBMIT rsconn01 WITH mode = 'INT'
                  WITH output = SPACE
                  AND RETURN.
    FORM get_attachment TABLES   p_tab_movimentos STRUCTURE
                                 zlinha_movimentos_fich_retorno
                                 p_contents_bin STRUCTURE contents_bin
                        USING    p_linha_inicial STRUCTURE
                                 zlinha_inicial_ps2
                                 p_linha_final STRUCTURE
                                 zlinha_final_ps2.
      DATA: lv_valor(14).
      DATA : line(80) TYPE x.
      CONCATENATE p_linha_inicial-referencia p_linha_inicial-tipo_registo
      p_linha_inicial-tipo_operacao p_linha_inicial-situacao_conta
      p_linha_inicial-situacao_registo p_linha_inicial-iban+4(21)
      p_linha_inicial-moeda p_linha_inicial-data_pag
      p_linha_inicial-ref_ordenante p_linha_inicial-filler
      INTO p_contents_bin-line.
      CLEAR line.
      conv_bin p_contents_bin-line line.
      MOVE line TO p_contents_bin-line.
      APPEND p_contents_bin.
      CLEAR p_contents_bin.
      LOOP AT p_tab_movimentos.
        CLEAR: lv_valor.
        WRITE p_tab_movimentos-montante TO lv_valor.
        PERFORM normalize_value USING lv_valor.
        CONCATENATE p_tab_movimentos-referencia
          p_tab_movimentos-tipo_registo p_tab_movimentos-tipo_operacao
          p_tab_movimentos-sit_conta_retor p_tab_movimentos-situacao_registo
          p_tab_movimentos-nib lv_valor
          p_tab_movimentos-ref_ordenante p_tab_movimentos-filler
          INTO p_contents_bin-line.
        CLEAR line.
        conv_bin p_contents_bin-line line.
        MOVE line TO p_contents_bin-line.
        APPEND p_contents_bin.
        CLEAR p_contents_bin.
      ENDLOOP.
      CLEAR: lv_valor.
      WRITE p_linha_final-mont_total TO lv_valor.
      PERFORM normalize_value USING lv_valor.
      CONCATENATE p_linha_final-referencia p_linha_final-tipo_registo
        p_linha_final-tipo_operacao p_linha_final-filler_1
        p_linha_final-situacao_registo p_linha_final-filler_2
        p_linha_final-total_reg lv_valor
        p_linha_final-filler INTO p_contents_bin-line.
      CLEAR line.
      conv_bin p_contents_bin-line line.
      MOVE line TO p_contents_bin-line.
      APPEND p_contents_bin.
      CLEAR p_contents_bin.
    ENDFORM.                    " get_attachment

    Hi,
    I've solved this problem. The problem was because i was using the
    * Anexo - Descrição
      packing_list-transf_bin = 'X'.
      packing_list-head_start = 1. "Here it must be 0 because i wasn't using any table header
      packing_list-head_num   = 0.
      ADD 1 TO tab_lines.
      packing_list-body_start = 1.
      CLEAR: lv_filename, tab_lines.
      CONCATENATE nome_ficheiro 'TB' INTO lv_filename.
    *  CONCATENATE 'Fich Retorno -' nome_ficheiro INTO lv_filename.
      DESCRIBE TABLE contents_bin LINES tab_lines.
      packing_list-doc_type   =  'TXT'.
      packing_list-obj_descr  =  lv_filename."'Ficheiro Retorno'.
      packing_list-obj_name   =  lv_filename.
      packing_list-body_num = tab_lines.
      packing_list-doc_size   =  tab_lines * 255.
      APPEND packing_list.
    Best Regards
    Thanks,
    João Martins

  • Problem compiling module with named package

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

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

  • Error when compiling code for crio 9068 using LV 2014 SP1

    I have a project that was mostly developed in LV 2013 SP1.  I recently upgraded to LV 2014 SP1, and I can no longer compile the FPGA VI.  At first, I received an error stating that the Xilinx Vivado 2013.4 compilation tool was not installed.  I found this tool on your site, downloaded it, and installed it on my computer.  When I try to compile now, the compilation advances to a certain point, seems to hang there for a while, and then returns an error stating that toplevel_gen_propImpl.xds cannot be accessed "because it is being used by another process."  I have repeated this exact same scenario on both by desktop and my laptop.  I've attached a PDF of the error I windows I have received.
    Attachments:
    compile_error.pdf ‏114 KB

    Hi scg,
    I took a look at your file and researched a little bit about your issue, I have not been so lucky with the research since most of the doceuments are related to previous versions of the software, nevertheless it is also what makes me think that the file might be corrupted or some issue related to it so and I have found some tests that you could try:
    1. Create a new FPGA file with your code on it and compile it again.
    2. Turn off the firewall and compile again 
    3. Restart the compiler Services
    Hope you might find this information helpful!
    Regards,
    S.Jimenez

  • 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)

  • Jdk 1.4.2 problem compiling code

    I've spent the last two years developing an application on jdk1.3.1_04 with 9 class files and it works ok. However when I try to run it on jdk1.4.2 with NetBean ide3.5, I get ...
    "java.lang.NoClassDefFoundError:UAD/Applications/MarketAnalyzer3 Exception in thread main".
    I also get the same exception if I create new files and try to compile them on the ide3.5 platform.
    This also happens when I try to run it from the xp CMD window after changing the directory to where the class files are located. The only way I could get a simple one class file to run from the CMD window was to type "java.exe -classpath "." MyColorChooserApp"
    My system environmental variables are set as follows:
    BobTrader c:\ide-userdir\sampledir\BobTrader (this is where the class files are stored)
    JAVA_HOME c:\java\jdk1.4.2\j3sdk1.4.2
    jre c:\jdk1.3.1_04\jre\bin
    QTJAVA c:\ProgramFiles\jaa\jre1.5.0_04\lib\ext\QTJava.zip
    I've been trying to understand what may be the problem with class path and/or the sdk1.4.2, and I've found some reference to change back to windows sp1 or download jkd1.5. I'm not sure what to do next since sdk1.3.1 will no longer be supported.
    Any advice is appreciated.
    I'd like to get my application to run on the recommended sdk before I try to learn how to run it on any PC ...
    - using the CMD window to show it offs
    - learning how to use WebStart to offer it as a service, and/or
    - creating an exe if I decide to offer some of it as a product.
    Still have a lot to learn.
    codingAlone

    I guess jdk1.3.1 uses c:\ide-userdir\sampledir and I put my java application and class files under BobTrader.
    I just read something to help me with Classpath and path.
    My Path includes c:\java\jdk1.4.2\j2sdk1.4.2/bin so I believe that tells Windows where java exe files are and therefore allowed me to perform javac and java on a simple file. but not on a package of files.
    My Classpath does not include where my class files are located. So should I add the following to my Classpath: c:\ide-userdir\sampledir\BobTrader? The MarketAnalyzer3 class and other classes are under BobTrader. I have to compile multiple *.java files.
    Hopefully this will allow the sdk1.4.2 to work. I will try adding the BobTrader class files to the Classpath and see.
    My package is also named BobTrader. Not sure why I created a package since I do not import any of it, just that all files are related. Will I have to do anything special if I compile and/or run from the CMD window?
    For example:
    - javac c:\BobTrader\BobTrader\*.java (ie, javac c:\foldername\packagename\*.java). I assume the *.java is needed since I need to compile multiple files; otherwise I might get some exception that the others are not understood by the compiler.
    Then run the application using....
    - java BobTrader.MarketAnalyzer3 (java packagename.filename)
    This assumes I am in the BobTrader folder.
    Also, how do I add ?.? To the Classpath so I don?t have to type java.exe ?classpath ?.? Filename class. I know how to add c:\foldername\; using environmental variables but not sure how to add ?.? Do i add ?.?;at the beginning of the Classpath followed by what is currently there now, or do I add it to the end. For example:
    -     ?.?;c:\ProgramFiles\Java\jrel.5.0_04\lib\ext\QTJava.zip, or
    -     .;c:\ProgramFiles\etc?., or
    -     c:\ProgramFiles\Java\jrel.5.0_04\lib\ext\QTJava.zip;. or ;?.?

Maybe you are looking for

  • MacBookPro - faulty Hard drive - again

    Purchased my MacBookPro in Jan 07, been a great machine until May 08 of this year. I was having some issues that hinted to a hard drive problem. Took it to AppleCare Centre and was told the hard dive was close to failing. Didn't seem to be that big o

  • Exporting Sessions to Premiere Pro

    Hi There, I'm a newbee to Adobe products. I was wondering; I had three or four clips of audio in one track of a Premiere Pro project, opened it in Audition, worked on it, then exported it back into Premiere Pro. The problem is that, when I exported i

  • Upgrade from CE 7.2 to Portal 7.3 or higher

    Hi Experts, We are planning to upgrade portal from CE7.2 to 7.31 or higher. First of all I want to know which will be the best version to upgrade from CE7.2 ? From SAP installation and upgrade guide I can see this will be a simple EHP upgrade if we g

  • MAC OS:Word cannot locate the server application for AcroExch.Document.7.objects

    In MAC OS,installed Adobe reader ,When I double click a pdf file in Word2011,it shows"Word cannot locate the server application for AcroExch.Document.7.objects".what can i do to fix it?

  • Connecting to psn (open) trouble! Help!!!

    this is my first post and I've been trying to figure this out for days with no success. I have the new airport extreme and a Cisco 2100 cable modem. I am having trouble getting an open connection on my ps3. I have NAT type 2 Moderate. This has been r