aboutsummaryrefslogtreecommitdiff
path: root/third-party/cmake
Commit message (Collapse)AuthorAge
...
* Add luv as a third party dependencyThiago de Arruda2016-04-11
| | | | | | | | | | | | | Luv is a simple lua binding to libuv, which is now used by neovim lua client. The bundled luv installation a bit different from other dependencies in that it is installed two times: - The "BuildLuv.cmake" script downloads and installs a static version of luv using its normal cmake build script. This static version will be used later. - Luv default rockspec is replaced with the alternate under the "rockspecs" directory(the alternate rockspec plays nicer with neovim build system) - The alternate rockspec is used to build/install the lua module and make it available to lua scripts.
* Allow a lua debugger to be specified on `functionaltest-lua` targetThiago de Arruda2016-04-11
|
* Add Lua 5.1 as a third party depThiago de Arruda2016-03-07
| | | | | Also add a functionaltest-lua target to run the functional tests using the lua interpreter and corresponding helper to top-level Makefile
* misc: UNIX => Unix #4022Seth Jackson2016-01-16
| | | | | | | | | | Although UNIX is a registered trademark of The Open Group, it doesn't really matter whether we refer to these systems as UNIX, Unix, or Unix-like. So, for consistency, refer to them collectively as Unix. Related: http://www.greens.org/about/unix.html http://www.unixica.com/html/unixunix.html
* build: ensure static jemalloc. #3970Thomas Fehér2016-01-09
| | | | | | | | | | Otherwise the dynamic library is built also and find_library will prefer that over the static one. That results in linking against the dynamic library which will not be found after install. This code: https://github.com/neovim/neovim/blob/8b3c399b6d7f4a277d80da4b29349fed944f7d46/third-party/CMakeLists.txt#L130 should prevent the above problem, but it doesn't hurt to be explicit.
* BuildLibuv.cmake: make case consistentJustin M. Keyes2016-01-08
|
* Luacheck: point to latest rockspecMarco Hinz2015-12-01
| | | | | | | | | | | | | So far luacheck's rockspec specified only the git protocol. Hence people behind firewalls/proxies, that block port 9814, had trouble fetching this dependency via luarocks. The latest commit updated the rockspec to use either git or https. Thus common workarounds like this are not needed anymore: git config --global url."https://".insteadOf git:// References #3769.
* Tests: add luacheck for linting testsMarco Hinz2015-11-23
| | | | | | | Source: https://github.com/mpeterv/luacheck Docs: http://luacheck.readthedocs.org/en/0.12.0/index.html Run via "make testlint".
* Remove outdated comment from BuildLuarocks.cmakeMarco Hinz2015-11-23
|
* third-party: enable verbose builds of luajit and libuvJohn Szakmeister2015-11-10
| | | | | | Libuv and LuaJIT like to hide the actual compilation and linking commands behind nice text. This change makes them spit out the actual command line to help us with debugging issues that people are seeing.
* Remove our cliargs workaround use 2.0.rc11 of Busted.John Szakmeister2015-10-28
| | | | Busted now correctly excludes the 3.0 line of cliargs.
* Update busted to pick up the CLI fix.John Szakmeister2015-10-27
| | | | | | Unfortunately, it's not enough to avoid the rc file. For now, let's install a good version of lua_cliargs until the dependency is fixed upstream.
* third-party: update jemalloc to 4.0.2Felipe Morales2015-09-22
| | | | | | | | | | | jemalloc 4.0 adds support for OpenBSD, DragonFlyBSD and other platforms. Release notes: https://github.com/jemalloc/jemalloc/releases/tag/4.0.0 4.0.1 and 4.0.2 are bugfix releases Release notes: https://github.com/jemalloc/jemalloc/releases/tag/4.0.1 https://github.com/jemalloc/jemalloc/releases/tag/4.0.2
* test: update lua client to 0.0.1-14Justin M. Keyes2015-09-10
|
* test: update lua client to 0.0.1-13 #3281Justin M. Keyes2015-09-10
|
* CMake: Don't use existing third-party sources by default.Florian Walch2015-09-09
| | | | | | | | Introduce ALLOW_EXISTING_SRC_DIR option, turned off by default. The Homebrew formula, which downloads and extracts the third-party dependency sources before starting the build, would turn this option ON.
* deps: Don't pin dependenciesMichael Reed2015-07-18
| | | | | | | | This effectively reverts 585e5d32a3402bffa971ae8124fc64004ab92e61 The pinning was done at a time when `lua_cliargs` caused test failures, so an older version which didn't was pinned. We're now using the latest version (2.5-1), so the cause of those failures were presumably fixed.
* deps: Update busted: 2.0 rc8 -> 2.0 rc10Michael Reed2015-07-18
| | | | | | | | | This removes the dependency on ansicolors, see [1]: See [2] for a changelog between the two versions. [1]: https://github.com/Olivine-Labs/busted/pull/373 [2]: https://github.com/Olivine-Labs/busted/compare/v2.0.rc8-0...a6233a277da4e118f663606d54da8df88a27c076
* cmake: Use cmake -E touch instead of touch #2730Rui Abreu Ferreira2015-05-24
| | | | | CMake has a portable touch command using cmake -E touch, use it instead of calling touch that is only available in Unix.
* CMake: Build third-party deps in WindowsRui Abreu Ferreira2015-05-15
| | | | | | | | | | | | | | - Update recipes to build with MSVC or cross compile in Unix with Mingw - For recipes that need to be reused, wrap recipe in CMake function using cmake_parse_arguments - New directory .deps/host is the install root for HOST targets, the old .deps/usr is used for TARGET - In windows disable builds for terminal libraries and jemalloc - Added cmake script CopyFilesGlob.cmake to copy files using glob cmake -DFROM_GLOB=*.h -DTO=/usr/include -P CopyFilesGlob.cmake - New CMake variables HOSTDEPS_* can be used in cross compile recipes. Except when the target is UNIX, since that would break 32bit builds in 64bit Unix systems using the Travis 32bit toolchain
* Merge pull request #2616 from jszakmeister/update-busted-dependenciesJohn Szakmeister2015-05-11
|\ | | | | build: update dependencies for busted
| * third-party: update a couple busted dependencies to newer versionsJohn Szakmeister2015-05-09
| |
| * third-party: update dependencies for bustedJohn Szakmeister2015-05-09
| | | | | | | | | | | | We didn't have ansicolors pegged, and several others were below the minimum required versions causing busted to go out and grab newer versions anyways. Let's peg them all to useful versions.
* | third-party: use the official jemalloc tarballJohn Szakmeister2015-05-11
|/ | | | | This avoids messages to stderr about VERSION being missing, and allows us to skip the autogen step.
* Require pkg-config to build bundled libtermkey #2606Rui Abreu Ferreira2015-05-08
| | | | | | | | | | | | | | Libtermkey can be linked against unibilium or curses. For the bundled dependencies Neovim links against static versions of libtermkey and unibilium, after building both libraries. However libtermkey requires pkg-config to be installed in order to detect and link against unibilium, otherwise it falls back to curses by default. In systems where pkg-config is not installed building Neovim against the bundled libtermkey caused a linking error (#2484). So pkg-config needs to be installed for the bundled libtermkey to build properly.
* deps: Update lua-client. #2590Florian Walch2015-05-05
|
* third-party: Update lua-xml to release 1.1.2 #2586Rui Abreu Ferreira2015-05-05
|
* jemalloc: Force use of prefixed functions.Florian Walch2015-04-29
| | | | | | | | * Set JEMALLOC_NO_DEMANGLE to be able to use `je_*` functions, regardless of how jemalloc was compiled (--with-jemalloc-prefix) * Show jemalloc information in Neovim's version output. Resolve #2449.
* deps: Remove shared libraries.Florian Walch2015-04-29
|
* Update busted version to 2.0.rc8-0Rui Abreu Ferreira2015-04-22
|
* Refactor luarocks third-party recipeRui Abreu Ferreira2015-04-22
| | | | | - Replace repeated use of the luarocks command and build arguments with variables ${LUAROCKS_BINARY} and ${LUAROCKS_BUILDARGS}
* Add option USE_BUNDLED_BUSTED to third-partyRui Abreu Ferreira2015-04-22
| | | | | | - When not running the unit tests, building the third-party busted, nvim-client and other dependencies can be skipped by passing -DUSE_BUNDLED_BUSTED=FALSE to the third-party project.
* Revert "third-party: temporarily drop back to an old version of the busted spec"Michael Reed2015-04-16
| | | | | | | No longer needed after https://github.com/Olivine-Labs/busted/commit/aab5d19d0c615a33b865ebc771fdef80edb99356 This reverts commit d22f2f94047a5ed1e930ee46d0d2e8d6aacfa104.
* third-party: temporarily drop back to an old version of the busted specJohn Szakmeister2015-04-14
| | | | | The new one contains a clone url that does not work correctly. Once that is fixed, we can go back to tracking master.
* third-party: remove stray argumentJohn Szakmeister2015-04-14
| | | | This was missed when dropping our custom output handler.
* deps: Add jemalloc as an optional dependencyThiago de Arruda2015-04-13
| | | | | | | | | | | | Jemalloc will be used if the cmake option `USE_JEMALLOC` is enabled(which is the default). To avoid trouble with clang's ASAN, it is disabled by default if the `SANITIZE` option is enabled. Since jemalloc has thread cache for small objects, it fills the gap created by removing klib memory pools. The `xstrdup` funciton(memory.c) had to be reimplemented on top of `xmalloc` to make it work with a custom allocator.
* build: Remove busted output handler utfTerminalDetailedThiago de Arruda2015-04-11
| | | | | Busted now contains "gtest", which can be used for the same purpose as utfTerminalDetailed.
* deps: Update busted and dependenciesThiago de Arruda2015-03-24
|
* build: add support for running the tests in junit formatJohn Szakmeister2015-03-21
| | | | | | This requires a couple of extra modules that are not installed by default, and it requires capturing stdout of the tests--otherwise CMake output is intermixed with the XML output of busted.
* deps: Replace `cp` by `${CMAKE_COMMAND} -E copy` for portabilityThiago de Arruda2015-03-15
|
* deps: Add utfTerminalDetailed busted output handlerThiago de Arruda2015-03-15
| | | | | | | | | This is a variant of the utfTerminal output handler that will: - Output the file name before each suite is executed - Output the test name before each test is executed This will make it simpler to identify crashing/hanging tests.
* build: fix a missing reference to libunibilium missed in #2125John Szakmeister2015-03-13
|
* third-party: change all references to libunibilium to just unibiliumJohn Szakmeister2015-03-10
|
* third-party: fix some whitespace issues from the recent splittingJohn Szakmeister2015-03-10
|
* Split third-party recipes into multiple filesRui Abreu Ferreira2015-03-09
|
* Switch to SHA256 for third-party bundles downloadingXu Cheng2015-03-06
| | | | Closes #2107
* build: allow SKIP or skip to be used as the SHA1John Szakmeister2015-02-09
| | | | This will skip hash checking, just like the all zeros hash.
* build: split hash checking from the download stepJohn Szakmeister2015-02-09
| | | | | | | | | | | | | | It turns out that `file(DOWNLOAD ...)` is not very user friendly with it's error message, and only supports MD5 on v2.8.10 of CMake (the default for Ubuntu 12.04). If CMake is built without SSL support, users are left hanging with a message that the hashes don't match. It turns out that `file(SHA1 ...)` exists in v2.8.10, and we can use that to compute the hash ourselves. So this splits the hash checking into a separate step, where we can provide some additional advice if the SHA1 is the hash for an empty file. Additionally, it also allows us to drop the MD5 hashes and maintain only SHA1 hashes for our dependencies.
* CMake: Remove msgpack shared library in subdirectories.Florian Walch2014-12-11
|
* build: allow skipping of the hash check in the download stepJohn Szakmeister2014-11-25
| | | | | | This is useful when trying to bisect an issue in a dependency, and we want to pull from a specific commit but don't want to have to download and determine the sha1sum and md5sum of the tarball.