1
0
mirror of https://github.com/libuv/libuv synced 2025-03-28 21:13:16 +00:00

49 Commits

Author SHA1 Message Date
Juan José
e72a91e063
build: add .cache clangd folder to .gitignore (#4257)
The clangd index, before creating the `compile_commands.json` file will
create the indexes under a `.cache` folder. This does not need to be
tracked by the repo.

Signed-off-by: Juan José Arboleda <soyjuanarbol@gmail.com>
2024-01-05 10:38:15 +01:00
Jameson Nash
a5c01d4de3
misc: ignore libuv-release-tool files (#4201) 2023-11-24 11:22:25 +01:00
Hao Hu
e135dfe183
unix,win: utility for setting priority for thread (#4075)
Add uv_thread_setpriority for setting priority for threads created by
uv_thread_create. Add uv_thread_getpriority for getting thread priority.

For Linux by default, if the scheduling policy is SCHED_OTHER and the
priority is 0, we need to set the nice value.

Fixes: https://github.com/libuv/libuv/issues/4051
2023-11-14 11:30:46 +01:00
gengjiawen
1c976110d5
build: test on more platforms via QEMU in CI
This commit runs the test suite via QEMU on GitHub Actions on
a variety of platforms.

Fixes: https://github.com/libuv/libuv/issues/2842
PR-URL: https://github.com/libuv/libuv/pull/2846
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
2020-05-17 10:03:20 -04:00
Ben Noordhuis
53f3c687fc build: remove support for gyp
Upstream GYP has been unmaintained for some time now. The only big
downstream user is Node.js and they already maintain GYP build files
for their other dependencies.

This commit removes vcbuild.bat because:

1. it's entirely built around GYP, and
2. duplicates a lot of functionality that cmake provides out of the box

This commit also removes appveyor.yml. It hasn't been used after we
stopped providing prebuilt binaries for Windows about two years ago.

As if that isn't enough, this commit also removes the Android build
scripts. They were wrappers around GYP. Use CMake.

PR-URL: https://github.com/libuv/libuv/pull/2682
Refs: https://github.com/libuv/libuv/pull/2681
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Fedor Indutny <fedor.indutny@gmail.com>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com>
Reviewed-By: Saúl Ibarra Corretgé <saghul@gmail.com>
2020-04-07 18:24:13 +02:00
João Reis
2c279504f9 win: add UV_FS_O_FILEMAP
Reading and writing files using a memory file mapping can be
significantly faster on Windows.

PR-URL: https://github.com/libuv/libuv/pull/2295
Reviewed-By: Bartosz Sosnowski <bartosz@janeasystems.com>
2019-07-16 18:20:10 +02:00
Damon Kwok
a24e8a17e5
gitignore: ignore build/ directory
PR-URL: https://github.com/libuv/libuv/pull/2081
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
2018-11-20 21:17:28 -05:00
Saúl Ibarra Corretgé
33e6f79088 misc: add android-toolchain to .gitignore
PR-URL: https://github.com/libuv/libuv/pull/1433
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
2017-07-25 22:51:36 +02:00
João Reis
31a0132a68 gitignore: ignore VS temporary database files
Visual Studio 2015 uses a new database engine, creating temporary
files that should be ignored.

PR-URL: https://github.com/libuv/libuv/pull/869
Reviewed-By: Saúl Ibarra Corretgé <saghul@gmail.com>
2016-05-12 19:16:06 +02:00
Saúl Ibarra Corretgé
74990f3af2 gitignore: ignore IntelliJ project files 2015-04-30 10:04:34 +02:00
Johan Bergström
434ce034e0 build: make dist now generates a full tarball
Autotools tries to figure out what's necessary to create a tarball through
included files in Makefile.am. Since libuv has conditionals based on target OS
as well as additional samples/documentation, extra_files needs to include these.

Also, add the result of make dist to gitignore.

PR-URL: https://github.com/libuv/libuv/pull/118
Reviewed-By: Saúl Ibarra Corretgé <saghul@gmail.com>
2015-01-11 11:41:59 +01:00
Bert Belder
eb986397c1 Merge branch 'v0.10' into v1.x 2014-12-14 20:36:18 +01:00
Marc Schlaich
4298c1fb2c gitignore: ignore Visual Studio files
PR-URL: https://github.com/libuv/libuv/pull/59
Reviewed-By: Bert Belder <bertbelder@gmail.com>
Reviewed-By: Saúl Ibarra Corretgé <saghul@gmail.com>
2014-12-14 20:25:51 +01:00
Ben Noordhuis
cb5140023b build: remove dtrace probes
The existing probes, all two of them, cause a great deal of pain for
people trying to build libuv on Linux because of SystemTap's dtrace(1)
utilitity not understanding the -xnolibs flag.

We could hack around that but it's easier to just remove the probes:
they are largely useless and unused while still needing a lot of
supporting infrastructure.  This commit removes 200 lines of code
and configuration.

Refs joyent/libuv#1478.
2014-11-10 20:12:50 -03:00
Recep ASLANTAS
f2ec3ee41a ignore: ignore Xcode project and workspace files 2014-09-17 22:50:40 +02:00
Saúl Ibarra Corretgé
32e2e75f60 doc: add API documentation 2014-09-11 09:38:35 +02:00
Dylan Cali
60d621c607 gitignore: root test ignores at /test 2014-02-03 20:49:38 +04:00
Steven Kabbes
4a7a72fb32 build: ignore generated makefiles on android
gyp currently doesn't support the --generator-output option for android,
this is the best way to ignore generated files for projects using libuv
as a dependency.
2013-12-18 17:56:22 +04:00
Ben Noordhuis
9342ef7155 Merge remote-tracking branch 'origin/v0.10'
Conflicts:
	src/unix/udp.c
2013-11-27 17:35:57 +01:00
Marc Schlaich
c3e05bafa5 gitignore: ignore *.pyc files
The gyp build on Windows produces a *.pyc file as of commit 991409e.
2013-11-25 16:27:28 +01:00
Reini Urban
b0bb8deb17 .gitignore: fix .deps/, add .dirstamp 2013-10-09 18:02:11 +02:00
Ben Noordhuis
c82cea1ec5 build: enable AM_INIT_AUTOMAKE([subdir-objects])
Squelches (justified) warnings with automake 1.14.

Object files are built in subdirectories now so fix up the dtrace
postprocessing step to scan for *.lo files in said subdirectories.

Fixes #866.
2013-07-29 00:36:49 +02:00
Timothy J Fontaine
2f3124a8c1 build: add DTrace detection for autotools 2013-07-03 16:04:01 -07:00
Ben Noordhuis
ddd7e04fd6 build: switch to autotools
Switch to the build tool everyone loves to hate.  The Makefile has
served us well over the years but it's been acquiring more and more
features that autotools gives us for free, like easy static+shared
library building, sane install targets, and so on.

This commit drops MinGW support.  If there is demand for it, we'll
re-add it.
2013-07-02 01:21:16 +02:00
Ben Noordhuis
bad707db3f gitigore: ignore auto-generated uv-dtrace.h header 2013-04-10 14:23:55 +02:00
Ben Noordhuis
75dea933eb build: support out of tree builds
Invoking make with builddir_name=/path/to/dir builds libuv in the
designated directory.
2013-01-29 17:07:25 +01:00
Ben Noordhuis
df1399fa75 Remove *.mk and *.Makefile from .gitignore list
The *.mk and *.Makefile files generated by gyp are stored in $TOPLEVEL/out now.

Fixes #636.
2012-11-28 21:32:43 +01:00
Ben Noordhuis
62332ea090 build: fix make test on darwin and sunos 2012-11-10 01:43:42 +01:00
Ben Noordhuis
43d52c77ba test: make make test link against .so 2012-11-08 18:28:57 +01:00
Ben Noordhuis
8f716a9348 .gitignore gyp build artifacts 2012-02-23 01:11:17 +01:00
Ben Noordhuis
9fe9e233cf .gitignore core and vgcore files. 2011-12-12 02:15:22 +01:00
Bert Belder
b13f46f6cb Add msvs build products to .gitignore 2011-08-12 02:43:58 +02:00
Peter Bright
54a6c6fee0 Ignore VC++ files. 2011-08-09 14:37:02 -07:00
Ryan Dahl
75c109055d Bring back standalone makefiles for a better transition 2011-08-08 13:42:01 -07:00
Ryan Dahl
a30a7336f0 Build with gyp 2011-08-06 02:17:56 -07:00
Ryan Dahl
49a2ed6120 c-ares unix 2011-06-15 14:23:46 +02:00
Bert Belder
50dbf654b9 Add mingw build results to .gitignore 2011-05-09 05:41:12 +02:00
Bert Belder
d217a6c848 Update .gitignore 2011-05-08 04:45:56 +02:00
Ryan Dahl
70236f2075 Mac ignores 2011-05-07 19:15:22 -07:00
Bert Belder
75a3944841 Move visual studio solution/projects away from root
Closes #37
2011-05-07 04:14:20 +02:00
Bert Belder
5275b036b0 Benchmark runner 2011-04-19 04:47:21 +02:00
Ryan Dahl
e55a84de36 put test/runner in gitignore 2011-04-18 13:02:30 -07:00
Ryan Dahl
769948a5ad test-runner compiles 2011-04-14 12:58:24 -07:00
Bert Belder
39d31a100f ol -> oio 2011-04-07 11:12:18 +02:00
Ryan Dahl
42d96dc3ca Add ping-pong test - not yet working on unix 2011-03-31 00:21:15 -07:00
Ryan Dahl
5304a18002 Change around names in test directory - sorry bert 2011-03-30 22:42:02 -07:00
Bert Belder
6fc7bfd19e .gitignore 2011-03-30 03:10:57 +02:00
Ryan Dahl
77bc96b75b More gitignore 2011-03-29 15:29:54 -07:00
Ryan Dahl
510a5e4a2b add gitignore 2011-03-29 10:11:46 -07:00