Questions tagged [valgrind]

9 questions
15
votes
2 answers

Unable to locate package libc6-dbg:i386 in docker

I am trying to install libc6-dbg:i386 inside a docker container based on Ubuntu because I need it for Valgrind, but I can't. Given the following Dockerfile: FROM ubuntu:14.04 MAINTAINER Me RUN apt-get update RUN apt-get install…
martinhans
  • 995
  • 1
  • 8
  • 15
6
votes
2 answers

How to upgrade to Valgrind 3.10.0 on Ubuntu 12.04?

I am trying to upgrade from Valgrind 3.7.0 to Valgrind 3.10.0 on Ubuntu 12.04. I have run sudo apt-get update and sudo apt-get upgrade but when I try sudo apt-get install valgrind it returns valgrind is already the newest version. But Valgrind…
Joey
  • 61
6
votes
5 answers

Installing massif-visualizer on Ubuntu 14.04

I'd like to install massif-visualizer on Ubuntu 14.04. By default, there's no such package on that release. Which repository contains that package? $ sudo apt-get install massif-visualizer Reading package lists... Done Building dependency tree …
miluz
  • 275
2
votes
0 answers

cg_annotate and callgrind_annotate is showing "no information has been collected for Sourcefile" in ubuntu

I am new to the Valgrind tool and I am using my cross compiled valgrind with ARM target board to run my executable. While executing the cachegrind tool with my executable it successfully generating the cachegrind.out.PID file as like below ]…
2
votes
0 answers

Cant' use `valgrind function profiler` due to "No private key file given." error

I'm trying to use valgrind function profiler inside Ubuntu SDK but when I start the app I receive this error: Error: "/usr/bin/valgrind" could not be started: No private key file given. What can I do?
rpadovani
  • 1,170
1
vote
0 answers

How to install valkyrie from old ubuntu repository like Bionic?

Valkyrie is an open-source graphical user interface for the Valgrind 3.6.X line. Valkyrie uses the Qt widget library, and is based on Valgrind`s XML output capabilities. Valkyrie is designed for simplicity and ease of use, whilst allowing access to…
1
vote
0 answers

install error of massif-visualizer on 14.04

I tried to install massif-visualizer. After adding the kubuntu-ppa/backports PPA and running apt-get update, apt-get install massif-visualizer still gives me an error: E: Unable to locate package massif-visualizer
0
votes
1 answer

installing valgrind ./configure fails to produce makefile

I'm trying to install valgrind and it looks as though ./configure is failing with configure: error: Valgrind works on kernels 2.4, 2.6. Does this mean that I have to install a new kernel? The Linux VM I am using is required for a college course,…
0
votes
1 answer

Having troubles using Valgrind with WSL on CLion

Working on Windows 10, enabled WSL and installed Ubuntu. WSL toolchain configured, I can build and run stuff on CLion, everything works perfectly except for Valgrind. I used the path: \\wsl$\Ubuntu\usr\bin\valgrind but everytime I try to run a…