Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. Sigill when debugging application with

Sigill when debugging application with

Scheduled Pinned Locked Moved Unsolved General and Desktop
debuggerqsslqsslconfiguratisigill
2 Posts 2 Posters 1.3k Views
  • 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 Offline
    M Offline
    Mark81
    wrote on 23 May 2016, 14:59 last edited by Mark81
    #1

    I got the following error:

    SIGILL
    Illegal instruction

    when I start in debug mode an application which create a QSslConfiguration variable.
    The application runs fine in both release and debug mode until I press "start debugging."

    It's a known behavior?

    This is the piece of code:

    QUrlQuery query;
    query.addQueryItem("fields", "value");
    data.append(query.toString(QUrl::FullyEncoded));
    
    QSslConfiguration conf;
    conf.setPeerVerifyMode(QSslSocket::VerifyNone);
    

    The debugger issues the above error on the declaration of 'conf'.

    K 1 Reply Last reply 23 May 2016, 19:39
    0
    • M Mark81
      23 May 2016, 14:59

      I got the following error:

      SIGILL
      Illegal instruction

      when I start in debug mode an application which create a QSslConfiguration variable.
      The application runs fine in both release and debug mode until I press "start debugging."

      It's a known behavior?

      This is the piece of code:

      QUrlQuery query;
      query.addQueryItem("fields", "value");
      data.append(query.toString(QUrl::FullyEncoded));
      
      QSslConfiguration conf;
      conf.setPeerVerifyMode(QSslSocket::VerifyNone);
      

      The debugger issues the above error on the declaration of 'conf'.

      K Offline
      K Offline
      kshegunov
      Moderators
      wrote on 23 May 2016, 19:39 last edited by
      #2

      @Mark81 said:

      SIGILL

      That is an illegal instruction signal, which is pretty rare. Basically means the memory your program's residing in got corrupted somehow. So there's something very wrong. Check any callbacks, overwriting by mistake virtual tables and the such.

      Read and abide by the Qt Code of Conduct

      1 Reply Last reply
      0

      1/2

      23 May 2016, 14:59

      • Login

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