Piotr Kubaj
Piotr Kubaj
`00000000,0000000f`
Indeed, thank you!
`configure` doesn't run correctly for me anyway because of GNU sed vs BSD sed issues. I think it will be ok to leave `configure` as is. I have added a...
I'm getting the following: ``` root@talos-powerpc64le:~/zlib-ng # ./configure Checking for compiler... cc Checking for shared library support... Building shared library libz-ng.so.2.1.0.devel with cc. Checking for off64_t... Yes. Checking for fseeko......
I fixed SIMD check in `configure` similarly as the CMake code with: ``` diff --git a/configure b/configure index 4e73a22..91adc1a 100755 --- a/configure +++ b/configure @@ -29,7 +29,7 @@ if [...
After changing `sed` to `gsed` in `incs=$(grep -h include $file | sed -n 's/# *\include *"\(.*\.h\)".*/\1/p' | sort | uniq)`, `configure` runs properly.
How do you check for that? I had the following issue on powerpc (I only tried on powerpc64le before): ``` ld: error: relocation R_PPC_ADDR16_LO cannot be used against symbol _GLOBAL_OFFSET_TABLE_;...
I was able to build after installing binutils and adding `-fuse-ld=bfd` to CFLAGS. However: ``` # gmake CFLAGS="-fuse-ld=bfd" test gmake -C test gmake[1]: Entering directory '/tmp/zlib-ng/test' hello world zlib-ng version...
What is the proper formatting?
> Currently, this PR pulled code from OpenSSL, as BoringSSL does not appear to have support for POWER. Last I checked, BoringSSL definitely supported ppc64le, although not ppc64 or ppc.