compact_enc_det 0.1.0 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/ext/compact_enc_det/extconf.rb +1 -4
- data/lib/compact_enc_det/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6f877e6949267f7a9c5719e33338ead81211cbe5ecd617a4b7b434c5031a663b
|
4
|
+
data.tar.gz: 6777c674bde1534543a53182fc9d7172ff327449121fc41c5caff78bb6cb96b3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7e038f29aabe03d9b113536da15a40a0a3cd8bf9d01694f799f5d6b923252bc6ded29632a522443446673654b35b5cd7fe7c9108e1a211f8e932b29a05e745c8
|
7
|
+
data.tar.gz: 37e8a0487a937943b1689dcb1acb29f2eb6b1f8bd006ba98f97328bb01adf6895d54b01b234d8f1f801b30410da030c55ea75d056c061f6dc1c52446de6b8328
|
@@ -3,11 +3,8 @@ require "rbconfig"
|
|
3
3
|
|
4
4
|
compact_enc_det_path = File.expand_path("../compact_enc_det/compact_enc_det", __dir__)
|
5
5
|
|
6
|
-
host_cpu = RbConfig::CONFIG['host_cpu']
|
7
|
-
is_amd64 = host_cpu == 'x86_64' || host_cpu == 'amd64'
|
8
|
-
|
9
6
|
compact_enc_det_build_command = "cd #{compact_enc_det_path} &&"
|
10
|
-
compact_enc_det_build_command += " CXXFLAGS=\"-fPIC\""
|
7
|
+
compact_enc_det_build_command += " CXXFLAGS=\"-fPIC\""
|
11
8
|
compact_enc_det_build_command += " ./autogen.sh"
|
12
9
|
|
13
10
|
unless system(compact_enc_det_build_command)
|