Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

317
Views
"Illegal Instruction (core dumped)" occuring in valgrind

No matter what the program is, valgrind gives nearly the same output :

Illegal Instruction (core dumped).

Even in this underlying program it shows the same

#include<stdio.h>

void fun(int *i)
{
    printf(" %d \n",*i);
}

int main()
{
    int j=90;
    fun(&j);
    return 0;
}
over 4 years ago · Santiago Trujillo
1 answers
Answer question

0

Your valgrind is broken, or is not compatible with your C library.

To confirm this, first see if you can run the valgrind binary at all:

valgrind --help

(if that fails, maybe the binary is corrupt or is for a different architecture)

Then try within something you didn't write:

valgrind /bin/true

(if that fails, perhaps it's not compatible with your C library)

Assuming one or more of those fails, you will need to reinstall valgrind and try again.

over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!