Blame support/support_paths.c

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