canuckdev
canuckdev
Also having this problem consistently using DO spaces. - s3cmd version 2.0.1 - multipart-chunk-size-mb=75 upload: 'F1 2016/03 China 02.Race.Session.SD.mp4' -> 's3://bucket/vidcap/F1 2016/03 China 02.Race.Session.SD.mp4' [part 18 of 23, 75MB] [2...
Similar problem. The initial error message indicates to recompile libmarkdown with -fPIC. ``` $ uname -a Linux no2 5.15.0-1050-raspi #53-Ubuntu SMP PREEMPT Thu Mar 21 10:02:47 UTC 2024 aarch64 aarch64...
In my case the solution was to add -fPIC to CFLAGS in the discount Makefile before building.
So when building discount for aarch64 use: ``` CFLAGS="-g -fPIC" ./configure.sh ```
The -fPIC flag generates Position Independent Code suitable for use in a shared library.