We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I keep deleting it, here is my launch.json:
{ "version": "0.2.0", "configurations": [ { "name": "Launch with LLDB", "type": "lldb", "request": "launch", "program": "${workspaceFolder}/../build-mariadb-server-debug/sql/mariadbd", "args": [ "--datadir=${workspaceFolder}/../data", "--socket=${workspaceFolder}/../mdb.sock", "--plugin-dir=${workspaceFolder}/../build-mariadb-server-debug/rust_target/debug", "--plugin-maturity=experimental", "--loose-clevis-key-management-tang-server=localhost:11697", "--gdb" ] } ] }
The text was updated successfully, but these errors were encountered:
Note that before this, need to run:
scripts/mariadb-install-db \ --srcdir=... \ --datadir=... \ --builddir=...
With matching arguments
Sorry, something went wrong.
And my current config file:
#!/bin/sh cmake ../mariadb-server \ -DCMAKE_C_COMPILER=clang \ -DCMAKE_CXX_COMPILER=clang++ \ -DCMAKE_C_COMPILER_LAUNCHER=sccache \ -DCMAKE_CXX_COMPILER_LAUNCHER=sccache \ -DCMAKE_EXPORT_COMPILE_COMMANDS=true \ -DCMAKE_BUILD_TYPE=Debug \ -DRUN_ABI_CHECK=NO \ -DPLUGIN_MROONGA=NO \ -DPLUGIN_ROCKSDB=NO \ -DPLUGIN_SPIDER=NO \ -DPLUGIN_SPHINX=NO \ -DPLUGIN_TOKUDB=NO \ -G Ninja
If building in a different dir (build-mdb-server for me) just need to symlink this output to the source directory
build-mdb-server
ln -s $(realpath ../build-mdb-server/compile_commands.json) $(realpath .)
No branches or pull requests
I keep deleting it, here is my launch.json:
The text was updated successfully, but these errors were encountered: