Problem with make/libtool

When running make for a C++ project generated by kdevelop it will spawn tons of "sed s%^.*/%%" and "sh" processes and makes the pc unusable.
This happens when trying to build it from kdevelop or running make myself from the terminal.
[envil@insurgency socketclass]$ make
make  all-recursive
make[1]: Entering directory `/home/envil/socketclass'
Making all in src
make[2]: Entering directory `/home/envil/socketclass/src'
/bin/sh ../libtool --tag=CXX   --mode=link g++  -g -O2    -o socketclass socketclass.o 
At this point it starts spawning sed/sh over and over.
using make version 3.81-3 and libtool-2.2.6a-1

Dear ,
Did you check any sales order reference in your production order assingment tab? Did you check the cost roll up in sales order level based on the BOM and Routung created for dt FG?
I believe the link between Sales Order and Production order lies in requirement Type and Requirement Class  in define planning strategy .
Check in you make to order planning stratgey -SPRO-Define Planning Strategy -Make To Order .Here you should keep the correct Requirement type for customer(OVZH)  and requirement class (OVZG).
Check and revert
Regards
JH

Similar Messages

  • Problem with Make to Order sales order

    Hi,
    We are facing a problem with sales order which has Make to order item catagory, Rescheduling is not happening for the sales order of this type. However, we have taken up this issue with SAP and SAP has replied that MTO sales order are Excluded from rescheduling program.  SAP has suggested us to use CO28 to reschedule the Production order so that the changes can effect the corrorsponding sales order.
    We have observed that when sales order is created with MTO item category, production order is automatically created but when we see the Requirement list in MD04 for the material there is an Exception message as '20' (Cancel process).  After the production order is confirmed and goods reciept has done the quantity confirmed against the sales order is becoming ZERO and hence we could not able to create delivery for the sales order.
    We kindly request you to help us in this regard. This is creating a big problem for our business.
    Thanks counting on your support.
    Warm Regards,
    Sridhar Burugula

    Dear ,
    Did you check any sales order reference in your production order assingment tab? Did you check the cost roll up in sales order level based on the BOM and Routung created for dt FG?
    I believe the link between Sales Order and Production order lies in requirement Type and Requirement Class  in define planning strategy .
    Check in you make to order planning stratgey -SPRO-Define Planning Strategy -Make To Order .Here you should keep the correct Requirement type for customer(OVZH)  and requirement class (OVZG).
    Check and revert
    Regards
    JH

  • Problem with make in cpan and OS 10.5.6

    Hi, my Perl installation of DBD::mysql was just broken by installing 10.5.5 and then 10.5.6 over 10.4.11. No problem, I thought, just install the new one from cpan and I'm on my way. Not so fast, is what cpan says. Or, to be more specific, this is what cpan says:
    "Writing Makefile for DBD::mysql
    make: * No rule to make target `/System/Library/Perl/5.8.8/darwin-thread-multi-2level/CORE/config.h', needed by `Makefile'. Stop.
    /usr/bin/make -- NOT OK
    Running make test
    Can't test without successful make
    Running make install
    make had returned bad status, install seems impossible"
    Same if I try to reinstall DBI. Any ideas? Is make broken (well, forget that question...;-)?

    ok, I just installed XCode Tools from the 10.5.5 installer DVD, that took care of the make problem. DBI and DBD::mysql installed without a hitch and all my programs are up & running. Apache2 rocks, it's all like lightyears faster than the WebServer on my PowerBook 12". I'm starting to like this... Well, maybe it also had to do with the PB being slower and all, but I doubt it.
    Do I get a cookie/star now, for having answered my own question? :-D

  • Problems with make/gcc on Solaris

    I'm working on building a binary on several different platforms, but the only one giving me trouble is Solaris 10 (64-bit -- though apparently this is building a 32-bit binary). The binary relies on the following project:
    https://projects.coin-or.org/Cbc
    I can checkout their code from SVN and build it without a problem. However, we then have a small cpp file that links to those libraries. I cannot get this cpp file to build. In fact, Solaris chokes on the makefile itself complaining that one of the lines ends with the '$' (which it does). The strange thing is, this makefile works correctly on Linux. It also works just fine on Windows in the MinGW environment (I do have to add a few flags on Windows but they are completely unrelated and the line ending with '$' still still present and works).
    Since the makefile failed, I tried to run the 2 commands that it does manually. The first one succeeds but the second command fails to locate the dynamic libraries -- even though the directory they reside in is specified in the -L argument. What gives??
    I put /usr/ccs/bin and /usr/sfw/bin in my PATH variable so that I can use make and gcc. I had to add /usr/sfw/lib to the LIBDIR variable, otherwise I was getting even more errors. Here is the makefile and the error that I get when I try to run make:
    -bash-3.2$ cat makefile
    CPP = gcc
    COINPATH = /export/home/locuser/cbc_source/coin-cbc
    CPATH += -I$(COINPATH)/include/coin
    LIBDIR = -L$(COINPATH)/lib:/usr/sfw/lib
    COINLIBS = -lCbcSolver -lCbc -lCgl -lOsiClp -lClp -lOsi -lCoinUtils -lm
    CFLAGS += -DUSE_SNAPSHOT=1 -DNEW_SIMULATOR=1 -g $(CPATH)
    DATASTORE=$(PSASRC)/datastore.a
    .c.o:
    $(CC) $(CFLAGS) -c -o $@ $<
    .cpp.o:
    $(CPP) $(CFLAGS) -c -o $@ $<
    OBJSx = cbc.o
    cbc: $(OBJSx) $
    $(CPP) $(CFLAGS) -o cbc $+ $(LIBDIR) $(COINLIBS)
    -bash-3.2$ make
    mksh: Fatal error in reader: '$' at end of line
    Current working directory /export/home/locuser/cbc_source/solver
    Then this is what happened when I tried to run the 2 commands manually:
    -bash-3.2$ gcc -DUSE_SNAPSHOT=1 -DNEW_SIMULATOR=1 -g -I/export/home/locuser/cbc_source/coin-cbc/include/coin -c -o cbc.o cbc.cpp
    -bash-3.2$ gcc -DUSE_SNAPSHOT=1 -DNEW_SIMULATOR=1 -g -I/export/home/locuser/cbc_source/coin-cbc/include/coin -o cbc cbc.o -L/export/home/locuser/cbc_source/coin-cbc/lib:/usr/sfw/lib -lCbcSolver -lCbc -lCgl -lOsiClp -lClp -lOsi -lCoinUtils -lm
    ld: fatal: library -lCbcSolver: not found
    ld: fatal: library -lCbc: not found
    ld: fatal: library -lCgl: not found
    ld: fatal: library -lOsiClp: not found
    ld: fatal: library -lClp: not found
    ld: fatal: library -lOsi: not found
    ld: fatal: library -lCoinUtils: not found
    ld: fatal: file processing errors. No output written to cbc
    collect2: ld returned 1 exit status
    However, if I cd into the directory /export/home/locuser/cbc_source/coin-cbc/lib then the libraries do indeed exist there:
    -bash-3.2$ cd /export/home/locuser/cbc_source/coin-cbc/lib
    -bash-3.2$ ls lib*.so.0
    libCbc.so.0 libClp.so.0 libOsiCbc.so.0
    libCbcSolver.so.0 libCoinUtils.so.0 libOsiClp.so.0
    libCgl.so.0 libOsi.so.0 libOsiCommonTests.so.0
    Any ideas on what I am doing wrong here? It seems like there is something non-standard about make on Solaris?

    Woo hoo! I was able to finally get past this. Thank you both for you assistance. I tried the LD_DEBUG=files option and it didn't seem to help me much. I got some additional output but it appeared unrelated. So then I separated out my -L argument into 2 separate arguments. This changed the error messages and led to some errors about operator new and delete not being found as well as some gz and BZ2 functions not being found:
    Undefined first referenced
    symbol in file
    operator new[](unsigned int) cbc.o (symbol belongs to implicit dependency /usr/sfw/lib/libstdc++.so.6)
    operator new(unsigned int) cbc.o (symbol belongs to implicit dependency /usr/sfw/lib/libstdc++.so.6)
    std::basic_string<char, std::char_traits<char>, std::allocator<char> >::operator[](unsigned int) constcbc.o (symbol belongs to implicit dependency /usr/sfw/lib/libstdc++.so.6)
    std::basic_ostream<char, std::char_traits<char> >::operator<<(std::basic_ostream<char, std::char_traits<char> >& (*)(std::basic_ostream<char, std::char_traits<char> >&))cbc.o (symbol belongs to implicit dependency /usr/sfw/lib/libstdc++.so.6)
    vtable for __cxxabiv1::__si_class_type_infocbc.o (symbol belongs to implicit dependency /usr/sfw/lib/libstdc++.so.6)
    std::basic_ostream<char, std::char_traits<char> >::operator<<(int)cbc.o (symbol belongs to implicit dependency /usr/sfw/lib/libstdc++.so.6)
    BZ2_bzRead /export/home/locuser/cbc_source/coin-cbc/lib/libCoinUtils.so
    operator delete[](void*) cbc.o (symbol belongs to implicit dependency /usr/sfw/lib/libstdc++.so.6)
    operator delete(void*) cbc.o (symbol belongs to implicit dependency /usr/sfw/lib/libstdc++.so.6)
    gzopen /export/home/locuser/cbc_source/coin-cbc/lib/libCoinUtils.so
    gzread /export/home/locuser/cbc_source/coin-cbc/lib/libCoinUtils.so
    BZ2_bzReadOpen /export/home/locuser/cbc_source/coin-cbc/lib/libCoinUtils.so
    BZ2_bzWriteOpen /export/home/locuser/cbc_source/coin-cbc/lib/libCoinUtils.so
    This led me to two conclusions:
    1. I needed to change the makefile to use g++ instead of gcc (due to the messages about the operators existing in libstd*c++*.so.6).
    2. I needed to include the libz and libbz2 libraries (by adding -lz and -lbz2) to COINLIBS.
    I made those 2 changes to the makefile and it built successfully with gmake! So now I'm off to go document this information on our wiki. Thanks for the suggestions -- they pointed me in the right direction and ultimately helped me resolve this issue. :)

  • Problem with Make (C language) command on Aquamacs

    Hello i'm french.. so sorry for my English
    i'm trying to do some basics programs on C langage on Aquamacs.
    but the "make" command does not works with me.
    my module is like this
    #include <stdlib.h>
    #include <stdio.h>
    #include "arithmetique.h"
    int max(int a, int b)
      if (a>b)
        return a;
      return b;
    int puissanceDe2(int n)
      int p2 = 1; 
      for (int i=0; i<n; i++)
        p2*=2;
      return p2;
    int resteTq(int    a,int b)
      while(a>=b)
          a-=b;
      return a;
    int resteFor(int a, int    b)
      for(;a>=b;a-=b)
      return a;
    int resteRj(int    a,int b)
      if(a<b)
        return a;
      do
        a-=b;
      while(a>b);
      return a;
    int pgcdRec(int a,int b)
      if(a==b)
        return a;
      if(a<b)
        return pgcdRec(b-a,a);
      return pgcdRec(a-b,b);
    int pgcdIter(int a,int b)
      while(a!=b)
          if(a<b)
        b-=a;
          a-=b;
      return a;
    my makefile like this:
    # Makefile
    arithmetique: arithmetique.o testArithmetique.o
        gcc arithmetique.o testArithmetique.o −o arithmetique
    arithmetique.o: arithmetique.c arithmetique.h
        gcc −std=c99 −g −Wall −Werror -c arithmetique.c
    testArithmetique.o: testArithmetique.c arithmetique.h
        gcc −std=c99 −g −Wall −Werror -c testArithmetique.c
    and my compilation error like this:
    make
    gcc −c −std=c99 −g −Wall −Werror arithmetique.c
    i686-apple-darwin11-llvm-gcc-4.2: −c: No such file or directory
    i686-apple-darwin11-llvm-gcc-4.2: −std=c99: No such file or directory
    i686-apple-darwin11-llvm-gcc-4.2: −g: No such file or directory
    i686-apple-darwin11-llvm-gcc-4.2: −Wall: No such file or directory
    i686-apple-darwin11-llvm-gcc-4.2: −Werror: No such file or directory
    arithmetique.c: In function 'puissanceDe2':
    arithmetique.c:17: error: 'for' loop initial declaration used outside C99 mode
    make: *** [arithmetique.o] Error 1
    Compilation exited abnormally with code 2 at Wed Nov 28 21:26:29
    i'm at university and thoses files works on Ubuntu but not on my Mac.. someone can tell me why?
    xCode is installed already. Direct commands with gcc works.

    Oh thanks !
    i have complete your makefile with my good files and it works !
    # Makefile
    CFLAGS=-std=c99 -g -Wall -Werror
    CC=gcc
    arithmetique: arithmetique.o testArithmetique.o
        $(CC) -o arithmetique arithmetique.o testArithmetique.o
    arithmetique.o: arithmetique.c arithmetique.h
        $(CC) $(CFLAGS) -c arithmetique.c
    testAr.o: testArithmetique.c arithmetique.h
        $(CC) $(CFLAGS) -c testArithmetique.c
    thanks for your answer.

  • Problem with Make file

    I am working on recently upgraded Solaris 9 and I am using a make file to build an application using make �f brc.bld
    It is giving the error : make: Fatal error in reader: brc.bld, line 9: Unexpected end of line seen
    for the line in this build file : %Echo Begining execution of $(_script)
    I am using cc for the make file ( cc: Forte Developer 7 C 5.4 ) and the make command
    Any help in this regard is appreciated.
    Regards,
    Vivek

    Hi,
    I am not able to find error message related to brc.bld. If a test case could be provided, that will be helpful.
    Or please try our most recent version Sun Studio 10(Trial Downloads http://www.sun.com/download/products.xml?id=41e70b09) to see whether that fixes the problem.
    Thanks.
    Rose

  • Problem with make.rules

    Hi, thanks in advance
    I've installed Forte C 6 and i created a project , i've opened
    a file and when i've tried to build it i've found the next message:
    dmake: warning : can't find file make.rules ...: no such file or directory ...
    Should i create this file ?, if I should create it , what i should
    put into ?
    Thanks

    Hi, thanks in advance
    I've installed Forte C 6 and i created a project ,
    i've opened
    a file and when i've tried to build it i've found the
    next message:
    dmake: warning : can't find file make.rules ...: no
    such file or directory ...
    Hello i've already resolved this problem , i've found a file called
    make.rules and put into /usr/share/lib/make and i've modified some
    rules were exits into this file , and all run ok .
    Thanks

  • Problem with `make`

    For some reason make has never worked. I've tried installing UnrealIRCd, eggdrop, and now tor, but every single time when I get to make it says "command not found". The Makefile's are there, too.
    Also, in case this helps, gcc is: gcc (GCC) 4.2.2

    Install the group base-devel for make and other devel type tools.

  • Problems with "Make this a descending axis"

    Are there any known issues with that chart feature?
    You can enable this option by right clicking on an axis label selecting "Data (X/Y) Axis Options" in the context menu.
    I am using a horizontal line chart with a numeric x-Axis and a logarithmic y-Axis. When I check the option above, everything is fine except my axis is ordered the wrong way round.
    When I uncheck the option nothing is painted correctly at all. The lines and markers are at completely wrong positions. When I scale down the chart, the curves themselves are painted correctly again but still with an incorrect offset.
    Am I using a combination of features that shouldn't be combined? When I let the x-Axis have an ordinal scale, everything is fine as well. But my customer wants to have a numerical scale. So it seems like I have to tell him that Crystal Reports currently is not able to do what he wants.
    Any help is greatly appreciated!
    Regards,
    Florian

    Please re-post if this is still an issue or purchase a case and have a dedicated support engineer work with you directly:
    http://store.businessobjects.com/store/bobjamer/DisplayProductByTypePage&parentCategoryID=&categoryID=11522300?resid=-Z5tUwoHAiwAAA8@NLgAAAAS&rests=1254701640551

  • Problem with make order from lenovo shop

    Hello,
    Today i try to purchase "X1 Carbon" from my cart of Lenovo shop, but on last step "Review&Order" after push button "Place order"  i receive error message like about "Unable to authorize your transaction..." and stay on the same web page, but money was transfer from my credit card to "US/MORRISVILLE/LENOVO GROUP".  On my account i don't see this order - order list is empty. 
    What i need to do ?

    Correct to all your statements.  The crop is just an adjustment, so if you crop an image it will remain that way unless you change the crop or delete the adjustment.
    What I do is create versions for the different aspect ratios and create  a folder (say called Print) with smart albums under it that collect the different aspect ratios. You can filter for aspect ratio, its under the Aperture Metadata field in the filter. The aspect ratio is expressed as two numbers separated by a colon : so a crop of 4 x 5 would be filtered by using 4:5 in the filter.
    good luck
    Message was edited by: Frank Caggiano Right, crop is one of thse things that needs to be oe on a per image basis. As you said each image will have the crop applied to a different part of the image.
    Actually crop can be stamped from one image to another(s). Of course once you've got the other images cropped to the aspect ratio you will probably want to move the crop box around as each image is of course different

  • Problems with 'make'

    Hi I have just downloaded realtek rtl98192se for my wireless pci card.
    after extracting the file, the user guide states to go to the top level of the directory and execute the command 'make' to compile the driver
    I have done so but I get the error:
    make: *** /lib/modules/2.6.18-194.el5/build: No such file or directory. Stop.
    Make: *** [all] Error 2
    When I try to find the build link and click on it, I get the message...
    The Link "build" is Broken. Move it to Trash?
    This link cant be used because its target "/usr/src/kernels/2.6.18-194.el5-x86_64" doesnt exist...
    i checked the folder that the symlink was pointing to and there is nothing in there atall...
    any ideas/?

    You need the kernel development package kernel-devel

  • A probleme with "make -f ins_rdbms.mk ioracle"

    when i execute "make -f ins_rdbms.mk ioracle" i have a error mesage
    "/oracle/ora901/rdbms/lib/opimai.o file format not recognized"
    Can someone identify exactly the solution.
    frindly

    ce point est essayé ici
    http://linux.oreillynet.com/lpt/a/4141
    Joel Pérez

  • I have problem with account that i can't make update or buy from app store There is massage appear in my payment page that i must contact with i tunes support to complete this transaction Please help me to fixe this problem as soon possible Hany hassan 00

    I have problem with account that i can't make update or buy from app store
    There is massage appear in my payment page that i must contact with i tunes support to complete this transaction
    Please help me to fixe this problem as soon possible
    Hany hassan
    0096597617317
    0096596677186
    Thank you

    You need to Contact iTunes Support...
    Apple  Support  iTunes Store  Contact Us

  • When I turn my computer on I receive a message that Apple wants to make a change to the hardware. I click on yes but nothing happens. I think this has something to do with Apple "push". I had a problem with this in iTunes when I tried to sync my iPod Touc

    When I turn my computer on (Windows 7) I receive a message that Apple wants to make a change to the hardware. I click on yes but nothing happens. The change has something to do with Apple "push". I recently had a problem with"push" on iTunes when I tried to sync my iPod Touch. I have latest software for iTunes and iPod. Can anyone tell me what to do to get this change to install?

    ptford wrote:
    When I turn my computer on (Windows 7) I receive a message that Apple wants to make a change to the hardware
    Since hardware cannot be changed with software, perhaps you would be so kind as to post the exact wording of the message?

  • I have a problem with Safari in IOS 8 on my iPad 3. The bookmarks take up a third of the screen and I can't seem to make the bookmarks disappear until I need them. The useful part of the screen is therefore very small. Any suggestions gratefully appr

    I have a problem with Safari in IOS 8 on my iPad 3. The bookmarks take up a third of the screen and I can't seem to make the bookmarks disappear until I need them. The useful part of the screen is therefore very small. Any suggestions gratefully appreciated.

    OK, it now sort of works. A couple of problems here:
    After updating IOS, Safari iCloud was "automatically" switched off
    Switching it on had no effect
    resetting my iPad automatically switched off safari iCloud again
    after switching it back on, it said "turning off safari data"
    switched it off and on again, now it said : "turning on safari data" and the sync worked
    On IOS 7 no problems
    The bookmarks not being displayed was because after pressing the book icon, it defaulted to showing the history and I had to press "Back" to get to the other options

Maybe you are looking for

  • Download as a CSV file

    hi all,     I have created a ALV ,  and i am trying to download it as a CSV file , but when i got the file , the issue occurs: as you know , the columns in CSV file is seperate by ' , '  , but one of my column is currency , the value is ' 123.456,789

  • Apple adapter MC522ZM/B

    We  now live in Portugal where, as you may know, because of use of an  alternate satellite, we cannot now receive UK programmes direct to our  TV. Would you please confirm that this adapter will feed live  BBC/ITV. etc from Apple ipad 3 to Samsung LC

  • Is this transaction scenario possible?

    Can anyone tell me if the following scenario is possible, and if so, how           it can be achieved? (I'm using WLS6.0 sp 1):           1) From a Stateless Session EJB, start a UserTransaction.           2) The SB then invokes methods on one or mor

  • WebDynpro and IBM WebSphere

    Hi everyone, I've got the following scenario. We have a bunch of WD4A applications that we'd like to integrate with IBM WebSphere. If we deploy them through portal, there won't be any WSRP support from the portal side and integration cannot be achiev

  • Applications crashing when saving

    Apps such as graphic converter, appleworks, msn, virex, all microsoft office applications and itunes all crash when trying to save something. msn crashes when changing my display picture, or sending a file to anyone. but the other ones just crash whe