CodingMarkus

Results 14 issues of 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...

triaged: bug

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 \ ![2](https://user-images.githubusercontent.com/26418089/78502053-503d1400-775f-11ea-9990-38d742c4c4df.png) when...

type/bug

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 ![Screenshot 2024-04-11 at 14 05 34](https://github.com/vknabel/vscode-swift-development-environment/assets/26418089/97899708-13b2-452e-aba3-985f812f9466) and `sourcekit-lsp` path defaults to the one from the toolchain path ![Screenshot 2024-04-11 at...

According to description, `sourcekit-lsp` is default: ![Screenshot 2024-04-11 at 14 00 51](https://github.com/vknabel/vscode-swift-development-environment/assets/26418089/a17229cc-344a-4818-8035-94080f3fdb96) But it isn't! `sourcekite` is default: ![Screenshot 2024-04-11 at 14 01 54](https://github.com/vknabel/vscode-swift-development-environment/assets/26418089/c65de9fc-00a1-4d23-8ab4-06ab61ea207f)

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...