Blame support/support_paths.c

Packit Service 0bbb8c
/* Various paths that might be needed.
Packit Service 0bbb8c
   Copyright (C) 2018 Free Software Foundation, Inc.
Packit Service 0bbb8c
   This file is part of the GNU C Library.
Packit Service 0bbb8c
Packit Service 0bbb8c
   The GNU C Library is free software; you can redistribute it and/or
Packit Service 0bbb8c
   modify it under the terms of the GNU Lesser General Public
Packit Service 0bbb8c
   License as published by the Free Software Foundation; either
Packit Service 0bbb8c
   version 2.1 of the License, or (at your option) any later version.
Packit Service 0bbb8c
Packit Service 0bbb8c
   The GNU C Library is distributed in the hope that it will be useful,
Packit Service 0bbb8c
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 0bbb8c
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service 0bbb8c
   Lesser General Public License for more details.
Packit Service 0bbb8c
Packit Service 0bbb8c
   You should have received a copy of the GNU Lesser General Public
Packit Service 0bbb8c
   License along with the GNU C Library; if not, see
Packit Service 0bbb8c
   <http://www.gnu.org/licenses/>.  */
Packit Service 0bbb8c
Packit Service 0bbb8c
#include <support/support.h>
Packit Service 0bbb8c
#include <support/check.h>
Packit Service 0bbb8c
Packit Service 0bbb8c
/* The idea here is to make various makefile-level paths available to
Packit Service 0bbb8c
   support programs, as canonicalized absolute paths.  */
Packit Service 0bbb8c
Packit Service 0bbb8c
/* These point to the TOP of the source/build tree, not your (or
Packit Service 0bbb8c
   support's) subdirectory.  */
Packit Service 0bbb8c
#ifdef SRCDIR_PATH
Packit Service 0bbb8c
const char support_srcdir_root[] = SRCDIR_PATH;
Packit Service 0bbb8c
#else
Packit Service 0bbb8c
# error please -DSRCDIR_PATH=something in the Makefile
Packit Service 0bbb8c
#endif
Packit Service 0bbb8c
Packit Service 0bbb8c
#ifdef OBJDIR_PATH
Packit Service 0bbb8c
const char support_objdir_root[] = OBJDIR_PATH;
Packit Service 0bbb8c
#else
Packit Service 0bbb8c
# error please -DOBJDIR_PATH=something in the Makefile
Packit Service 0bbb8c
#endif
Packit Service 0bbb8c
Packit Service 0bbb8c
#ifdef OBJDIR_ELF_LDSO_PATH
Packit Service 0bbb8c
/* Corresponds to the path to the runtime linker used by the testsuite,
Packit Service 0bbb8c
   e.g. OBJDIR_PATH/elf/ld-linux-x86-64.so.2  */
Packit Service 0bbb8c
const char support_objdir_elf_ldso[] = OBJDIR_ELF_LDSO_PATH;
Packit Service 0bbb8c
#else
Packit Service 0bbb8c
# error please -DOBJDIR_ELF_LDSO_PATH=something in the Makefile
Packit Service 0bbb8c
#endif
Packit Service 0bbb8c
Packit Service 0bbb8c
#ifdef INSTDIR_PATH
Packit Service 0bbb8c
/* Corresponds to the --prefix= passed to configure.  */
Packit Service 0bbb8c
const char support_install_prefix[] = INSTDIR_PATH;
Packit Service 0bbb8c
#else
Packit Service 0bbb8c
# error please -DINSTDIR_PATH=something in the Makefile
Packit Service 0bbb8c
#endif
Packit Service 0bbb8c
Packit Service 0bbb8c
#ifdef LIBDIR_PATH
Packit Service 0bbb8c
/* Corresponds to the install's lib/ or lib64/ directory.  */
Packit Service 0bbb8c
const char support_libdir_prefix[] = LIBDIR_PATH;
Packit Service 0bbb8c
#else
Packit Service 0bbb8c
# error please -DLIBDIR_PATH=something in the Makefile
Packit Service 0bbb8c
#endif
Packit Service fcdbe4
Packit Service fcdbe4
#ifdef BINDIR_PATH
Packit Service fcdbe4
/* Corresponds to the install's bin/ directory.  */
Packit Service fcdbe4
const char support_bindir_prefix[] = BINDIR_PATH;
Packit Service fcdbe4
#else
Packit Service fcdbe4
# error please -DBINDIR_PATH=something in the Makefile
Packit Service fcdbe4
#endif
Packit Service f57529
Packit Service f57529
#ifdef ROOTSBINDIR_PATH
Packit Service f57529
/* Corresponds to the install's sbin/ directory.  */
Packit Service f57529
const char support_install_rootsbindir[] = ROOTSBINDIR_PATH;
Packit Service f57529
#else
Packit Service f57529
# error please -DROOTSBINDIR_PATH=something in the Makefile
Packit Service f57529
#endif