mirror of
https://github.com/neovim/neovim.git
synced 2024-12-23 20:55:18 -07:00
reorg
This commit is contained in:
parent
abe47d5f64
commit
f421757e57
2
Makefile
2
Makefile
@ -119,7 +119,7 @@ install: | nvim
|
||||
+$(BUILD_CMD) -C build install
|
||||
|
||||
clint:
|
||||
cmake -DLINT_PRG=./clint.py \
|
||||
cmake -DLINT_PRG=./src/clint.py \
|
||||
-DLINT_DIR=src \
|
||||
-DLINT_SUPPRESS_URL="$(DOC_DOWNLOAD_URL_BASE)$(CLINT_ERRORS_FILE_PATH)" \
|
||||
-P cmake/RunLint.cmake
|
||||
|
@ -1,9 +0,0 @@
|
||||
odie <<-EOS.undent
|
||||
|
||||
Whoops, the neovim Homebrew Formula has moved! Please instead run:
|
||||
|
||||
brew tap neovim/homebrew-neovim
|
||||
brew install --HEAD neovim
|
||||
|
||||
Thanks!
|
||||
EOS
|
@ -269,7 +269,7 @@ if(CLANG_ASAN_UBSAN)
|
||||
set(SANITIZE_RECOVER -fno-sanitize-recover) # Clang 3.5-
|
||||
endif()
|
||||
set_property(TARGET nvim APPEND_STRING PROPERTY COMPILE_FLAGS "-DEXITFREE ")
|
||||
set_property(TARGET nvim APPEND_STRING PROPERTY COMPILE_FLAGS "${SANITIZE_RECOVER} -fno-omit-frame-pointer -fno-optimize-sibling-calls -fsanitize=address -fsanitize=undefined -fsanitize-blacklist=${PROJECT_SOURCE_DIR}/.asan-blacklist")
|
||||
set_property(TARGET nvim APPEND_STRING PROPERTY COMPILE_FLAGS "${SANITIZE_RECOVER} -fno-omit-frame-pointer -fno-optimize-sibling-calls -fsanitize=address -fsanitize=undefined -fsanitize-blacklist=${PROJECT_SOURCE_DIR}/src/.asan-blacklist")
|
||||
set_property(TARGET nvim APPEND_STRING PROPERTY LINK_FLAGS "-fsanitize=address -fsanitize=undefined ")
|
||||
elseif(CLANG_MSAN)
|
||||
message(STATUS "Enabling Clang memory sanitizer for nvim.")
|
||||
|
@ -22111,9 +22111,8 @@ bool eval_has_provider(char *name)
|
||||
return false;
|
||||
}
|
||||
|
||||
// Compute the `DictWatcher` address from a QUEUE node. This only exists because
|
||||
// ASAN doesn't handle `QUEUE_DATA` pointer arithmetic, and we blacklist this
|
||||
// function on .asan-blacklist.
|
||||
// Compute the `DictWatcher` address from a QUEUE node. This only exists for
|
||||
// .asan-blacklist (ASAN doesn't handle QUEUE_DATA pointer arithmetic).
|
||||
static DictWatcher *dictwatcher_node_data(QUEUE *q)
|
||||
FUNC_ATTR_NONNULL_ALL FUNC_ATTR_NONNULL_RET
|
||||
{
|
||||
|
@ -60,7 +60,7 @@ ifdef USE_VALGRIND
|
||||
TOOL := valgrind -q \
|
||||
-q \
|
||||
$(VALGRIND_TOOL) \
|
||||
--suppressions=../../../.valgrind.supp \
|
||||
--suppressions=../../.valgrind.supp \
|
||||
--error-exitcode=123 \
|
||||
--log-file=valgrind.\%p.$* \
|
||||
$(VGDB) \
|
||||
|
Loading…
Reference in New Issue
Block a user