forked from mirrors/nixpkgs
Merge pull request #32027 from andir/gcc-7-tracefilegen
tracefilegen: 2015-11-14 -> 2017-05-13
This commit is contained in:
commit
8136800f78
pkgs/development/tools/analysis/garcosim/tracefilegen
|
@ -1,17 +0,0 @@
|
||||||
source "$stdenv"/setup
|
|
||||||
|
|
||||||
cp --recursive "$src" ./
|
|
||||||
|
|
||||||
chmod --recursive u=rwx ./"$(basename "$src")"
|
|
||||||
|
|
||||||
cd ./"$(basename "$src")"
|
|
||||||
|
|
||||||
cmake ./
|
|
||||||
|
|
||||||
make
|
|
||||||
|
|
||||||
mkdir --parents "$out"/bin
|
|
||||||
cp ./TraceFileGen "$out"/bin
|
|
||||||
|
|
||||||
mkdir --parents "$out"/share/doc/"$name"/html
|
|
||||||
cp --recursive ./Documentation/html/* "$out/share/doc/$name/html/"
|
|
|
@ -1,22 +1,29 @@
|
||||||
{ stdenv, fetchgit, cmake }:
|
{ stdenv, fetchFromGitHub, cmake }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
|
|
||||||
name = "tracefilegen-2015-11-14";
|
name = "tracefilegen-2017-05-13";
|
||||||
|
|
||||||
src = fetchgit {
|
src = fetchFromGitHub {
|
||||||
url = "https://github.com/GarCoSim/TraceFileGen.git";
|
owner = "GarCoSim";
|
||||||
rev = "4acf75b142683cc475c6b1c841a221db0753b404";
|
repo = "TraceFileGen";
|
||||||
sha256 = "0mh661l9d1lczv0mr2y9swzqqlwikyqiv1hdd71r9v8cvm54y5ij";
|
rev = "0ebfd1fdb54079d4bdeaa81fc9267ecb9f016d60";
|
||||||
|
sha256 = "1gsx18ksgz5gwl3v62vgrmhxc0wc99i74qwhpn0h57zllk41drjc";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ cmake ];
|
nativeBuildInputs = [ cmake ];
|
||||||
|
|
||||||
builder = ./builder.sh;
|
patches = [ ./gcc7.patch ];
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
install -Dm755 TraceFileGen $out/bin/TraceFileGen
|
||||||
|
mkdir -p $out/share/doc/${name}/
|
||||||
|
cp -ar $src/Documentation/html $out/share/doc/${name}/.
|
||||||
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Automatically generate all types of basic memory management operations and write into trace files";
|
description = "Automatically generate all types of basic memory management operations and write into trace files";
|
||||||
homepage = https://github.com/GarCoSim;
|
homepage = https://github.com/GarCoSim;
|
||||||
maintainers = [ maintainers.cmcdragonkai ];
|
maintainers = [ maintainers.cmcdragonkai ];
|
||||||
license = licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
|
|
|
@ -0,0 +1,13 @@
|
||||||
|
diff --git a/Utils/Logger.cpp b/Utils/Logger.cpp
|
||||||
|
index 747cd63..e3efdf1 100644
|
||||||
|
--- a/Utils/Logger.cpp
|
||||||
|
+++ b/Utils/Logger.cpp
|
||||||
|
@@ -29,7 +29,7 @@ Logger::Logger(char* tracepath) {
|
||||||
|
trace = fopen(tracepath, "w");
|
||||||
|
|
||||||
|
// dot file is not used, set null as default value
|
||||||
|
- dot = '\0';
|
||||||
|
+ dot = nullptr;
|
||||||
|
//dot = fopen("gcKons.dot", "w");
|
||||||
|
//fprintf(dot,"digraph G {\n");
|
||||||
|
}
|
Loading…
Reference in a new issue