Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. Mobile and Embedded
  4. segmentation fault
Forum Updated to NodeBB v4.3 + New Features

segmentation fault

Scheduled Pinned Locked Moved Unsolved Mobile and Embedded
qt 4.8cross-compilingarmv7mqtt
61 Posts 6 Posters 26.2k 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.
  • M Milav
    15 Oct 2019, 07:30

    @JonB said in segmentation fault:

    qDebug() << *mosq

    gives error :-

    /home/tdp0009/Teq_Projects/Aug_2019/HMI/Firmware/QT/12_oct_hmi/qt-mosquitto-master/mainwindow.cpp:54: note:   'qtmosq' is not derived from 'const QFlags<T>'
    

    @JonB said in segmentation fault:

    qDebug() << mosq->something

    i tried following things and it output are '0'.

    1. qDebug() << mosq->connect_async(host.data(), port);
    2. qDebug() << mosq->loop_start();
    3. qDebug() << mosq->subscribe(NULL, "sensors/temprature", 1);

    the output of all above command are zero (0).

    @JonB said in segmentation fault:

    app from inside a debugge

    i am not able to run the debugger because it gives following error.

    The inferior stopped because it received a signal from the Operating System.
    
    Signal name : 
    SIGILL
    Signal meaning : 
    Illegal instruction
    
    

    hope you got your answer.

    J Offline
    J Offline
    JonB
    wrote on 15 Oct 2019, 07:34 last edited by
    #32

    @Milav
    First you wrote

    and i debug the application via qDebug(), the application are crash on following line of code.
    mosq->subscribe(NULL, "sensors/temprature", 1); // Segmentation falut

    Now you write

    qDebug() << mosq->subscribe(NULL, "sensors/temprature", 1);
    the output of all above command are zero (0).

    This is a problem if you say sometimes it seg faults and sometimes it returns 0? Is that the case? You need to be very specific in your answers!

    i am not able to run the debugger because it gives following error.

    That is indeed a big problem. There is little for us to answer from what you have posted. Is a debugger supposed to work for your "Embedded Custom Board" (I don't know about this)? You really need one. Otherwise you are likely to have to try printing out all sorts of information in your code to try to diagnose what is going on....

    1 Reply Last reply
    0
    • M Milav
      15 Oct 2019, 07:32

      @JonB said in segmentation fault:

      @jsulm
      Indeedy :) So now let's see how qDebug() << *mosq fares?

      sorry the error is as following not previous one.

      /home/tdp0009/Teq_Projects/Aug_2019/HMI/Firmware/QT/12_oct_hmi/qt-mosquitto-master/mainwindow.cpp:54: error: no match for 'operator<<' in 'qDebug()() << *((MainWindow*)this)->MainWindow::mosq'
      
      M Offline
      M Offline
      Milav
      wrote on 15 Oct 2019, 07:34 last edited by
      #33

      Screenshot from 2019-10-15 13-03-18.png

      J 1 Reply Last reply 15 Oct 2019, 07:37
      0
      • M Milav
        15 Oct 2019, 07:34

        Screenshot from 2019-10-15 13-03-18.png

        J Offline
        J Offline
        jsulm
        Lifetime Qt Champion
        wrote on 15 Oct 2019, 07:37 last edited by
        #34

        @Milav Forget about

        qDebug() << *mosq;
        

        it's only going to work if operator<< was overloaded for that class, apparently it isn't, but this is not an issue.
        Can you try to run the app directly with gdb?

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

        J M 2 Replies Last reply 15 Oct 2019, 07:41
        1
        • J jsulm
          15 Oct 2019, 07:37

          @Milav Forget about

          qDebug() << *mosq;
          

          it's only going to work if operator<< was overloaded for that class, apparently it isn't, but this is not an issue.
          Can you try to run the app directly with gdb?

          J Offline
          J Offline
          JonB
          wrote on 15 Oct 2019, 07:41 last edited by
          #35

          @jsulm

          Can you try to run the app directly with gdb?

          I know this is not the place for a long explanation. But when OP says

          I make a qt application for Embedded Custom Board

          I thought (knowing nothing about this) it meant he is doing something like )cross-)compiling of whatever but the app runs "on the board", so he might not have/be able to use a debugger? Can you explain to me in one sentence what the OP's enthronement actually is, I'd like to have the vaguest understanding....

          1 Reply Last reply
          0
          • J jsulm
            15 Oct 2019, 07:37

            @Milav Forget about

            qDebug() << *mosq;
            

            it's only going to work if operator<< was overloaded for that class, apparently it isn't, but this is not an issue.
            Can you try to run the app directly with gdb?

            M Offline
            M Offline
            Milav
            wrote on 15 Oct 2019, 07:41 last edited by
            #36

            @jsulm said in segmentation fault:

            Forget about
            qDebug() << *mosq;

            okay thank you.

            @jsulm said in segmentation fault:

            Can you try to run the app directly with gdb?

            yes i tried but , debugger give me error,

            the error is shown in below image.

            Screenshot from 2019-10-15 13-11-13.png

            J J 2 Replies Last reply 15 Oct 2019, 07:43
            0
            • M Milav
              15 Oct 2019, 07:41

              @jsulm said in segmentation fault:

              Forget about
              qDebug() << *mosq;

              okay thank you.

              @jsulm said in segmentation fault:

              Can you try to run the app directly with gdb?

              yes i tried but , debugger give me error,

              the error is shown in below image.

              Screenshot from 2019-10-15 13-11-13.png

              J Offline
              J Offline
              JonB
              wrote on 15 Oct 2019, 07:43 last edited by JonB
              #37

              @Milav
              I think @jsulm is asking you try running your app directly in gdb (from the command-line), not from within Qt Creator, as Creator might be the cause of your debugger problem.

              M 1 Reply Last reply 15 Oct 2019, 08:39
              0
              • M Milav
                15 Oct 2019, 07:41

                @jsulm said in segmentation fault:

                Forget about
                qDebug() << *mosq;

                okay thank you.

                @jsulm said in segmentation fault:

                Can you try to run the app directly with gdb?

                yes i tried but , debugger give me error,

                the error is shown in below image.

                Screenshot from 2019-10-15 13-11-13.png

                J Offline
                J Offline
                J.Hilk
                Moderators
                wrote on 15 Oct 2019, 07:46 last edited by
                #38

                @Milav ok, since you're able to run the debugger from QtCreator, try the following, select Debugin the menu bar, and select Start and Break on main that should work, and then step through your code line by line.


                Be aware of the Qt Code of Conduct, when posting : https://forum.qt.io/topic/113070/qt-code-of-conduct


                Q: What's that?
                A: It's blue light.
                Q: What does it do?
                A: It turns blue.

                1 Reply Last reply
                0
                • J JonB
                  15 Oct 2019, 07:43

                  @Milav
                  I think @jsulm is asking you try running your app directly in gdb (from the command-line), not from within Qt Creator, as Creator might be the cause of your debugger problem.

                  M Offline
                  M Offline
                  Milav
                  wrote on 15 Oct 2019, 08:39 last edited by
                  #39

                  @JonB said in segmentation fault:

                  app directly in gdb (from the command-line)

                  actually, i am new in this.

                  give me some time i explore it and give you answer.

                  i don't know how i run app in gdb.

                  J 1 Reply Last reply 15 Oct 2019, 08:41
                  0
                  • M Milav
                    15 Oct 2019, 08:39

                    @JonB said in segmentation fault:

                    app directly in gdb (from the command-line)

                    actually, i am new in this.

                    give me some time i explore it and give you answer.

                    i don't know how i run app in gdb.

                    J Offline
                    J Offline
                    JonB
                    wrote on 15 Oct 2019, 08:41 last edited by
                    #40

                    @Milav

                    1. Open Command Prompt/terminal/shell.
                    2. cd to where your executable is.
                    3. gdb <your-executable>
                    M 1 Reply Last reply 15 Oct 2019, 09:05
                    1
                    • J JonB
                      15 Oct 2019, 08:41

                      @Milav

                      1. Open Command Prompt/terminal/shell.
                      2. cd to where your executable is.
                      3. gdb <your-executable>
                      M Offline
                      M Offline
                      Milav
                      wrote on 15 Oct 2019, 09:05 last edited by
                      #41

                      @JonB

                      but in gdb how i see "stack trace" ?

                      what classes i use from List of classes of commands?

                      please tell me

                      J 1 Reply Last reply 15 Oct 2019, 09:10
                      0
                      • M Milav
                        15 Oct 2019, 09:05

                        @JonB

                        but in gdb how i see "stack trace" ?

                        what classes i use from List of classes of commands?

                        please tell me

                        J Offline
                        J Offline
                        jsulm
                        Lifetime Qt Champion
                        wrote on 15 Oct 2019, 09:10 last edited by
                        #42

                        @Milav In gdb enter bt and press enter after your app crashed

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

                        M 1 Reply Last reply 15 Oct 2019, 09:26
                        0
                        • J jsulm
                          15 Oct 2019, 09:10

                          @Milav In gdb enter bt and press enter after your app crashed

                          M Offline
                          M Offline
                          Milav
                          wrote on 15 Oct 2019, 09:26 last edited by
                          #43

                          @jsulm

                          i enter the gdb command as following .

                          tdp0009@tdp0009-desktop:~/Teq_Projects/Aug_2019/HMI/Firmware/QT/Desktop_Application/11-oct/qt-mqtt-example/build-qt-mosquitto-Desktop-Release$ gdb qt-mosquitto 
                          GNU gdb (Ubuntu 7.11.1-0ubuntu1~16.5) 7.11.1
                          Copyright (C) 2016 Free Software Foundation, Inc.
                          License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
                          This is free software: you are free to change and redistribute it.
                          There is NO WARRANTY, to the extent permitted by law.  Type "show copying"
                          and "show warranty" for details.
                          This GDB was configured as "x86_64-linux-gnu".
                          Type "show configuration" for configuration details.
                          For bug reporting instructions, please see:
                          <http://www.gnu.org/software/gdb/bugs/>.
                          Find the GDB manual and other documentation resources online at:
                          <http://www.gnu.org/software/gdb/documentation/>.
                          For help, type "help".
                          Type "apropos word" to search for commands related to "word"...
                          Reading symbols from qt-mosquitto...(no debugging symbols found)...done.
                          (gdb) bt
                          No stack.
                          (gdb) 
                          No stack.
                          (gdb)
                          
                          J 1 Reply Last reply 15 Oct 2019, 10:25
                          0
                          • M Milav
                            15 Oct 2019, 09:26

                            @jsulm

                            i enter the gdb command as following .

                            tdp0009@tdp0009-desktop:~/Teq_Projects/Aug_2019/HMI/Firmware/QT/Desktop_Application/11-oct/qt-mqtt-example/build-qt-mosquitto-Desktop-Release$ gdb qt-mosquitto 
                            GNU gdb (Ubuntu 7.11.1-0ubuntu1~16.5) 7.11.1
                            Copyright (C) 2016 Free Software Foundation, Inc.
                            License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
                            This is free software: you are free to change and redistribute it.
                            There is NO WARRANTY, to the extent permitted by law.  Type "show copying"
                            and "show warranty" for details.
                            This GDB was configured as "x86_64-linux-gnu".
                            Type "show configuration" for configuration details.
                            For bug reporting instructions, please see:
                            <http://www.gnu.org/software/gdb/bugs/>.
                            Find the GDB manual and other documentation resources online at:
                            <http://www.gnu.org/software/gdb/documentation/>.
                            For help, type "help".
                            Type "apropos word" to search for commands related to "word"...
                            Reading symbols from qt-mosquitto...(no debugging symbols found)...done.
                            (gdb) bt
                            No stack.
                            (gdb) 
                            No stack.
                            (gdb)
                            
                            J Offline
                            J Offline
                            JonB
                            wrote on 15 Oct 2019, 10:25 last edited by JonB
                            #44

                            @Milav
                            Type run first to run your program! Then if it crashes type bt. You could type man gdb from the command-line, or help from within gdb like the message states. We had to learn to do that....

                            M 1 Reply Last reply 15 Oct 2019, 11:40
                            1
                            • J JonB
                              15 Oct 2019, 10:25

                              @Milav
                              Type run first to run your program! Then if it crashes type bt. You could type man gdb from the command-line, or help from within gdb like the message states. We had to learn to do that....

                              M Offline
                              M Offline
                              Milav
                              wrote on 15 Oct 2019, 11:40 last edited by
                              #45

                              @JonB

                              thank you for your help.

                              i run gdb from development host machine.

                              here i send the output of that.

                              tdp0009@tdp0009-desktop:~/Teq_Projects/Aug_2019/HMI/Phytec_Toolchain/arm-cortexa8-linux-gnueabihf/bin$ ./arm-cortexa8-linux-gnueabihf-gdb
                              GNU gdb (GDB) 7.5
                              Copyright (C) 2012 Free Software Foundation, Inc.
                              License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
                              This is free software: you are free to change and redistribute it.
                              There is NO WARRANTY, to the extent permitted by law.  Type "show copying"
                              and "show warranty" for details.
                              This GDB was configured as "--host=i686-host-linux-gnu --target=arm-cortexa8-linux-gnueabihf".
                              For bug reporting instructions, please see:
                              <http://www.gnu.org/software/gdb/bugs/>.
                              (gdb) target extended 192.168.5.52:2345
                              Remote debugging using 192.168.5.52:2345
                              (gdb) set remote exec-file /opt/milav/qt-mosquitto
                              (gdb) run
                              Starting program:  
                              
                              Program received signal SIGILL, Illegal instruction.
                              0x404df208 in ?? ()
                              (gdb) bt
                              #0  0x404df208 in ?? ()
                              Cannot access memory at address 0x0
                              #1  0x404092c0 in ?? ()
                              Cannot access memory at address 0x0
                              #2  0x404092c0 in ?? ()
                              Cannot access memory at address 0x0
                              Backtrace stopped: previous frame identical to this frame (corrupt stack?)
                              (gdb) 
                              

                              i think you got what you want.

                              looking forward hearing from you.

                              J 1 Reply Last reply 15 Oct 2019, 11:51
                              0
                              • M Milav
                                15 Oct 2019, 11:40

                                @JonB

                                thank you for your help.

                                i run gdb from development host machine.

                                here i send the output of that.

                                tdp0009@tdp0009-desktop:~/Teq_Projects/Aug_2019/HMI/Phytec_Toolchain/arm-cortexa8-linux-gnueabihf/bin$ ./arm-cortexa8-linux-gnueabihf-gdb
                                GNU gdb (GDB) 7.5
                                Copyright (C) 2012 Free Software Foundation, Inc.
                                License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
                                This is free software: you are free to change and redistribute it.
                                There is NO WARRANTY, to the extent permitted by law.  Type "show copying"
                                and "show warranty" for details.
                                This GDB was configured as "--host=i686-host-linux-gnu --target=arm-cortexa8-linux-gnueabihf".
                                For bug reporting instructions, please see:
                                <http://www.gnu.org/software/gdb/bugs/>.
                                (gdb) target extended 192.168.5.52:2345
                                Remote debugging using 192.168.5.52:2345
                                (gdb) set remote exec-file /opt/milav/qt-mosquitto
                                (gdb) run
                                Starting program:  
                                
                                Program received signal SIGILL, Illegal instruction.
                                0x404df208 in ?? ()
                                (gdb) bt
                                #0  0x404df208 in ?? ()
                                Cannot access memory at address 0x0
                                #1  0x404092c0 in ?? ()
                                Cannot access memory at address 0x0
                                #2  0x404092c0 in ?? ()
                                Cannot access memory at address 0x0
                                Backtrace stopped: previous frame identical to this frame (corrupt stack?)
                                (gdb) 
                                

                                i think you got what you want.

                                looking forward hearing from you.

                                J Offline
                                J Offline
                                jsulm
                                Lifetime Qt Champion
                                wrote on 15 Oct 2019, 11:51 last edited by
                                #46

                                @Milav said in segmentation fault:

                                i think you got what you want

                                Not really.
                                Did you build the app in debug mode?

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

                                M 1 Reply Last reply 15 Oct 2019, 11:56
                                0
                                • J jsulm
                                  15 Oct 2019, 11:51

                                  @Milav said in segmentation fault:

                                  i think you got what you want

                                  Not really.
                                  Did you build the app in debug mode?

                                  M Offline
                                  M Offline
                                  Milav
                                  wrote on 15 Oct 2019, 11:56 last edited by
                                  #47

                                  @jsulm said in segmentation fault:

                                  Did you build the app in debug mode?

                                  yes i build the app in debug mode.

                                  1 Reply Last reply
                                  0
                                  • M Milav
                                    12 Oct 2019, 10:31

                                    Hello,

                                    I make a qt application for Embedded Custom Board and when i run the Application it gives segmentation fault.

                                    The application give segmentation fault due to following line.

                                      mosq->subscribe(mosq->getMID(), topic.data(), 1);
                                    

                                    where mosq is define and declare as follow.

                                    class MainWindow : public QMainWindow
                                    {
                                        Q_OBJECT
                                    
                                    public:
                                        explicit MainWindow(QWidget *parent = 0);
                                        ~MainWindow();
                                    
                                    private:
                                        qtmosq* mosq = NULL;
                                        QStringList subed;
                                        QString currentTopic;
                                        Ui::MainWindow *ui;
                                    --------
                                    --------
                                    --------
                                    };
                                    

                                    where qtmosq is define as follow..

                                    #include "QObject"
                                    #include "mosquittopp.h"
                                    
                                    using namespace mosqpp;
                                    
                                    class qtmosq : public QObject, public mosquittopp
                                    {
                                        Q_OBJECT
                                    
                                    public:
                                        qtmosq(const char *id = NULL, bool clean_session = true) : mosquittopp (id, clean_session) {MID = 0;}
                                        ~qtmosq() {}
                                    
                                        void on_connect(int result)
                                        {
                                            if (!result)
                                            {
                                                //subscribe(NULL, "$SYS/#", 2);
                                                emit connected();
                                            }
                                            else
                                                emit connectEnable();
                                        }
                                        void on_publish(int id)
                                        {
                                            MID++;
                                            emit messageSent(true);
                                        }
                                        void on_subscribe(int mid, int qos_count, const int *granted_qos)
                                        {
                                            if (MID != 0)
                                                emit subscribed();
                                            MID++;
                                        }
                                    ..........
                                    ..........
                                    ..........
                                    
                                    signals:
                                        void connected();
                                        void messageSent(bool);
                                        void messageReceived(QString);
                                        void connectEnable();
                                        void subscribed();
                                    };
                                    

                                    so what is the reason behind for this fault.

                                    The same application are successfully run on Host Linux PC.

                                    I have use same mosquitto library in both the test.

                                    please help me to sort out this problem.

                                    I have send the reference link at where i used above program.

                                    Link :- Ref. Link

                                    Thank you
                                    Milav Soni

                                    Pablo J. RoginaP Offline
                                    Pablo J. RoginaP Offline
                                    Pablo J. Rogina
                                    wrote on 15 Oct 2019, 16:51 last edited by
                                    #48

                                    @Milav said in segmentation fault:

                                    Link :- Ref. Link

                                    Could it be possible that you run such example AS IS, I mean just download/clone the code and try such example without any change.
                                    If you manage to make it work, then you'll have the foundation to start adapting it to whatever you need/desire.

                                    In addition, is there any compelling reason not to use the Qt MQTT module?
                                    Have you try any of the Qt MQTT examples?

                                    Upvote the answer(s) that helped you solve the issue
                                    Use "Topic Tools" button to mark your post as Solved
                                    Add screenshots via postimage.org
                                    Don't ask support requests via chat/PM. Please use the forum so others can benefit from the solution in the future

                                    M 1 Reply Last reply 16 Oct 2019, 04:59
                                    0
                                    • Pablo J. RoginaP Pablo J. Rogina
                                      15 Oct 2019, 16:51

                                      @Milav said in segmentation fault:

                                      Link :- Ref. Link

                                      Could it be possible that you run such example AS IS, I mean just download/clone the code and try such example without any change.
                                      If you manage to make it work, then you'll have the foundation to start adapting it to whatever you need/desire.

                                      In addition, is there any compelling reason not to use the Qt MQTT module?
                                      Have you try any of the Qt MQTT examples?

                                      M Offline
                                      M Offline
                                      Milav
                                      wrote on 16 Oct 2019, 04:59 last edited by
                                      #49

                                      @Pablo-J-Rogina said in segmentation fault:

                                      In addition, is there any compelling reason not to use the Qt MQTT module?
                                      Have you try any of the Qt MQTT examples?

                                      I use actually qt4.8.7 source for development so QMqtt is not build for this qt version, so that i do not use qmqtt class.

                                      if you have any idea how to run QMqtt in qt 4.8.7 source than please tell me it is so helpful to me.

                                      @Pablo-J-Rogina said in segmentation fault:

                                      Could it be possible that you run such example AS IS, I mean just download/clone the code and try such example without any change.
                                      If you manage to make it work, then you'll have the foundation to start adapting it to whatever you need/desire.

                                      i actually tried same as is code for pc development and that is work fine.

                                      but when i cross compiling the code for embedded target board than it gives segmentation error,

                                      the difference between host pc and Embedded target board is only QT source.

                                      Host pc => qmake (qt version 5.4.0 )
                                      Embedded target => qmake (qt version 4.8.7)

                                      hope you got my point.

                                      if you have any query please tell me.

                                      and please guys help me to sort out the problem.

                                      i am also try another code for the same , but in that i have also suffer same problem.

                                      Another code link :- link text

                                      J Pablo J. RoginaP 2 Replies Last reply 16 Oct 2019, 05:16
                                      0
                                      • M Milav
                                        16 Oct 2019, 04:59

                                        @Pablo-J-Rogina said in segmentation fault:

                                        In addition, is there any compelling reason not to use the Qt MQTT module?
                                        Have you try any of the Qt MQTT examples?

                                        I use actually qt4.8.7 source for development so QMqtt is not build for this qt version, so that i do not use qmqtt class.

                                        if you have any idea how to run QMqtt in qt 4.8.7 source than please tell me it is so helpful to me.

                                        @Pablo-J-Rogina said in segmentation fault:

                                        Could it be possible that you run such example AS IS, I mean just download/clone the code and try such example without any change.
                                        If you manage to make it work, then you'll have the foundation to start adapting it to whatever you need/desire.

                                        i actually tried same as is code for pc development and that is work fine.

                                        but when i cross compiling the code for embedded target board than it gives segmentation error,

                                        the difference between host pc and Embedded target board is only QT source.

                                        Host pc => qmake (qt version 5.4.0 )
                                        Embedded target => qmake (qt version 4.8.7)

                                        hope you got my point.

                                        if you have any query please tell me.

                                        and please guys help me to sort out the problem.

                                        i am also try another code for the same , but in that i have also suffer same problem.

                                        Another code link :- link text

                                        J Offline
                                        J Offline
                                        jsulm
                                        Lifetime Qt Champion
                                        wrote on 16 Oct 2019, 05:16 last edited by
                                        #50

                                        @Milav OK, maybe we should start from the beginning.
                                        Do you cross compile from PC to device?
                                        Does the app crash in same way on host with Qt5?
                                        Is it possible that you're mixing Qt4 and Qt5 on your target device? You can check this using "ldd EXECUTABLE" on your target.
                                        Please do this on your target (in a terminal):

                                        file /opt/milav/qt-mosquitto
                                        ldd /opt/milav/qt-mosquitto
                                        

                                        and post the output here.

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

                                        M 2 Replies Last reply 16 Oct 2019, 05:39
                                        0
                                        • J jsulm
                                          16 Oct 2019, 05:16

                                          @Milav OK, maybe we should start from the beginning.
                                          Do you cross compile from PC to device?
                                          Does the app crash in same way on host with Qt5?
                                          Is it possible that you're mixing Qt4 and Qt5 on your target device? You can check this using "ldd EXECUTABLE" on your target.
                                          Please do this on your target (in a terminal):

                                          file /opt/milav/qt-mosquitto
                                          ldd /opt/milav/qt-mosquitto
                                          

                                          and post the output here.

                                          M Offline
                                          M Offline
                                          Milav
                                          wrote on 16 Oct 2019, 05:39 last edited by
                                          #51

                                          @jsulm said in segmentation fault:

                                          OK, maybe we should start from the beginning.

                                          Okay sure.

                                          @jsulm said in segmentation fault:

                                          Do you cross compile from PC to device?

                                          Yes i cross compile the "qt-mosquitto" application for target (device) from qt creator (that is install on pc).

                                          For cross compilng i have use qmake version 4.8.7.

                                          and qt creator version is "Qt Creator 3.3.0 (opensource)"

                                          and for v

                                          @jsulm said in segmentation fault:

                                          Does the app crash in same way on host with Qt5?

                                          No, the application is not crash in PC.

                                          In pc i have use same code but qmake vwersion is 5.4.0

                                          @jsulm said in segmentation fault:

                                          Is it possible that you're mixing Qt4 and Qt5 on your target device? You can check this using "ldd EXECUTABLE" on your target.

                                          In target i have only qt 4 library and qmake are there.
                                          i think there is no qt 5 component in target device.

                                          @jsulm said in segmentation fault:

                                          Please do this on your target (in a terminal):

                                          sorry for this, but i have not ldd command on target device.
                                          if it is necessary than tell i have install and cross compile it for target device.

                                          sorry i dont know why this ldd cmd is not there in target device.

                                          J 1 Reply Last reply 16 Oct 2019, 05:42
                                          0

                                          41/61

                                          15 Oct 2019, 09:05

                                          • Login

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