Cygwin Make Just Keeps Entering Directory when making sip package











up vote
0
down vote

favorite












I am trying to install sip as per the instructions here. I've installed Cygwin to allow me to use the make command in Windows (I'm using Windows 10). I run the configure.py file, and this creates a Makefile. I then run make from the Cygwin terminal, and all it does is print over and over again



make
make[####]: Entering directory 'cygdrive/c/Users/****/sip-4.19.13'
cd sipgen


Where #### keeps increasing with every iteration.



Any idea what's wrong here?










share|improve this question


























    up vote
    0
    down vote

    favorite












    I am trying to install sip as per the instructions here. I've installed Cygwin to allow me to use the make command in Windows (I'm using Windows 10). I run the configure.py file, and this creates a Makefile. I then run make from the Cygwin terminal, and all it does is print over and over again



    make
    make[####]: Entering directory 'cygdrive/c/Users/****/sip-4.19.13'
    cd sipgen


    Where #### keeps increasing with every iteration.



    Any idea what's wrong here?










    share|improve this question
























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      I am trying to install sip as per the instructions here. I've installed Cygwin to allow me to use the make command in Windows (I'm using Windows 10). I run the configure.py file, and this creates a Makefile. I then run make from the Cygwin terminal, and all it does is print over and over again



      make
      make[####]: Entering directory 'cygdrive/c/Users/****/sip-4.19.13'
      cd sipgen


      Where #### keeps increasing with every iteration.



      Any idea what's wrong here?










      share|improve this question













      I am trying to install sip as per the instructions here. I've installed Cygwin to allow me to use the make command in Windows (I'm using Windows 10). I run the configure.py file, and this creates a Makefile. I then run make from the Cygwin terminal, and all it does is print over and over again



      make
      make[####]: Entering directory 'cygdrive/c/Users/****/sip-4.19.13'
      cd sipgen


      Where #### keeps increasing with every iteration.



      Any idea what's wrong here?







      python windows python-2.7 cygwin python-sip






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 9 at 12:47









      PProteus

      265213




      265213
























          1 Answer
          1






          active

          oldest

          votes

















          up vote
          0
          down vote













          As you have not reported exactly how you did the things;

          the following works for me:



          $ wget https://sourceforge.net/projects/pyqt/files/sip/sip-4.19.13/sip-4.19.13.tar.gz 
          ....
          2018-11-09 18:05:09 (149 KB/s) - ‘sip-4.19.13.tar.gz’ saved [1038815/1038815]
          $ tar -xf sip-4.19.13.tar.gz
          $ cd sip-4.19.13
          $ python2 configure.py
          This is SIP 4.19.13 for Python 2.7.14 on cygwin.
          The SIP code generator will be installed in /usr/bin.
          The sip.h header file will be installed in /usr/include/python2.7.
          The sip module will be installed in /usr/lib/python2.7/site-packages.
          The sip.pyi stub file will be installed in /usr/lib/python2.7/site-packages.
          The default directory to install .sip files in is /usr/share/sip.
          Creating sipconfig.py...
          Creating top level Makefile...
          Creating sip code generator Makefile...
          Creating sip module Makefile...
          $ make
          make[1]: Entering directory '/cygdrive/d/cyg_pub/tmp/sip-4.19.13/sipgen'
          gcc -c -pipe -O2 -Wall -W -DNDEBUG -I. -o main.o main.c
          ...
          g++ -shared -o sip.dll siplib.o apiversions.o descriptors.o qtlib.o threads.o objmap.o voidptr.o array.o int_convertors.o bool.o -L/usr/lib/python2.7/config -lpython2.7
          make[1]: Leaving directory '/cygdrive/d/cyg_pub/tmp/sip-4.19.13/siplib'


          so what steps were different for you ?






          share|improve this answer





















          • Additional please note that cygwin has already python2-sip and python3-sip packages
            – matzeri
            Nov 9 at 17:09











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53225988%2fcygwin-make-just-keeps-entering-directory-when-making-sip-package%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          up vote
          0
          down vote













          As you have not reported exactly how you did the things;

          the following works for me:



          $ wget https://sourceforge.net/projects/pyqt/files/sip/sip-4.19.13/sip-4.19.13.tar.gz 
          ....
          2018-11-09 18:05:09 (149 KB/s) - ‘sip-4.19.13.tar.gz’ saved [1038815/1038815]
          $ tar -xf sip-4.19.13.tar.gz
          $ cd sip-4.19.13
          $ python2 configure.py
          This is SIP 4.19.13 for Python 2.7.14 on cygwin.
          The SIP code generator will be installed in /usr/bin.
          The sip.h header file will be installed in /usr/include/python2.7.
          The sip module will be installed in /usr/lib/python2.7/site-packages.
          The sip.pyi stub file will be installed in /usr/lib/python2.7/site-packages.
          The default directory to install .sip files in is /usr/share/sip.
          Creating sipconfig.py...
          Creating top level Makefile...
          Creating sip code generator Makefile...
          Creating sip module Makefile...
          $ make
          make[1]: Entering directory '/cygdrive/d/cyg_pub/tmp/sip-4.19.13/sipgen'
          gcc -c -pipe -O2 -Wall -W -DNDEBUG -I. -o main.o main.c
          ...
          g++ -shared -o sip.dll siplib.o apiversions.o descriptors.o qtlib.o threads.o objmap.o voidptr.o array.o int_convertors.o bool.o -L/usr/lib/python2.7/config -lpython2.7
          make[1]: Leaving directory '/cygdrive/d/cyg_pub/tmp/sip-4.19.13/siplib'


          so what steps were different for you ?






          share|improve this answer





















          • Additional please note that cygwin has already python2-sip and python3-sip packages
            – matzeri
            Nov 9 at 17:09















          up vote
          0
          down vote













          As you have not reported exactly how you did the things;

          the following works for me:



          $ wget https://sourceforge.net/projects/pyqt/files/sip/sip-4.19.13/sip-4.19.13.tar.gz 
          ....
          2018-11-09 18:05:09 (149 KB/s) - ‘sip-4.19.13.tar.gz’ saved [1038815/1038815]
          $ tar -xf sip-4.19.13.tar.gz
          $ cd sip-4.19.13
          $ python2 configure.py
          This is SIP 4.19.13 for Python 2.7.14 on cygwin.
          The SIP code generator will be installed in /usr/bin.
          The sip.h header file will be installed in /usr/include/python2.7.
          The sip module will be installed in /usr/lib/python2.7/site-packages.
          The sip.pyi stub file will be installed in /usr/lib/python2.7/site-packages.
          The default directory to install .sip files in is /usr/share/sip.
          Creating sipconfig.py...
          Creating top level Makefile...
          Creating sip code generator Makefile...
          Creating sip module Makefile...
          $ make
          make[1]: Entering directory '/cygdrive/d/cyg_pub/tmp/sip-4.19.13/sipgen'
          gcc -c -pipe -O2 -Wall -W -DNDEBUG -I. -o main.o main.c
          ...
          g++ -shared -o sip.dll siplib.o apiversions.o descriptors.o qtlib.o threads.o objmap.o voidptr.o array.o int_convertors.o bool.o -L/usr/lib/python2.7/config -lpython2.7
          make[1]: Leaving directory '/cygdrive/d/cyg_pub/tmp/sip-4.19.13/siplib'


          so what steps were different for you ?






          share|improve this answer





















          • Additional please note that cygwin has already python2-sip and python3-sip packages
            – matzeri
            Nov 9 at 17:09













          up vote
          0
          down vote










          up vote
          0
          down vote









          As you have not reported exactly how you did the things;

          the following works for me:



          $ wget https://sourceforge.net/projects/pyqt/files/sip/sip-4.19.13/sip-4.19.13.tar.gz 
          ....
          2018-11-09 18:05:09 (149 KB/s) - ‘sip-4.19.13.tar.gz’ saved [1038815/1038815]
          $ tar -xf sip-4.19.13.tar.gz
          $ cd sip-4.19.13
          $ python2 configure.py
          This is SIP 4.19.13 for Python 2.7.14 on cygwin.
          The SIP code generator will be installed in /usr/bin.
          The sip.h header file will be installed in /usr/include/python2.7.
          The sip module will be installed in /usr/lib/python2.7/site-packages.
          The sip.pyi stub file will be installed in /usr/lib/python2.7/site-packages.
          The default directory to install .sip files in is /usr/share/sip.
          Creating sipconfig.py...
          Creating top level Makefile...
          Creating sip code generator Makefile...
          Creating sip module Makefile...
          $ make
          make[1]: Entering directory '/cygdrive/d/cyg_pub/tmp/sip-4.19.13/sipgen'
          gcc -c -pipe -O2 -Wall -W -DNDEBUG -I. -o main.o main.c
          ...
          g++ -shared -o sip.dll siplib.o apiversions.o descriptors.o qtlib.o threads.o objmap.o voidptr.o array.o int_convertors.o bool.o -L/usr/lib/python2.7/config -lpython2.7
          make[1]: Leaving directory '/cygdrive/d/cyg_pub/tmp/sip-4.19.13/siplib'


          so what steps were different for you ?






          share|improve this answer












          As you have not reported exactly how you did the things;

          the following works for me:



          $ wget https://sourceforge.net/projects/pyqt/files/sip/sip-4.19.13/sip-4.19.13.tar.gz 
          ....
          2018-11-09 18:05:09 (149 KB/s) - ‘sip-4.19.13.tar.gz’ saved [1038815/1038815]
          $ tar -xf sip-4.19.13.tar.gz
          $ cd sip-4.19.13
          $ python2 configure.py
          This is SIP 4.19.13 for Python 2.7.14 on cygwin.
          The SIP code generator will be installed in /usr/bin.
          The sip.h header file will be installed in /usr/include/python2.7.
          The sip module will be installed in /usr/lib/python2.7/site-packages.
          The sip.pyi stub file will be installed in /usr/lib/python2.7/site-packages.
          The default directory to install .sip files in is /usr/share/sip.
          Creating sipconfig.py...
          Creating top level Makefile...
          Creating sip code generator Makefile...
          Creating sip module Makefile...
          $ make
          make[1]: Entering directory '/cygdrive/d/cyg_pub/tmp/sip-4.19.13/sipgen'
          gcc -c -pipe -O2 -Wall -W -DNDEBUG -I. -o main.o main.c
          ...
          g++ -shared -o sip.dll siplib.o apiversions.o descriptors.o qtlib.o threads.o objmap.o voidptr.o array.o int_convertors.o bool.o -L/usr/lib/python2.7/config -lpython2.7
          make[1]: Leaving directory '/cygdrive/d/cyg_pub/tmp/sip-4.19.13/siplib'


          so what steps were different for you ?







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Nov 9 at 17:07









          matzeri

          3,437268




          3,437268












          • Additional please note that cygwin has already python2-sip and python3-sip packages
            – matzeri
            Nov 9 at 17:09


















          • Additional please note that cygwin has already python2-sip and python3-sip packages
            – matzeri
            Nov 9 at 17:09
















          Additional please note that cygwin has already python2-sip and python3-sip packages
          – matzeri
          Nov 9 at 17:09




          Additional please note that cygwin has already python2-sip and python3-sip packages
          – matzeri
          Nov 9 at 17:09


















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.





          Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


          Please pay close attention to the following guidance:


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53225988%2fcygwin-make-just-keeps-entering-directory-when-making-sip-package%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          這個網誌中的熱門文章

          Hercules Kyvelos

          Tangent Lines Diagram Along Smooth Curve

          Yusuf al-Mu'taman ibn Hud