[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH 0/3] tools: avoid creating symbolic links during make
 
- To: xen-devel@xxxxxxxxxxxxxxxxxxxx
 
- From: Jürgen Groß <jgross@xxxxxxxx>
 
- Date: Wed, 14 Oct 2020 14:44:40 +0200
 
- Cc: Andrew Cooper <andrew.cooper3@xxxxxxxxxx>, George Dunlap <george.dunlap@xxxxxxxxxx>, Ian Jackson <iwj@xxxxxxxxxxxxxx>, Jan Beulich <jbeulich@xxxxxxxx>, Julien Grall <julien@xxxxxxx>, Stefano Stabellini <sstabellini@xxxxxxxxxx>, Wei Liu <wl@xxxxxxx>, Samuel Thibault <samuel.thibault@xxxxxxxxxxxx>, Christian Lindig <christian.lindig@xxxxxxxxxx>, David Scott <dave@xxxxxxxxxx>
 
- Delivery-date: Wed, 14 Oct 2020 12:44:45 +0000
 
- List-id: Xen developer discussion <xen-devel.lists.xenproject.org>
 
 
 
Ping?
On 02.10.20 16:22, Juergen Gross wrote:
 
The rework of the Xen library build introduced creating some additional
symbolic links during the build process.
This series is undoing that by moving all official Xen library headers
to tools/include and by using include paths and the vpath directive
when access to some private headers of another directory is needed.
Juergen Gross (3):
   tools/libs: move official headers to common directory
   tools/libs/guest: don't use symbolic links for xenctrl headers
   tools/libs/store: don't use symbolic links for external files
  .gitignore                                    |  5 ++--
  stubdom/mini-os.mk                            |  2 +-
  tools/Rules.mk                                |  5 ++--
  tools/{libs/vchan => }/include/libxenvchan.h  |  0
  tools/{libs/light => }/include/libxl.h        |  0
  tools/{libs/light => }/include/libxl_event.h  |  0
  tools/{libs/light => }/include/libxl_json.h   |  0
  tools/{libs/light => }/include/libxl_utils.h  |  0
  tools/{libs/light => }/include/libxl_uuid.h   |  0
  tools/{libs/util => }/include/libxlutil.h     |  0
  tools/{libs/call => }/include/xencall.h       |  0
  tools/{libs/ctrl => }/include/xenctrl.h       |  0
  .../{libs/ctrl => }/include/xenctrl_compat.h  |  0
  .../devicemodel => }/include/xendevicemodel.h |  0
  tools/{libs/evtchn => }/include/xenevtchn.h   |  0
  .../include/xenforeignmemory.h                |  0
  tools/{libs/gnttab => }/include/xengnttab.h   |  0
  tools/{libs/guest => }/include/xenguest.h     |  0
  tools/{libs/hypfs => }/include/xenhypfs.h     |  0
  tools/{libs/stat => }/include/xenstat.h       |  0
  .../compat => include/xenstore-compat}/xs.h   |  0
  .../xenstore-compat}/xs_lib.h                 |  0
  tools/{libs/store => }/include/xenstore.h     |  0
  tools/{xenstore => include}/xenstore_lib.h    |  0
  .../{libs/toolcore => }/include/xentoolcore.h |  0
  .../include/xentoolcore_internal.h            |  0
  tools/{libs/toollog => }/include/xentoollog.h |  0
  tools/libs/call/Makefile                      |  3 ---
  tools/libs/ctrl/Makefile                      |  3 ---
  tools/libs/devicemodel/Makefile               |  3 ---
  tools/libs/evtchn/Makefile                    |  2 --
  tools/libs/foreignmemory/Makefile             |  3 ---
  tools/libs/gnttab/Makefile                    |  3 ---
  tools/libs/guest/Makefile                     | 12 ++-------
  tools/libs/hypfs/Makefile                     |  3 ---
  tools/libs/libs.mk                            | 10 +++----
  tools/libs/light/Makefile                     | 27 +++++++++----------
  tools/libs/stat/Makefile                      |  2 --
  tools/libs/store/Makefile                     | 15 +++--------
  tools/libs/toolcore/Makefile                  |  9 +++----
  tools/libs/toollog/Makefile                   |  2 --
  tools/libs/util/Makefile                      |  3 ---
  tools/libs/vchan/Makefile                     |  3 ---
  tools/ocaml/libs/xentoollog/Makefile          |  2 +-
  tools/ocaml/libs/xentoollog/genlevels.py      |  2 +-
  45 files changed, 32 insertions(+), 87 deletions(-)
  rename tools/{libs/vchan => }/include/libxenvchan.h (100%)
  rename tools/{libs/light => }/include/libxl.h (100%)
  rename tools/{libs/light => }/include/libxl_event.h (100%)
  rename tools/{libs/light => }/include/libxl_json.h (100%)
  rename tools/{libs/light => }/include/libxl_utils.h (100%)
  rename tools/{libs/light => }/include/libxl_uuid.h (100%)
  rename tools/{libs/util => }/include/libxlutil.h (100%)
  rename tools/{libs/call => }/include/xencall.h (100%)
  rename tools/{libs/ctrl => }/include/xenctrl.h (100%)
  rename tools/{libs/ctrl => }/include/xenctrl_compat.h (100%)
  rename tools/{libs/devicemodel => }/include/xendevicemodel.h (100%)
  rename tools/{libs/evtchn => }/include/xenevtchn.h (100%)
  rename tools/{libs/foreignmemory => }/include/xenforeignmemory.h (100%)
  rename tools/{libs/gnttab => }/include/xengnttab.h (100%)
  rename tools/{libs/guest => }/include/xenguest.h (100%)
  rename tools/{libs/hypfs => }/include/xenhypfs.h (100%)
  rename tools/{libs/stat => }/include/xenstat.h (100%)
  rename tools/{libs/store/include/compat => include/xenstore-compat}/xs.h 
(100%)
  rename tools/{libs/store/include/compat => include/xenstore-compat}/xs_lib.h 
(100%)
  rename tools/{libs/store => }/include/xenstore.h (100%)
  rename tools/{xenstore => include}/xenstore_lib.h (100%)
  rename tools/{libs/toolcore => }/include/xentoolcore.h (100%)
  rename tools/{libs/toolcore => }/include/xentoolcore_internal.h (100%)
  rename tools/{libs/toollog => }/include/xentoollog.h (100%)
 
 
 
    
     |