mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-09 05:10:23 +00:00
- Added include/x86/: contains tool_arch.h, Makefile.am, .cvsignore.
- Added coregrind/x86/state.c. Contains some arch-specific code for dealing
with x86 registers -- eg. setting up the baseBlock, loading/saving the whole
register state. It is compiled into coregrind/x86/libarch.a and linked via
${VG_ARCH} with the core.
Relatedly, also added coregrind/x86/{core_arch.h,core_arch_asm.h}.
- Correspondingly abstracted the register state out of ThreadState. This
affected every place that touches registers, and there are a lot of them.
(Eventually all the register touching should be abstracted out in an
arch-neutral way, but not yet; one step at a time.)
- Added some declarations about register loading/saving functions to core.h;
all architectures will have to provide these functions.
- Rejigged the build system so that the arch-specific stuff is all done via
${VG_ARCH}, rather than naming e.g. x86/ directly. Appropriate -I arguments
are used so that all the headers are found, etc.
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@2656
56 lines
1.4 KiB
RPMSpec
56 lines
1.4 KiB
RPMSpec
Summary: Valgrind Memory Debugger
|
|
Name: @PACKAGE@
|
|
Version: @VERSION@
|
|
Release: 1
|
|
Copyright: GPL
|
|
Group: Development/Debuggers
|
|
Packager: Jeremy Fitzhardinge <jeremy@goop.org>
|
|
Source: @PACKAGE@-@VERSION@.tar.bz2
|
|
|
|
Buildroot: %{_tmppath}/@PACKAGE@
|
|
|
|
%description
|
|
|
|
Valgrind is a GPL'd system for debugging and profiling x86-Linux programs.
|
|
With the tools that come with Valgrind, you can automatically detect
|
|
many memory management and threading bugs, avoiding hours of frustrating
|
|
bug-hunting, making your programs more stable. You can also perform
|
|
detailed profiling to help speed up your programs.
|
|
|
|
The Valgrind distribution includes five tools: two memory error
|
|
detectors, a thread error detector, a cache profiler and a heap profiler.
|
|
Several other tools have been built with Valgrind.
|
|
|
|
%prep
|
|
%setup -n @PACKAGE@-@VERSION@
|
|
|
|
%build
|
|
./configure --prefix=/usr
|
|
make
|
|
|
|
%install
|
|
make install DESTDIR=$RPM_BUILD_ROOT
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
/usr/include/valgrind/valgrind.h
|
|
/usr/include/valgrind/memcheck.h
|
|
/usr/include/valgrind/helgrind.h
|
|
/usr/include/valgrind/tool.h
|
|
/usr/include/valgrind/tool_asm.h
|
|
/usr/include/valgrind/vg_kerneliface.h
|
|
/usr/include/valgrind/vg_skin.h
|
|
/usr/include/valgrind/x86/tool_arch.h
|
|
/usr/bin/valgrind
|
|
/usr/bin/cg_annotate
|
|
/usr/lib/valgrind
|
|
/usr/lib/valgrind/*
|
|
/usr/bin/valgrind-listener
|
|
/usr/lib/pkgconfig/valgrind.pc
|
|
|
|
%doc
|
|
/usr/share/doc/valgrind/*
|
|
|
|
%clean
|
|
[ "$RPM_BUILD_ROOT" != "/" ] && rm -rf ${RPM_BUILD_ROOT}
|