fastqr 1.0.25 → 1.0.26
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/CMakeLists.txt +6 -5
- data/VERSION +1 -1
- data/bindings/nodejs/package.json +1 -1
- data/bindings/ruby/lib/fastqr/version.rb +1 -1
- data/bindings/ruby/prebuilt/linux-aarch64/bin/fastqr +0 -0
- data/bindings/ruby/prebuilt/linux-aarch64.tar.gz +0 -0
- data/bindings/ruby/prebuilt/linux-x86_64/bin/fastqr +0 -0
- data/bindings/ruby/prebuilt/linux-x86_64.tar.gz +0 -0
- data/bindings/ruby/prebuilt/macos-arm64/bin/fastqr +0 -0
- data/bindings/ruby/prebuilt/macos-arm64.tar.gz +0 -0
- data/bindings/ruby/prebuilt/macos-x86_64/bin/fastqr +0 -0
- data/bindings/ruby/prebuilt/macos-x86_64.tar.gz +0 -0
- data/src/fastqr.cpp +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: 457b98912e41a7810a0f8c3d8f22965b517c6da7fb8bbe2ed06b969eda990603
|
|
4
|
+
data.tar.gz: '063209c0e1f36e15b709dcf5129dd2902a48de17a4b57967791aea9e9924122b'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 150aeb0c727ccc4915b09d65c38bcf7afa5a25f766bae315830096402fef9915e8ee21a88503cbbb94b24b843b9cead04e2aee178c5eddc2be7528e57555483c
|
|
7
|
+
data.tar.gz: 3799f1bd5ea39d4daadb353874a122b3184c85e9294f082629ae8b90cbe90d4e85178d48874c8ff0d8c8a3cabf0b17c1cd8547b12b479ff4760e074d54977017
|
data/CMakeLists.txt
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
cmake_minimum_required(VERSION 3.15)
|
|
2
|
-
project(fastqr VERSION 1.0.
|
|
2
|
+
project(fastqr VERSION 1.0.26 LANGUAGES CXX C)
|
|
3
3
|
|
|
4
4
|
set(CMAKE_CXX_STANDARD 14)
|
|
5
5
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
|
@@ -134,13 +134,14 @@ if(NOT BUILD_SHARED_LIBS)
|
|
|
134
134
|
${PNG_STATIC_LIBRARY}
|
|
135
135
|
${ZLIB_STATIC_LIBRARY}
|
|
136
136
|
)
|
|
137
|
-
|
|
138
|
-
# On Linux, ensure
|
|
137
|
+
|
|
138
|
+
# On Linux, ensure FULL static linking (no GLIBC dependency)
|
|
139
139
|
if(UNIX AND NOT APPLE)
|
|
140
140
|
target_link_options(fastqr-cli PRIVATE
|
|
141
|
-
-static
|
|
142
|
-
-static-libstdc++
|
|
141
|
+
-static
|
|
143
142
|
)
|
|
143
|
+
# Add pthread for static linking (required by libstdc++ and libqrencode)
|
|
144
|
+
target_link_libraries(fastqr-cli PRIVATE pthread)
|
|
144
145
|
endif()
|
|
145
146
|
else()
|
|
146
147
|
message(WARNING "Static libraries not found, falling back to dynamic linking")
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.26
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
data/src/fastqr.cpp
CHANGED