summaryrefslogtreecommitdiff
path: root/.gitignore
diff options
context:
space:
mode:
authorStefan Hajnoczi <stefanha@redhat.com>2019-05-25 09:58:29 +0100
committerJens Axboe <axboe@kernel.dk>2019-05-25 06:36:21 -0600
commit1b049c1265977ba13f20797848859a46ade1b75b (patch)
tree7d56e53bd013d95acdf27643c82643185dc1ba43 /.gitignore
parentd672969583c3226828392771b4a949452c9ef578 (diff)
pkgconfig: install a liburing.pc file
pkg-config (https://pkgconfig.freedesktop.org/) makes it easier to build applications that have library dependencies. Libraries ship .pc files containing the compiler and linker flags needed to build successfully. This saves applications from hardcoding these details into their build scripts, especially when these details can change between operating systems or distributions. To build a liburing application: gcc $(pkg-config --cflags --libs liburing) -o myapp myapp.c Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com> Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to '.gitignore')
-rw-r--r--.gitignore2
1 files changed, 2 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e292825..08ba0e0 100644
--- a/.gitignore
+++ b/.gitignore
@@ -12,3 +12,5 @@
config-host.h
config-host.mak
config.log
+
+liburing.pc