Skip to content

Commit

Permalink
Merge pull request #103 from pzaino/develop
Browse files Browse the repository at this point in the history
Cumulative merge from develop to main with bug fixes and some performance improvement
  • Loading branch information
pzaino authored Apr 7, 2022
2 parents 2fe4ae5 + 0d8932a commit 424437f
Show file tree
Hide file tree
Showing 6 changed files with 220 additions and 135 deletions.
2 changes: 1 addition & 1 deletion .vscode/c_cpp_properties.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"cStandard": "c99",
"cppStandard": "gnu++98",
"intelliSenseMode": "linux-gcc-x64",
"compileCommands": "${workspaceFolder}/x64/Debug/Zvector.ClangTidy/compile_commands.json"
"compileCommands": "${workspaceFolder}/.vscode/compile_commands.json"
},
{
"name": "Mac",
Expand Down
14 changes: 13 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
],
"c-cpp-flylint.clang.language": "C",
"c-cpp-flylint.cppcheck.extraArgs": [
"--std c99",
"--bug-hunting",
"--enable=all",
"--suppress=missingIncludeSystem"
Expand Down Expand Up @@ -53,5 +52,18 @@
"/usr/include/",
"/usr/local/include/",
"/usr/lib64/gcc/x86_64-suse-linux/11/include"
],
"makefile.compileCommandsPath": "${workspaceFolder}/.vscode/compile_commands.json",
"makefile.launchConfigurations": [

],
"makefile.configurations": [
{
"name": "MyConfiguration",
"problemMatchers": [
"$gcc"
],
"makeArgs": ["all", "debug", "testing"]
},
]
}
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -277,6 +277,7 @@ debug: core tests
# Use "make testing" to build code with sanitizers for testing purposes:
.PHONY: testing
testing: CFLAGS+= -ggdb3 -fsanitize=address -fsanitize=leak -fsanitize=undefined
testing: CODE_MACROS+= -DDEBUG
testing: core tests

# Use "make install" to build and install the core library
Expand Down
Loading

0 comments on commit 424437f

Please sign in to comment.