tebako 0.15.0 → 0.15.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4f1af67f13e230840eb812871c10cfc25332cc2479f70ca3653bb57b395705ff
4
- data.tar.gz: ae23b253616c15efdbf92fdb539626b1854a31281ad92802aa9484cf50985cc6
3
+ metadata.gz: 349d5b0a59f98021f05bae37a7c62efd9282900f5d4c161e8567424a082d21a1
4
+ data.tar.gz: 74dabe977337bcbe8b63a82cc82653242e852542e629a8698f3f6828c59cebf3
5
5
  SHA512:
6
- metadata.gz: d9c722d8e2bf9544337520357fa9a5ec72896ded55f82f9c501e428f2707fae727bf9ffae837ab16e7a7ebe419266f069b74dbf5435ef4135312460a77a9e8b8
7
- data.tar.gz: 94f7c668de8aaaecd3ec2ac0e80fb98a0fccfa997a8803f4bfbebb15225bb3cf55493590d715e774f0cbb952a06faaf425250d53fc953a50dfe83539c3977397
6
+ metadata.gz: eed8e60a9fe1c1185478c7f9c70d4a4e1af7c5f24c853c6a1ac85527c04bb7b281c5efdbc3cb9afd2ee31dd56e4d5a6d0e7975388ea180dc03d93fa4d703b845
7
+ data.tar.gz: 1355806d02bbe169d73d6ca746a5052d24dba4f49c398f514d25d8c35592b2d451f97629e60801d656ad755b70356d201a1211dd882a611fe1a083900b28c0e1
@@ -78,20 +78,20 @@ module Tebako
78
78
  ].freeze
79
79
 
80
80
  LINUX_GNU_LIBRARIES = [
81
- "-l:libiberty.a", "-l:libacl.a", "-l:libssl.a", "-l:libcrypto.a",
81
+ "-l:libacl.a", "-l:libssl.a", "-l:libcrypto.a",
82
82
  "-l:libgdbm.a", "-l:libreadline.a", "-l:libtinfo.a", "-l:libffi.a",
83
83
  "-l:libncurses.a", "-l:libjemalloc.a", "-l:libcrypt.a", "-l:libanl.a",
84
84
  "LIBYAML", "-l:libutil.a",
85
- "-l:libstdc++.a", "-lgcc_eh", "-l:libunwind.a", "-l:liblzma.a",
86
- "-l:librt.a", "-ldl", "-lpthread", "-lm"
85
+ "-l:libstdc++.a", "-lgcc_eh", "-l:liblzma.a",
86
+ "-l:librt.a", "-ldl", "-lpthread", "-lm"
87
87
  ].freeze
88
88
 
89
89
  LINUX_MUSL_LIBRARIES = [
90
- "-l:libiberty.a", "-l:libacl.a", "-l:libssl.a", "-l:libcrypto.a",
91
- "-l:libreadline.a", "-l:libgdbm.a", "-l:libffi.a", "-l:libncurses.a",
90
+ "-l:libacl.a", "-l:libssl.a", "-l:libcrypto.a",
91
+ "-l:libreadline.a", "-l:libgdbm.a", "-l:libffi.a", "-l:libncurses.a",
92
92
  "-l:libjemalloc.a", "-l:libcrypt.a", "LIBYAML",
93
93
  "-l:librt.a", "-l:libstdc++.a", "-lgcc_eh",
94
- " -l:libunwind.a", "-l:liblzma.a", "-ldl", "-lpthread"
94
+ "-l:liblzma.a", "-ldl", "-lpthread"
95
95
  ].freeze
96
96
 
97
97
  MSYS_LIBRARIES = [
@@ -157,11 +157,9 @@ module Tebako
157
157
 
158
158
  # .....................................................
159
159
  # Notes re linux libraries
160
- # 1) This order is important: -lgcc_eh -l:libunwind.a -l:liblzma.a lzma is used to process debug sections.
161
- # gcc_eh shall be linked before unwind to avoid duplicate symbols.
162
- # 2) -lgcc_eh assumes -static-libgcc (applied in CMakeLists.ext, RUBY_C_FLAGS)
163
- # 3) -static-libstdc++ did not work, not sure why [TODO ?]
164
- # 4) When clang is used linker links libraries specified in exensions in such way that they are linked shared
160
+ # 1) -lgcc_eh assumes -static-libgcc (applied in CMakeLists.ext, RUBY_C_FLAGS)
161
+ # 2) -static-libstdc++ did not work, not sure why [TODO ?]
162
+ # 3) When clang is used linker links libraries specified in exensions in such way that they are linked shared
165
163
  # (libz, libffi, libreadline, libncurses, libtinfo, ... )
166
164
  # Using stuff like -l:libz.a does not help; there is a reference to libz.so anyway.
167
165
  # This is fixed by ext/extmk.rb patch [TODO ?]
@@ -26,5 +26,5 @@
26
26
  # POSSIBILITY OF SUCH DAMAGE.
27
27
 
28
28
  module Tebako
29
- VERSION = "0.15.0"
29
+ VERSION = "0.15.1"
30
30
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tebako
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.15.0
4
+ version: 0.15.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ribose Inc.