narray_ffi 1.3.0 → 1.4.0
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 +4 -4
- data/ext/narray_ffi_c/extconf.rb +4 -4
- data/narray_ffi.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 06b32f4f02afddf0bf9e794aa97ba32513f2c243
|
|
4
|
+
data.tar.gz: 56371650d395b82796b9a760d792a0f4cfbac342
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9aebb8067bf1c700cf7f05e26e4619c854fadc89a79c9aaa6a3a824ee469bd654133ca1d20fa68d3a469e71d507c88e067bcafde34e84cfd73f3eeadae9727ab
|
|
7
|
+
data.tar.gz: 1e38ae9a6fff95a79c66371585ac4eeb3b80c0e71179cc19c57e6b7cc916ab54ccd0f5dd32e6bf2b73120ca12a5c2717a9c6b6429a446858f5f3bc6539baa256
|
data/ext/narray_ffi_c/extconf.rb
CHANGED
|
@@ -9,10 +9,6 @@ end
|
|
|
9
9
|
|
|
10
10
|
dir_config("narray", conf["archdir"])
|
|
11
11
|
|
|
12
|
-
if /cygwin|mingw/ =~ RUBY_PLATFORM then
|
|
13
|
-
$LDFLAGS = "libnarray.a " << $LDFLAGS
|
|
14
|
-
end
|
|
15
|
-
|
|
16
12
|
unless have_header("narray.h")
|
|
17
13
|
begin
|
|
18
14
|
require "rubygems"
|
|
@@ -31,4 +27,8 @@ unless have_header("narray.h")
|
|
|
31
27
|
end
|
|
32
28
|
end
|
|
33
29
|
|
|
30
|
+
if /cygwin|mingw/ =~ RUBY_PLATFORM then
|
|
31
|
+
$LDFLAGS = "-l:narray.so " << $LDFLAGS
|
|
32
|
+
end
|
|
33
|
+
|
|
34
34
|
create_makefile("narray_ffi_c")
|
data/narray_ffi.gemspec
CHANGED