Vim-fork focused on extensibility and usability
Go to file
zeertzjq 3d45706478
build: guard free_locales with HAVE_WORKING_LIBINTL #19095
With 4c7462fdb3, when `libintl` is turned off via
`-DENABLE_LIBINTL=OFF`, Neovim does not compile in Debug mode with the following
error message:

```
...
[201/331] Building C object src/nvim/CMakeFiles/nvim.dir/eval.c.o
FAILED: src/nvim/CMakeFiles/nvim.dir/eval.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -DEXITFREE -DINCLUDE_GENERATED_DECLARATIONS -DMIN_LOG_LEVEL=1 -DNVIM_MSGPACK_HAS_FLOAT32 -DNVIM_UNIBI_HAS_VAR_FROM -Dnvim_EXPORTS -I/Users/hat/Projects/neovim/build/config -I/Users/hat/Projects/neovim/src -I/Users/hat/Projects/neovim/build/src/nvim/auto -I/Users/hat/Projects/neovim/build/include -I/Users/hat/Projects/neovim/.deps/usr/include/luajit-2.1 -isystem /Users/hat/Projects/neovim/.deps/usr/include -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -DNVIM_TS_HAS_SET_MATCH_LIMIT -DNVIM_TS_HAS_SET_ALLOCATOR -g -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.3.sdk -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wshadow -Wconversion -Wdouble-promotion -Wmissing-noreturn -Wmissing-format-attribute -Wmissing-prototypes -Wimplicit-fallthrough -Wvla -fstack-protector-strong -fno-common -fdiagnostics-color=always  -Wno-conversion -MD -MT src/nvim/CMakeFiles/nvim.dir/eval.c.o -MF src/nvim/CMakeFiles/nvim.dir/eval.c.o.d -o src/nvim/CMakeFiles/nvim.dir/eval.c.o -c /Users/hat/Projects/neovim/src/nvim/eval.c
/Users/hat/Projects/neovim/src/nvim/eval.c:473:3: error: implicit declaration of function 'free_locales' is invalid in C99 [-Werror,-Wimplicit-function-declaration]
  free_locales();
  ^
/Users/hat/Projects/neovim/src/nvim/eval.c:473:3: note: did you mean 'free_titles'?
/Users/hat/Projects/neovim/build/include/buffer.h.generated.h:58:16: note: 'free_titles' declared here
DLLEXPORT void free_titles(void);
               ^
1 error generated.
[212/331] Building C object src/nvim/CMakeFiles/nvim.dir/eval/funcs.c.o
ninja: build stopped: subcommand failed.
make: *** [nvim] Error 1
```

The previous commit, b1b5802009, to 4c7462f does
not have this issue. As you can see in the following, the issue occurs only in
Debug mode with `libintl` turned off:

```bash
# No issue
git checkout b1b5802

# The following Debug build works
make distclean; make SDKROOT=$(xcrun --sdk macosx --show-sdk-path) CMAKE_EXTRA_FLAGS="-DENABLE_LIBINTL=OFF"
# The following Release build works
make distclean; make CMAKE_BUILD_TYPE=Release SDKROOT=$(xcrun --sdk macosx --show-sdk-path) CMAKE_EXTRA_FLAGS="-DENABLE_LIBINTL=OFF"

# Compile error when in Debug and libintl turned off
git checkout 4c7462f

# The following Debug build does not work
make distclean; make SDKROOT=$(xcrun --sdk macosx --show-sdk-path) CMAKE_EXTRA_FLAGS="-DENABLE_LIBINTL=OFF"

# The following Debug build works
make distclean; make SDKROOT=$(xcrun --sdk macosx --show-sdk-path)

# The following Release build works
make distclean; make CMAKE_BUILD_TYPE=Release SDKROOT=$(xcrun --sdk macosx --show-sdk-path) CMAKE_EXTRA_FLAGS="-DENABLE_LIBINTL=OFF"
```

I noticed this because I turn `libintl` off when compiling `libnvim` for VimR.

Fix #19093
2022-06-26 03:17:57 -07:00
.builds ci(bsd): conditional runs for faster builds #18439 2022-05-11 18:26:07 -07:00
.github ci(release): build a universal binary on macOS 2022-06-25 00:25:05 +08:00
ci build: add a cmake target for all used linters #18543 2022-06-09 08:09:24 -07:00
cmake fix(tests): remove misleading $TEST_PATH segment #19050 2022-06-23 16:15:55 -07:00
config refactor: change type of linenr_T from long to int32_t 2022-06-10 16:16:41 +02:00
contrib feat(contrib): asan debugging script #18892 2022-06-12 10:54:14 -07:00
man feat(defaults): session data in $XDG_STATE_HOME #15583 2022-05-12 07:13:45 -07:00
packaging fix(packaging): remove excess forward slash in Wix Patch (#18121) 2022-04-24 17:53:09 -07:00
runtime vim-patch:e1dc76fbf333 (#19092) 2022-06-25 21:56:51 +02:00
scripts build(gen_vimdoc): remove needless list creation and unused variable (#19079) 2022-06-25 18:03:02 +08:00
snap cmake: install app icon in XDG hicolor icon theme (#14656) 2021-05-27 22:37:24 +02:00
src build: guard free_locales with HAVE_WORKING_LIBINTL #19095 2022-06-26 03:17:57 -07:00
test refactor(tests): introduce testprg() 2022-06-25 08:27:17 -07:00
third-party fix(build): strip trailing newline from variable (#19084) 2022-06-25 13:45:20 +02:00
unicode Update unicode files 2020-10-04 11:50:38 -04:00
.clang-format docs(clang-format): one space in directives indent (#18800) 2022-05-30 23:49:11 +08:00
.clangd Adding clangd language serever config file to point to build/ directory for compile_commands.json 2021-06-28 11:03:09 -04:00
.editorconfig chore(editorconfig): remove "charset" (#18541) 2022-05-12 23:48:42 +08:00
.flake8 ci: pylint target via flake8 2019-07-29 22:14:23 +02:00
.git-blame-ignore-revs chore: git-blame-ignore stylua format PR (#18516) 2022-05-11 09:31:58 +02:00
.gitattributes fix: include ci/ in exported tarball 2021-10-01 19:53:27 -04:00
.gitignore feat(lua): add api and lua autocmds 2022-02-27 22:04:55 +01:00
.luacheckrc fix(filetype): set default ft_ignore_pat in filetype.lua (#16917) 2022-01-04 15:02:01 -07:00
.luacov Lua: vim.validate() 2019-11-10 22:50:24 -08:00
.mailmap fix(winbar): allow winbar to display the ruler 2022-05-22 18:56:07 +02:00
.stylua.toml ci: lint runtime with stylua 2022-05-09 16:31:55 +02:00
.styluaignore ci: lint runtime with stylua 2022-05-09 16:31:55 +02:00
.travis.yml ci: remove remnants of gperf #18550 2022-05-12 16:55:27 -07:00
BACKERS.md Update backer URL 2015-11-11 19:50:33 -08:00
BSDmakefile feat(lua)!: register_keystroke_callback => on_key 2021-09-09 06:09:33 -07:00
CMakeLists.txt fix(build): don't disable byte precompilation on debug builds 2022-06-25 19:24:48 +02:00
codecov.yml bundle: move tree-sitter as a bundled dep 2020-11-03 10:39:35 +01:00
CONTRIBUTING.md feat(lintcommit): remove "chore", add "dist" #18594 2022-05-17 05:42:48 -07:00
LICENSE.txt ci: improved cpack packaging 2022-02-24 19:54:44 +10:00
MAINTAIN.md ci(backport): remove triggering by comment (#18210) 2022-04-23 14:26:42 -07:00
Makefile build: add a cmake target for all used linters #18543 2022-06-09 08:09:24 -07:00
README.md docs: specify CMAKE_BUILD_TYPE=RelWithDebInfo in README (#18859) 2022-06-05 03:15:06 +08:00

Neovim

Documentation | Chat | Twitter

GitHub CI Codecov coverage Coverity Scan analysis Clang analysis PVS-Studio analysis

Packages Debian CI Downloads nvim

Neovim is a project that seeks to aggressively refactor Vim in order to:

See the Introduction wiki page and Roadmap for more information.

Features

See :help nvim-features for the full list!

Install from package

Pre-built packages for Windows, macOS, and Linux are found on the Releases page.

Managed packages are in Homebrew, Debian, Ubuntu, Fedora, Arch Linux, Void Linux, Gentoo, and more!

Install from source

See the Building Neovim wiki page for details.

The build is CMake-based, but a Makefile is provided as a convenience. After installing the dependencies, run the following command.

make CMAKE_BUILD_TYPE=RelWithDebInfo
sudo make install

To install to a non-default location:

make CMAKE_BUILD_TYPE=RelWithDebInfo CMAKE_INSTALL_PREFIX=/full/path/
make install

CMake hints for inspecting the build:

  • cmake --build build --target help lists all build targets.
  • build/CMakeCache.txt (or cmake -LAH build/) contains the resolved values of all CMake variables.
  • build/compile_commands.json shows the full compiler invocations for each translation unit.

Transitioning from Vim

See :help nvim-from-vim for instructions.

Project layout

├─ ci/              build automation
├─ cmake/           build scripts
├─ runtime/         user plugins/docs
├─ src/nvim/        application source code (see src/nvim/README.md)
│  ├─ api/          API subsystem
│  ├─ eval/         VimL subsystem
│  ├─ event/        event-loop subsystem
│  ├─ generators/   code generation (pre-compilation)
│  ├─ lib/          generic data structures
│  ├─ lua/          Lua subsystem
│  ├─ msgpack_rpc/  RPC subsystem
│  ├─ os/           low-level platform code
│  └─ tui/          built-in UI
├─ third-party/     CMake subproject to build dependencies
└─ test/            tests (see test/README.md)

License

Neovim contributions since b17d96 are licensed under the Apache 2.0 license, except for contributions copied from Vim (identified by the vim-patch token). See LICENSE for details.

Vim is Charityware.  You can use and copy it as much as you like, but you are
encouraged to make a donation for needy children in Uganda.  Please see the
kcc section of the vim docs or visit the ICCF web site, available at these URLs:

        http://iccf-holland.org/
        http://www.vim.org/iccf/
        http://www.iccf.nl/

You can also sponsor the development of Vim.  Vim sponsors can vote for
features.  The money goes to Uganda anyway.