darshan 1.1.2 → 1.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/ext/darshan/darshan.c +1 -1
- data/ext/darshan/extconf.rb +4 -4
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
SHA1:
|
|
3
|
-
data.tar.gz: 899314eddab0162bb958dbc36b55b3535478dd66
|
|
4
|
-
metadata.gz: c302b1c3caae2ca78ad0bf18da3907f5c3e5fdf2
|
|
5
2
|
SHA512:
|
|
6
|
-
|
|
7
|
-
|
|
3
|
+
metadata.gz: 75e1620040e82973db6cc2e3aee440f21e2772feb113df34202e1da65630fc2859589f27d8e9bdcc758388420886b199dd1575e95382e8103aee23108766950c
|
|
4
|
+
data.tar.gz: f2a7f248d307cb30b8e7869f771487a724f4d91fe6f70067f4497d618df24afc958ab463eac8322f37235ebb8167b228dd06e97ade4338af8fa4eb5ed2b9f78b
|
|
5
|
+
SHA1:
|
|
6
|
+
metadata.gz: 76fcc084b73f0fd8ce6acf1c1417d735da831cff
|
|
7
|
+
data.tar.gz: 5fde5c63c9e9582e3e91d8700aa776612838c8c5
|
data/ext/darshan/darshan.c
CHANGED
|
@@ -38,7 +38,7 @@ static VALUE rb_darshan_open(VALUE self, VALUE name, VALUE mode)
|
|
|
38
38
|
if(fd != NULL) {
|
|
39
39
|
VALUE res = Data_Wrap_Struct(cDarshanLogFile, NULL ,NULL, fd);
|
|
40
40
|
// set the name of the file
|
|
41
|
-
rb_iv_set(res, "@name", rb_str_new2(fd->name));
|
|
41
|
+
rb_iv_set(res, "@name", name);//rb_str_new2(fd->name));
|
|
42
42
|
|
|
43
43
|
// get the job struct
|
|
44
44
|
struct darshan_job job;
|
data/ext/darshan/extconf.rb
CHANGED
|
@@ -21,10 +21,10 @@ require 'mkmf'
|
|
|
21
21
|
|
|
22
22
|
dir_config('darshan')
|
|
23
23
|
|
|
24
|
-
if(not have_header('darshan-
|
|
25
|
-
$stderr << "Error, could not find darshan-
|
|
24
|
+
if(not have_header('darshan-log-format.h'))
|
|
25
|
+
$stderr << "Error, could not find darshan-log-format.h\n"
|
|
26
26
|
$stderr << "Please use --with-darshan-dir=...\n"
|
|
27
|
-
abort "Missing darshan-
|
|
27
|
+
abort "Missing darshan-log-format.h"
|
|
28
28
|
end
|
|
29
29
|
|
|
30
30
|
if(not have_library('z'))
|
|
@@ -38,7 +38,7 @@ if(not have_library('bz2'))
|
|
|
38
38
|
end
|
|
39
39
|
|
|
40
40
|
if(not have_library('darshan-util'))
|
|
41
|
-
$stderr << "Error, could not locate libdarshan-util
|
|
41
|
+
$stderr << "Error, could not locate libdarshan-util.a\n"
|
|
42
42
|
$stderr << "Please use --with-darshan-dir=...\n"
|
|
43
43
|
abort "Missing libdarshan-util.a"
|
|
44
44
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: darshan
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Matthieu Dorier
|
|
@@ -9,7 +9,7 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date:
|
|
12
|
+
date: 2014-04-15 00:00:00 Z
|
|
13
13
|
dependencies: []
|
|
14
14
|
|
|
15
15
|
description: Ruby binding to ANL's Darshan library for HPC I/O tracing and analysis
|