Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. Installation and Deployment
  4. make[1]: *** [makefile:1624: obj/release/pcre_exec.o] Error 1
Forum Updated to NodeBB v4.3 + New Features

make[1]: *** [makefile:1624: obj/release/pcre_exec.o] Error 1

Scheduled Pinned Locked Moved Unsolved Installation and Deployment
31 Posts 4 Posters 6.6k Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • S Offline
    S Offline
    Sekhar
    wrote on last edited by
    #1

    i was built a qmake for arm-linux-gnueabihf
    if i was run command "make" i got this is an error...

    ../3rdparty/javascriptcore/JavaScriptCore/pcre/pcre_exec.cpp:50:
    /usr/arm-linux-gnueabihf/include/c++/9/bits/unique_ptr.h:53:28: note: declared here
    53 | template<typename> class auto_ptr;
    | ^~~~~~~~
    make[1]: *** [Makefile:1624: obj/release/pcre_exec.o] Error 1
    make[1]: Leaving directory '/home/debian/qt-4.8/src/script'
    make: *** [Makefile:548: sub-script-install_subtargets-ordered] Error 2

    Can anyone please tell me how to resolve this problem.
    Thank you.

    aha_1980A 1 Reply Last reply
    0
    • S Sekhar

      i was built a qmake for arm-linux-gnueabihf
      if i was run command "make" i got this is an error...

      ../3rdparty/javascriptcore/JavaScriptCore/pcre/pcre_exec.cpp:50:
      /usr/arm-linux-gnueabihf/include/c++/9/bits/unique_ptr.h:53:28: note: declared here
      53 | template<typename> class auto_ptr;
      | ^~~~~~~~
      make[1]: *** [Makefile:1624: obj/release/pcre_exec.o] Error 1
      make[1]: Leaving directory '/home/debian/qt-4.8/src/script'
      make: *** [Makefile:548: sub-script-install_subtargets-ordered] Error 2

      Can anyone please tell me how to resolve this problem.
      Thank you.

      aha_1980A Offline
      aha_1980A Offline
      aha_1980
      Lifetime Qt Champion
      wrote on last edited by aha_1980
      #2

      Hi @sekhar,

      you will need to show some more lines before the ones you posted.

      Also, which compiler version is that? Note that Qt 4.8 is quite old and with modern compilers you may run into issues.

      Regards

      Qt has to stay free or it will die.

      1 Reply Last reply
      0
      • S Offline
        S Offline
        Sekhar
        wrote on last edited by
        #3

        I was used "debian-10.1.0-i386" operating system in VMworkstation along with "qt-everywhere-opensource-src-4.8.7 (arm-linux-gnueabihf)" compiler in "qt-5.2.0-x86".

        and i Followed this procedure [thoughtwaves.com](link url)

        and i got this errors..... at the time of build "MAKE"

        In file included from ../3rdparty/javascriptcore/JavaScriptCore/wtf/FastAllocBase.h:84,
        from ../3rdparty/javascriptcore/JavaScriptCore/wtf/Vector.h:24,
        from ../3rdparty/javascriptcore/JavaScriptCore/pcre/pcre_exec.cpp:50:
        ../3rdparty/javascriptcore/JavaScriptCore/wtf/TypeTraits.h:173:69: error: ‘std::tr1’ has not been declared
        173 | ename T> struct HasTrivialConstructor : public std::tr1::has_trivial_constructor<T> { };
        | ^~~

        ../3rdparty/javascriptcore/JavaScriptCore/wtf/TypeTraits.h:173:74: error: expected ‘{’ before ‘has_trivial_constructor’
        173 | T> struct HasTrivialConstructor : public std::tr1::has_trivial_constructor<T> { };
        | ^~~~~~~~~~~~~~~~~~~~~~~

        ../3rdparty/javascriptcore/JavaScriptCore/wtf/TypeTraits.h:174:68: error: ‘std::tr1’ has not been declared
        174 | pename T> struct HasTrivialDestructor : public std::tr1::has_trivial_destructor<T> { };
        | ^~~

        ../3rdparty/javascriptcore/JavaScriptCore/wtf/TypeTraits.h:174:73: error: expected ‘{’ before ‘has_trivial_destructor’
        174 | e T> struct HasTrivialDestructor : public std::tr1::has_trivial_destructor<T> { };
        | ^~~~~~~~~~~~~~~~~~~~~~

        In file included from ../3rdparty/javascriptcore/JavaScriptCore/wtf/VectorTraits.h:24,
        from ../3rdparty/javascriptcore/JavaScriptCore/wtf/Vector.h:27,
        from ../3rdparty/javascriptcore/JavaScriptCore/pcre/pcre_exec.cpp:50:
        ../3rdparty/javascriptcore/JavaScriptCore/wtf/OwnPtr.h:43:21: warning: ‘template<class> class std::auto_ptr’ is deprecated [-Wdeprecated-declarations]
        43 | OwnPtr(std::auto_ptr<ValueType> autoPtr) : m_ptr(autoPtr.release()) { }
        | ^~~~~~~~
        In file included from /usr/arm-linux-gnueabihf/include/c++/9/memory:80,
        from ../3rdparty/javascriptcore/JavaScriptCore/wtf/OwnPtr.h:29,
        from ../3rdparty/javascriptcore/JavaScriptCore/wtf/VectorTraits.h:24,
        from ../3rdparty/javascriptcore/JavaScriptCore/wtf/Vector.h:27,
        from ../3rdparty/javascriptcore/JavaScriptCore/pcre/pcre_exec.cpp:50:
        /usr/arm-linux-gnueabihf/include/c++/9/bits/unique_ptr.h:53:28: note: declared here
        53 | template<typename> class auto_ptr;
        | ^~~~~~~~
        In file included from ../3rdparty/javascriptcore/JavaScriptCore/wtf/VectorTraits.h:24,
        from ../3rdparty/javascriptcore/JavaScriptCore/wtf/Vector.h:27,
        from ../3rdparty/javascriptcore/JavaScriptCore/pcre/pcre_exec.cpp:50:
        ../3rdparty/javascriptcore/JavaScriptCore/wtf/OwnPtr.h:61:25: warning: ‘template<class> class std::auto_ptr’ is deprecated [-Wdeprecated-declarations]
        61 | void adopt(std::auto_ptr<ValueType> autoPtr) { ASSERT(!autoPtr.get() || m_ptr != autoPtr.get()); deleteOwnedPtr(m_ptr); m_ptr = autoPtr.release(); }
        | ^~~~~~~~
        In file included from /usr/arm-linux-gnueabihf/include/c++/9/memory:80,
        from ../3rdparty/javascriptcore/JavaScriptCore/wtf/OwnPtr.h:29,
        from ../3rdparty/javascriptcore/JavaScriptCore/wtf/VectorTraits.h:24,
        from ../3rdparty/javascriptcore/JavaScriptCore/wtf/Vector.h:27,
        from ../3rdparty/javascriptcore/JavaScriptCore/pcre/pcre_exec.cpp:50:
        /usr/arm-linux-gnueabihf/include/c++/9/bits/unique_ptr.h:53:28: note: declared here
        53 | template<typename> class auto_ptr;
        | ^~~~~~~~
        In file included from ../3rdparty/javascriptcore/JavaScriptCore/wtf/Vector.h:27,
        from ../3rdparty/javascriptcore/JavaScriptCore/pcre/pcre_exec.cpp:50:
        ../3rdparty/javascriptcore/JavaScriptCore/wtf/VectorTraits.h:84:30: warning: ‘template<class> class std::auto_ptr’ is deprecated [-Wdeprecated-declarations]
        84 | struct VectorTraits<std::auto_ptr<P> > : SimpleClassVectorTraits { };
        | ^~~~~~~~
        In file included from /usr/arm-linux-gnueabihf/include/c++/9/memory:80,
        from ../3rdparty/javascriptcore/JavaScriptCore/wtf/OwnPtr.h:29,
        from ../3rdparty/javascriptcore/JavaScriptCore/wtf/VectorTraits.h:24,
        from ../3rdparty/javascriptcore/JavaScriptCore/wtf/Vector.h:27,
        from ../3rdparty/javascriptcore/JavaScriptCore/pcre/pcre_exec.cpp:50:
        /usr/arm-linux-gnueabihf/include/c++/9/bits/unique_ptr.h:53:28: note: declared here
        53 | template<typename> class auto_ptr;
        | ^~~~~~~~
        make[1]: *** [Makefile:1624: obj/release/pcre_exec.o] Error 1
        make[1]: Leaving directory '/home/debian/qt-4.8/src/script'
        make: *** [Makefile:528: sub-script-make_default-ordered] Error 2

        jsulmJ aha_1980A 2 Replies Last reply
        0
        • S Sekhar

          I was used "debian-10.1.0-i386" operating system in VMworkstation along with "qt-everywhere-opensource-src-4.8.7 (arm-linux-gnueabihf)" compiler in "qt-5.2.0-x86".

          and i Followed this procedure [thoughtwaves.com](link url)

          and i got this errors..... at the time of build "MAKE"

          In file included from ../3rdparty/javascriptcore/JavaScriptCore/wtf/FastAllocBase.h:84,
          from ../3rdparty/javascriptcore/JavaScriptCore/wtf/Vector.h:24,
          from ../3rdparty/javascriptcore/JavaScriptCore/pcre/pcre_exec.cpp:50:
          ../3rdparty/javascriptcore/JavaScriptCore/wtf/TypeTraits.h:173:69: error: ‘std::tr1’ has not been declared
          173 | ename T> struct HasTrivialConstructor : public std::tr1::has_trivial_constructor<T> { };
          | ^~~

          ../3rdparty/javascriptcore/JavaScriptCore/wtf/TypeTraits.h:173:74: error: expected ‘{’ before ‘has_trivial_constructor’
          173 | T> struct HasTrivialConstructor : public std::tr1::has_trivial_constructor<T> { };
          | ^~~~~~~~~~~~~~~~~~~~~~~

          ../3rdparty/javascriptcore/JavaScriptCore/wtf/TypeTraits.h:174:68: error: ‘std::tr1’ has not been declared
          174 | pename T> struct HasTrivialDestructor : public std::tr1::has_trivial_destructor<T> { };
          | ^~~

          ../3rdparty/javascriptcore/JavaScriptCore/wtf/TypeTraits.h:174:73: error: expected ‘{’ before ‘has_trivial_destructor’
          174 | e T> struct HasTrivialDestructor : public std::tr1::has_trivial_destructor<T> { };
          | ^~~~~~~~~~~~~~~~~~~~~~

          In file included from ../3rdparty/javascriptcore/JavaScriptCore/wtf/VectorTraits.h:24,
          from ../3rdparty/javascriptcore/JavaScriptCore/wtf/Vector.h:27,
          from ../3rdparty/javascriptcore/JavaScriptCore/pcre/pcre_exec.cpp:50:
          ../3rdparty/javascriptcore/JavaScriptCore/wtf/OwnPtr.h:43:21: warning: ‘template<class> class std::auto_ptr’ is deprecated [-Wdeprecated-declarations]
          43 | OwnPtr(std::auto_ptr<ValueType> autoPtr) : m_ptr(autoPtr.release()) { }
          | ^~~~~~~~
          In file included from /usr/arm-linux-gnueabihf/include/c++/9/memory:80,
          from ../3rdparty/javascriptcore/JavaScriptCore/wtf/OwnPtr.h:29,
          from ../3rdparty/javascriptcore/JavaScriptCore/wtf/VectorTraits.h:24,
          from ../3rdparty/javascriptcore/JavaScriptCore/wtf/Vector.h:27,
          from ../3rdparty/javascriptcore/JavaScriptCore/pcre/pcre_exec.cpp:50:
          /usr/arm-linux-gnueabihf/include/c++/9/bits/unique_ptr.h:53:28: note: declared here
          53 | template<typename> class auto_ptr;
          | ^~~~~~~~
          In file included from ../3rdparty/javascriptcore/JavaScriptCore/wtf/VectorTraits.h:24,
          from ../3rdparty/javascriptcore/JavaScriptCore/wtf/Vector.h:27,
          from ../3rdparty/javascriptcore/JavaScriptCore/pcre/pcre_exec.cpp:50:
          ../3rdparty/javascriptcore/JavaScriptCore/wtf/OwnPtr.h:61:25: warning: ‘template<class> class std::auto_ptr’ is deprecated [-Wdeprecated-declarations]
          61 | void adopt(std::auto_ptr<ValueType> autoPtr) { ASSERT(!autoPtr.get() || m_ptr != autoPtr.get()); deleteOwnedPtr(m_ptr); m_ptr = autoPtr.release(); }
          | ^~~~~~~~
          In file included from /usr/arm-linux-gnueabihf/include/c++/9/memory:80,
          from ../3rdparty/javascriptcore/JavaScriptCore/wtf/OwnPtr.h:29,
          from ../3rdparty/javascriptcore/JavaScriptCore/wtf/VectorTraits.h:24,
          from ../3rdparty/javascriptcore/JavaScriptCore/wtf/Vector.h:27,
          from ../3rdparty/javascriptcore/JavaScriptCore/pcre/pcre_exec.cpp:50:
          /usr/arm-linux-gnueabihf/include/c++/9/bits/unique_ptr.h:53:28: note: declared here
          53 | template<typename> class auto_ptr;
          | ^~~~~~~~
          In file included from ../3rdparty/javascriptcore/JavaScriptCore/wtf/Vector.h:27,
          from ../3rdparty/javascriptcore/JavaScriptCore/pcre/pcre_exec.cpp:50:
          ../3rdparty/javascriptcore/JavaScriptCore/wtf/VectorTraits.h:84:30: warning: ‘template<class> class std::auto_ptr’ is deprecated [-Wdeprecated-declarations]
          84 | struct VectorTraits<std::auto_ptr<P> > : SimpleClassVectorTraits { };
          | ^~~~~~~~
          In file included from /usr/arm-linux-gnueabihf/include/c++/9/memory:80,
          from ../3rdparty/javascriptcore/JavaScriptCore/wtf/OwnPtr.h:29,
          from ../3rdparty/javascriptcore/JavaScriptCore/wtf/VectorTraits.h:24,
          from ../3rdparty/javascriptcore/JavaScriptCore/wtf/Vector.h:27,
          from ../3rdparty/javascriptcore/JavaScriptCore/pcre/pcre_exec.cpp:50:
          /usr/arm-linux-gnueabihf/include/c++/9/bits/unique_ptr.h:53:28: note: declared here
          53 | template<typename> class auto_ptr;
          | ^~~~~~~~
          make[1]: *** [Makefile:1624: obj/release/pcre_exec.o] Error 1
          make[1]: Leaving directory '/home/debian/qt-4.8/src/script'
          make: *** [Makefile:528: sub-script-make_default-ordered] Error 2

          jsulmJ Offline
          jsulmJ Offline
          jsulm
          Lifetime Qt Champion
          wrote on last edited by
          #4

          @Sekhar Do you really have to use Qt4.8?
          Also, this is really unclear: ""qt-everywhere-opensource-src-4.8.7 (arm-linux-gnueabihf)" compiler in "qt-5.2.0-x86"" - here is no compiler mentioned. So, which exact Qt version do you want to use? Qt4.8 or Qt5?

          https://forum.qt.io/topic/113070/qt-code-of-conduct

          1 Reply Last reply
          1
          • S Sekhar

            I was used "debian-10.1.0-i386" operating system in VMworkstation along with "qt-everywhere-opensource-src-4.8.7 (arm-linux-gnueabihf)" compiler in "qt-5.2.0-x86".

            and i Followed this procedure [thoughtwaves.com](link url)

            and i got this errors..... at the time of build "MAKE"

            In file included from ../3rdparty/javascriptcore/JavaScriptCore/wtf/FastAllocBase.h:84,
            from ../3rdparty/javascriptcore/JavaScriptCore/wtf/Vector.h:24,
            from ../3rdparty/javascriptcore/JavaScriptCore/pcre/pcre_exec.cpp:50:
            ../3rdparty/javascriptcore/JavaScriptCore/wtf/TypeTraits.h:173:69: error: ‘std::tr1’ has not been declared
            173 | ename T> struct HasTrivialConstructor : public std::tr1::has_trivial_constructor<T> { };
            | ^~~

            ../3rdparty/javascriptcore/JavaScriptCore/wtf/TypeTraits.h:173:74: error: expected ‘{’ before ‘has_trivial_constructor’
            173 | T> struct HasTrivialConstructor : public std::tr1::has_trivial_constructor<T> { };
            | ^~~~~~~~~~~~~~~~~~~~~~~

            ../3rdparty/javascriptcore/JavaScriptCore/wtf/TypeTraits.h:174:68: error: ‘std::tr1’ has not been declared
            174 | pename T> struct HasTrivialDestructor : public std::tr1::has_trivial_destructor<T> { };
            | ^~~

            ../3rdparty/javascriptcore/JavaScriptCore/wtf/TypeTraits.h:174:73: error: expected ‘{’ before ‘has_trivial_destructor’
            174 | e T> struct HasTrivialDestructor : public std::tr1::has_trivial_destructor<T> { };
            | ^~~~~~~~~~~~~~~~~~~~~~

            In file included from ../3rdparty/javascriptcore/JavaScriptCore/wtf/VectorTraits.h:24,
            from ../3rdparty/javascriptcore/JavaScriptCore/wtf/Vector.h:27,
            from ../3rdparty/javascriptcore/JavaScriptCore/pcre/pcre_exec.cpp:50:
            ../3rdparty/javascriptcore/JavaScriptCore/wtf/OwnPtr.h:43:21: warning: ‘template<class> class std::auto_ptr’ is deprecated [-Wdeprecated-declarations]
            43 | OwnPtr(std::auto_ptr<ValueType> autoPtr) : m_ptr(autoPtr.release()) { }
            | ^~~~~~~~
            In file included from /usr/arm-linux-gnueabihf/include/c++/9/memory:80,
            from ../3rdparty/javascriptcore/JavaScriptCore/wtf/OwnPtr.h:29,
            from ../3rdparty/javascriptcore/JavaScriptCore/wtf/VectorTraits.h:24,
            from ../3rdparty/javascriptcore/JavaScriptCore/wtf/Vector.h:27,
            from ../3rdparty/javascriptcore/JavaScriptCore/pcre/pcre_exec.cpp:50:
            /usr/arm-linux-gnueabihf/include/c++/9/bits/unique_ptr.h:53:28: note: declared here
            53 | template<typename> class auto_ptr;
            | ^~~~~~~~
            In file included from ../3rdparty/javascriptcore/JavaScriptCore/wtf/VectorTraits.h:24,
            from ../3rdparty/javascriptcore/JavaScriptCore/wtf/Vector.h:27,
            from ../3rdparty/javascriptcore/JavaScriptCore/pcre/pcre_exec.cpp:50:
            ../3rdparty/javascriptcore/JavaScriptCore/wtf/OwnPtr.h:61:25: warning: ‘template<class> class std::auto_ptr’ is deprecated [-Wdeprecated-declarations]
            61 | void adopt(std::auto_ptr<ValueType> autoPtr) { ASSERT(!autoPtr.get() || m_ptr != autoPtr.get()); deleteOwnedPtr(m_ptr); m_ptr = autoPtr.release(); }
            | ^~~~~~~~
            In file included from /usr/arm-linux-gnueabihf/include/c++/9/memory:80,
            from ../3rdparty/javascriptcore/JavaScriptCore/wtf/OwnPtr.h:29,
            from ../3rdparty/javascriptcore/JavaScriptCore/wtf/VectorTraits.h:24,
            from ../3rdparty/javascriptcore/JavaScriptCore/wtf/Vector.h:27,
            from ../3rdparty/javascriptcore/JavaScriptCore/pcre/pcre_exec.cpp:50:
            /usr/arm-linux-gnueabihf/include/c++/9/bits/unique_ptr.h:53:28: note: declared here
            53 | template<typename> class auto_ptr;
            | ^~~~~~~~
            In file included from ../3rdparty/javascriptcore/JavaScriptCore/wtf/Vector.h:27,
            from ../3rdparty/javascriptcore/JavaScriptCore/pcre/pcre_exec.cpp:50:
            ../3rdparty/javascriptcore/JavaScriptCore/wtf/VectorTraits.h:84:30: warning: ‘template<class> class std::auto_ptr’ is deprecated [-Wdeprecated-declarations]
            84 | struct VectorTraits<std::auto_ptr<P> > : SimpleClassVectorTraits { };
            | ^~~~~~~~
            In file included from /usr/arm-linux-gnueabihf/include/c++/9/memory:80,
            from ../3rdparty/javascriptcore/JavaScriptCore/wtf/OwnPtr.h:29,
            from ../3rdparty/javascriptcore/JavaScriptCore/wtf/VectorTraits.h:24,
            from ../3rdparty/javascriptcore/JavaScriptCore/wtf/Vector.h:27,
            from ../3rdparty/javascriptcore/JavaScriptCore/pcre/pcre_exec.cpp:50:
            /usr/arm-linux-gnueabihf/include/c++/9/bits/unique_ptr.h:53:28: note: declared here
            53 | template<typename> class auto_ptr;
            | ^~~~~~~~
            make[1]: *** [Makefile:1624: obj/release/pcre_exec.o] Error 1
            make[1]: Leaving directory '/home/debian/qt-4.8/src/script'
            make: *** [Makefile:528: sub-script-make_default-ordered] Error 2

            aha_1980A Offline
            aha_1980A Offline
            aha_1980
            Lifetime Qt Champion
            wrote on last edited by
            #5

            @Sekhar said in make[1]: *** [makefile:1624: obj/release/pcre_exec.o] Error 1:

            std::tr1

            As I expected, the compiler is to new. The source code was written in Pre-C++11 times, and the namespace std::tr1 no longer exists (or would have to be enabled by hand, depending on the compiler).

            https://en.wikipedia.org/wiki/C%2B%2B_Technical_Report_1

            Regards

            Qt has to stay free or it will die.

            1 Reply Last reply
            1
            • S Offline
              S Offline
              Sekhar
              wrote on last edited by
              #6

              Basically i am the beginner for QT platform and my intention is to Develop a Basic QT application run on my BeagleBone Black("arm-linux-gnueabihf" based compiler) board that's why i am trying to build a make file by followed these Documents [http://thoughtwaves.com/](link url) and [http://thoughtwaves.com/?p=50](link url).

              if you don't mind could you please suggest me the way how to developing and run a basic QT application on my BeagleBone Black board.

              jsulmJ 1 Reply Last reply
              0
              • S Sekhar

                Basically i am the beginner for QT platform and my intention is to Develop a Basic QT application run on my BeagleBone Black("arm-linux-gnueabihf" based compiler) board that's why i am trying to build a make file by followed these Documents [http://thoughtwaves.com/](link url) and [http://thoughtwaves.com/?p=50](link url).

                if you don't mind could you please suggest me the way how to developing and run a basic QT application on my BeagleBone Black board.

                jsulmJ Offline
                jsulmJ Offline
                jsulm
                Lifetime Qt Champion
                wrote on last edited by
                #7

                @Sekhar Here for example: https://wiki.qt.io/BeagleBone_Black_Beginners_Guide
                It uses Qt5.7, but I suggest to use the current stable version (5.13.1).

                https://forum.qt.io/topic/113070/qt-code-of-conduct

                1 Reply Last reply
                2
                • S Offline
                  S Offline
                  Sekhar
                  wrote on last edited by
                  #8

                  Error 1:
                  I will try to ofline-install QT5.5.1 on my Ubuntu12.04(32-bit) System. i tried to execute file it will shows
                  " bash: ./qt-opensource-linux-x64-5.5.1.run: cannot execute binary file "

                  if i was used these below commands :
                  $ chmod +x qt-opensource-linux-x64-5.5.1.run
                  $ ./qt-opensource-linux-x64-5.5.1.run

                  still it will show's same error.
                  " bash: ./qt-opensource-linux-x64-5.5.1.run: cannot execute binary file "

                  Capture.JPG

                  I doesn't understand why it will happens.
                  i was download from [https://mirrors.tuna.tsinghua.edu.cn/qt/archive/qt/5.5/5.5.1/qt-opensource-linux-x86-5.5.1.run](link url)

                  Error 2:
                  I was followed what "BeagleBone_Black_Beginners_guide " suggest those steps
                  in
                  step 2. Copy bbb image to workstation:

                  workstation@workstation:~/opt$ nc -l 19000|dd bs=1M of=bbb-with-ssl-and-icu-dev.img

                  it will shows on every time.

                  Capture2.JPG

                  I tried more that 5 times nearly 3 hours but same result on every time.

                  aha_1980A jsulmJ 2 Replies Last reply
                  0
                  • S Sekhar

                    Error 1:
                    I will try to ofline-install QT5.5.1 on my Ubuntu12.04(32-bit) System. i tried to execute file it will shows
                    " bash: ./qt-opensource-linux-x64-5.5.1.run: cannot execute binary file "

                    if i was used these below commands :
                    $ chmod +x qt-opensource-linux-x64-5.5.1.run
                    $ ./qt-opensource-linux-x64-5.5.1.run

                    still it will show's same error.
                    " bash: ./qt-opensource-linux-x64-5.5.1.run: cannot execute binary file "

                    Capture.JPG

                    I doesn't understand why it will happens.
                    i was download from [https://mirrors.tuna.tsinghua.edu.cn/qt/archive/qt/5.5/5.5.1/qt-opensource-linux-x86-5.5.1.run](link url)

                    Error 2:
                    I was followed what "BeagleBone_Black_Beginners_guide " suggest those steps
                    in
                    step 2. Copy bbb image to workstation:

                    workstation@workstation:~/opt$ nc -l 19000|dd bs=1M of=bbb-with-ssl-and-icu-dev.img

                    it will shows on every time.

                    Capture2.JPG

                    I tried more that 5 times nearly 3 hours but same result on every time.

                    aha_1980A Offline
                    aha_1980A Offline
                    aha_1980
                    Lifetime Qt Champion
                    wrote on last edited by aha_1980
                    #9

                    @Sekhar

                    Ubuntu12.04(32-bit)

                    That is a pretty old OS - I can't guarantee that will work. And is the offline installer 32 bit too? Because you write both x86 and x64.

                    Qt has to stay free or it will die.

                    1 Reply Last reply
                    0
                    • S Sekhar

                      Error 1:
                      I will try to ofline-install QT5.5.1 on my Ubuntu12.04(32-bit) System. i tried to execute file it will shows
                      " bash: ./qt-opensource-linux-x64-5.5.1.run: cannot execute binary file "

                      if i was used these below commands :
                      $ chmod +x qt-opensource-linux-x64-5.5.1.run
                      $ ./qt-opensource-linux-x64-5.5.1.run

                      still it will show's same error.
                      " bash: ./qt-opensource-linux-x64-5.5.1.run: cannot execute binary file "

                      Capture.JPG

                      I doesn't understand why it will happens.
                      i was download from [https://mirrors.tuna.tsinghua.edu.cn/qt/archive/qt/5.5/5.5.1/qt-opensource-linux-x86-5.5.1.run](link url)

                      Error 2:
                      I was followed what "BeagleBone_Black_Beginners_guide " suggest those steps
                      in
                      step 2. Copy bbb image to workstation:

                      workstation@workstation:~/opt$ nc -l 19000|dd bs=1M of=bbb-with-ssl-and-icu-dev.img

                      it will shows on every time.

                      Capture2.JPG

                      I tried more that 5 times nearly 3 hours but same result on every time.

                      jsulmJ Offline
                      jsulmJ Offline
                      jsulm
                      Lifetime Qt Champion
                      wrote on last edited by
                      #10

                      @Sekhar You're trying to execute a 64bit binary on a 32bit OS, this is not going to work. You need 32bit Qt version. Also, why such an old Ubuntu version and such an old Qt version?!

                      https://forum.qt.io/topic/113070/qt-code-of-conduct

                      S 1 Reply Last reply
                      1
                      • jsulmJ jsulm

                        @Sekhar You're trying to execute a 64bit binary on a 32bit OS, this is not going to work. You need 32bit Qt version. Also, why such an old Ubuntu version and such an old Qt version?!

                        S Offline
                        S Offline
                        Sekhar
                        wrote on last edited by
                        #11

                        @jsulm Sorry i forgot it. Error 1 solved. can you please give me solution for Error 2.

                        jsulmJ 1 Reply Last reply
                        0
                        • S Sekhar

                          @jsulm Sorry i forgot it. Error 1 solved. can you please give me solution for Error 2.

                          jsulmJ Offline
                          jsulmJ Offline
                          jsulm
                          Lifetime Qt Champion
                          wrote on last edited by
                          #12

                          @Sekhar You have issue two commands: one on your device and one on your workstation. Did you do both?

                          # This is done on workstation (host)
                          workstation@workstation:~/opt$ nc -l 19000|dd bs=1M of=bbb-with-ssl-and-icu-dev.img
                          
                          # This is done on device, adapt it to your environment don't just copy paste as is (device file name and IP could be different)
                          root@Matilda:~# dd bs=1M if=/dev/mmcblk0|nc 192.168.7.1 19000
                          

                          https://forum.qt.io/topic/113070/qt-code-of-conduct

                          S 1 Reply Last reply
                          0
                          • jsulmJ jsulm

                            @Sekhar You have issue two commands: one on your device and one on your workstation. Did you do both?

                            # This is done on workstation (host)
                            workstation@workstation:~/opt$ nc -l 19000|dd bs=1M of=bbb-with-ssl-and-icu-dev.img
                            
                            # This is done on device, adapt it to your environment don't just copy paste as is (device file name and IP could be different)
                            root@Matilda:~# dd bs=1M if=/dev/mmcblk0|nc 192.168.7.1 19000
                            
                            S Offline
                            S Offline
                            Sekhar
                            wrote on last edited by Sekhar
                            #13

                            @jsulm said in make[1]: *** [makefile:1624: obj/release/pcre_exec.o] Error 1:

                            This is done on workstation (host)

                            workstation@workstation:~/opt$ nc -l 19000|dd bs=1M of=bbb-with-ssl-and-icu-dev.img

                            I had a problem on workstation.
                            already i was upload a image on above conversation.

                            jsulmJ 1 Reply Last reply
                            0
                            • S Sekhar

                              @jsulm said in make[1]: *** [makefile:1624: obj/release/pcre_exec.o] Error 1:

                              This is done on workstation (host)

                              workstation@workstation:~/opt$ nc -l 19000|dd bs=1M of=bbb-with-ssl-and-icu-dev.img

                              I had a problem on workstation.
                              already i was upload a image on above conversation.

                              jsulmJ Offline
                              jsulmJ Offline
                              jsulm
                              Lifetime Qt Champion
                              wrote on last edited by
                              #14

                              @Sekhar But did you issue the second command on the device also? Because without it the command on your workstation will timeout.

                              https://forum.qt.io/topic/113070/qt-code-of-conduct

                              1 Reply Last reply
                              0
                              • S Offline
                                S Offline
                                Sekhar
                                wrote on last edited by Sekhar
                                #15

                                i tried on both workstation and beaglebone also but didn't response. Ok i will try it once again.
                                Nearly How much space(Memory) for this operation is required in my workstation(system).
                                thank you.

                                jsulmJ 1 Reply Last reply
                                0
                                • S Sekhar

                                  i tried on both workstation and beaglebone also but didn't response. Ok i will try it once again.
                                  Nearly How much space(Memory) for this operation is required in my workstation(system).
                                  thank you.

                                  jsulmJ Offline
                                  jsulmJ Offline
                                  jsulm
                                  Lifetime Qt Champion
                                  wrote on last edited by
                                  #16

                                  @Sekhar said in make[1]: *** [makefile:1624: obj/release/pcre_exec.o] Error 1:

                                  Nearly How much space(Memory) for this operation

                                  Depends on the size of the device partition.
                                  Did you make sure you're using correct IP address?

                                  https://forum.qt.io/topic/113070/qt-code-of-conduct

                                  1 Reply Last reply
                                  0
                                  • S Offline
                                    S Offline
                                    Sekhar
                                    wrote on last edited by
                                    #17

                                    @jsulm
                                    Thanks for your vlauble time to spent with my problems solving.
                                    that image file copied in my /opt/ folder.

                                    now I am trying to do next step: mount that image, but it shows an error message like

                                    file.JPG

                                    in my vertual system had remaing 2GB space only, after copied this image file. that image file takes nearly 16GB.

                                    jsulmJ 1 Reply Last reply
                                    0
                                    • S Sekhar

                                      @jsulm
                                      Thanks for your vlauble time to spent with my problems solving.
                                      that image file copied in my /opt/ folder.

                                      now I am trying to do next step: mount that image, but it shows an error message like

                                      file.JPG

                                      in my vertual system had remaing 2GB space only, after copied this image file. that image file takes nearly 16GB.

                                      jsulmJ Offline
                                      jsulmJ Offline
                                      jsulm
                                      Lifetime Qt Champion
                                      wrote on last edited by
                                      #18

                                      @Sekhar said in make[1]: *** [makefile:1624: obj/release/pcre_exec.o] Error 1:

                                      in my vertual system had remaing 2GB

                                      If it is a virtual system you can resize the virtual hard disk and then resize the partition in your virtual system.

                                      Regarding mount issue: try to specify file system type using -t parameter (use same file system type used on your device).

                                      https://forum.qt.io/topic/113070/qt-code-of-conduct

                                      1 Reply Last reply
                                      1
                                      • S Offline
                                        S Offline
                                        Sekhar
                                        wrote on last edited by
                                        #19

                                        As i was installed Ubuntu 19.04 and i would bi tried these steps mentioned in the document [https://wiki.qt.io/BeagleBone_Black_Beginners_Guide](link url)
                                        but at the 3 point(Preparing workstation) i got an error.... like
                                        1.JPG

                                        and if i was followed another documentation [http://thoughtwaves.com/?p=50](link url) and i got an error like
                                        2.JPG

                                        i was struggled last 2 months for interfacing QT with Beaglebone Black.
                                        my intention is to developing and run a basic QT application on my BeagleBone Black board.

                                        could you please tell me how can i slove this error.

                                        1 Reply Last reply
                                        0
                                        • SGaistS Offline
                                          SGaistS Offline
                                          SGaist
                                          Lifetime Qt Champion
                                          wrote on last edited by
                                          #20

                                          Start by stopping mixing Qt 4 and Qt 5 instruction sets.

                                          Follow the Qt wiki instructions and only these.

                                          Interested in AI ? www.idiap.ch
                                          Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                                          S 1 Reply Last reply
                                          1

                                          • Login

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • Users
                                          • Groups
                                          • Search
                                          • Get Qt Extensions
                                          • Unsolved