CodingMarkus
CodingMarkus
Building OpenSSL 3.0.5 for i386 Darwin with `no-modules` causes duplicate symbol errors: ``` duplicate symbol '_bn_div_words' in: crypto/bn/libcrypto-shlib-bn-586.o providers/liblegacy.a(liblegacy-lib-bn-586.o) duplicate symbol '_bn_sub_part_words' in: crypto/bn/libcrypto-shlib-bn-586.o providers/liblegacy.a(liblegacy-lib-bn-586.o) duplicate symbol '_bn_sqr_words' in: crypto/bn/libcrypto-shlib-bn-586.o...
When I disable the quick bookmark feature, as all I need this addon for is choosing a default folder for Firefox bookmarks, why do I get this \  when...
When I start VSCode on macOS 12.6 and open a Ruby file, the only auto completion I get is "Loading...". But when I open the command palette and choose "Restart...
Settings claim that toolchain path defaults to Xcode default toolchain  and `sourcekit-lsp` path defaults to the one from the toolchain path  But it isn't! `sourcekite` is default: 
Variables like ``` BUILD="$HOME/ttfautohint-build" INST="$BUILD/local" ``` should be customizable without having to alter your build script. An easy way to do that is by allowing them to be overwritten through...
Currently the script is like this: - Download everything - Extract everything - Patch everything - Build everything Yet if you were implementing #42, there are situations were it would...
Just add this at the very top of your script: ``` # Detect how many CPU cores are available cores=$( (nproc --all || sysctl -n hw.ncpu) 2>/dev/null || echo 1...
As you cannot even run the script more than once (`Build directory ... must not exist.`), why would you want to keep the source or intermediate build files? If I...
Currently the script misses `set -e`. As a result, if one of the commands terminate with a non-zero exit code, indicating failure, the script just continues. E.g. a past version...