2025-03-05 13:57:38
This commit is contained in:
parent
cf166372c9
commit
aefc7f9e05
107 changed files with 12 additions and 27312 deletions
|
@ -1,65 +0,0 @@
|
|||
# This is a basic version file for the Config-mode of find_package().
|
||||
# It is used by write_basic_package_version_file() as input file for configure_file()
|
||||
# to create a version-file which can be installed along a config.cmake file.
|
||||
#
|
||||
# The created file sets PACKAGE_VERSION_EXACT if the current version string and
|
||||
# the requested version string are exactly the same and it sets
|
||||
# PACKAGE_VERSION_COMPATIBLE if the current version is >= requested version,
|
||||
# but only if the requested major version is the same as the current one.
|
||||
# The variable CVF_VERSION must be set before calling configure_file().
|
||||
|
||||
|
||||
set(PACKAGE_VERSION "2.6.4")
|
||||
|
||||
if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION)
|
||||
set(PACKAGE_VERSION_COMPATIBLE FALSE)
|
||||
else()
|
||||
|
||||
if("2.6.4" MATCHES "^([0-9]+)\\.")
|
||||
set(CVF_VERSION_MAJOR "${CMAKE_MATCH_1}")
|
||||
if(NOT CVF_VERSION_MAJOR VERSION_EQUAL 0)
|
||||
string(REGEX REPLACE "^0+" "" CVF_VERSION_MAJOR "${CVF_VERSION_MAJOR}")
|
||||
endif()
|
||||
else()
|
||||
set(CVF_VERSION_MAJOR "2.6.4")
|
||||
endif()
|
||||
|
||||
if(PACKAGE_FIND_VERSION_RANGE)
|
||||
# both endpoints of the range must have the expected major version
|
||||
math (EXPR CVF_VERSION_MAJOR_NEXT "${CVF_VERSION_MAJOR} + 1")
|
||||
if (NOT PACKAGE_FIND_VERSION_MIN_MAJOR STREQUAL CVF_VERSION_MAJOR
|
||||
OR ((PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "INCLUDE" AND NOT PACKAGE_FIND_VERSION_MAX_MAJOR STREQUAL CVF_VERSION_MAJOR)
|
||||
OR (PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "EXCLUDE" AND NOT PACKAGE_FIND_VERSION_MAX VERSION_LESS_EQUAL CVF_VERSION_MAJOR_NEXT)))
|
||||
set(PACKAGE_VERSION_COMPATIBLE FALSE)
|
||||
elseif(PACKAGE_FIND_VERSION_MIN_MAJOR STREQUAL CVF_VERSION_MAJOR
|
||||
AND ((PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "INCLUDE" AND PACKAGE_VERSION VERSION_LESS_EQUAL PACKAGE_FIND_VERSION_MAX)
|
||||
OR (PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "EXCLUDE" AND PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION_MAX)))
|
||||
set(PACKAGE_VERSION_COMPATIBLE TRUE)
|
||||
else()
|
||||
set(PACKAGE_VERSION_COMPATIBLE FALSE)
|
||||
endif()
|
||||
else()
|
||||
if(PACKAGE_FIND_VERSION_MAJOR STREQUAL CVF_VERSION_MAJOR)
|
||||
set(PACKAGE_VERSION_COMPATIBLE TRUE)
|
||||
else()
|
||||
set(PACKAGE_VERSION_COMPATIBLE FALSE)
|
||||
endif()
|
||||
|
||||
if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION)
|
||||
set(PACKAGE_VERSION_EXACT TRUE)
|
||||
endif()
|
||||
endif()
|
||||
endif()
|
||||
|
||||
|
||||
# if the installed or the using project don't have CMAKE_SIZEOF_VOID_P set, ignore it:
|
||||
if("${CMAKE_SIZEOF_VOID_P}" STREQUAL "" OR "8" STREQUAL "")
|
||||
return()
|
||||
endif()
|
||||
|
||||
# check that the installed version has the same 32/64bit-ness as the one which is currently searching:
|
||||
if(NOT CMAKE_SIZEOF_VOID_P STREQUAL "8")
|
||||
math(EXPR installedBits "8 * 8")
|
||||
set(PACKAGE_VERSION "${PACKAGE_VERSION} (${installedBits}bit)")
|
||||
set(PACKAGE_VERSION_UNSUITABLE TRUE)
|
||||
endif()
|
|
@ -1,19 +0,0 @@
|
|||
#----------------------------------------------------------------
|
||||
# Generated CMake target import file for configuration "NoConfig".
|
||||
#----------------------------------------------------------------
|
||||
|
||||
# Commands may need to know the format version.
|
||||
set(CMAKE_IMPORT_FILE_VERSION 1)
|
||||
|
||||
# Import target "expat::expat" for configuration "NoConfig"
|
||||
set_property(TARGET expat::expat APPEND PROPERTY IMPORTED_CONFIGURATIONS NOCONFIG)
|
||||
set_target_properties(expat::expat PROPERTIES
|
||||
IMPORTED_LOCATION_NOCONFIG "${_IMPORT_PREFIX}/lib/libexpat.so.1.10.0"
|
||||
IMPORTED_SONAME_NOCONFIG "libexpat.so.1"
|
||||
)
|
||||
|
||||
list(APPEND _cmake_import_check_targets expat::expat )
|
||||
list(APPEND _cmake_import_check_files_for_expat::expat "${_IMPORT_PREFIX}/lib/libexpat.so.1.10.0" )
|
||||
|
||||
# Commands beyond this point should not need to know the version.
|
||||
set(CMAKE_IMPORT_FILE_VERSION)
|
|
@ -1,99 +0,0 @@
|
|||
# __ __ _
|
||||
# ___\ \/ /_ __ __ _| |_
|
||||
# / _ \\ /| '_ \ / _` | __|
|
||||
# | __// \| |_) | (_| | |_
|
||||
# \___/_/\_\ .__/ \__,_|\__|
|
||||
# |_| XML parser
|
||||
#
|
||||
# Copyright (c) 2019 Expat development team
|
||||
# Licensed under the MIT license:
|
||||
#
|
||||
# Permission is hereby granted, free of charge, to any person obtaining
|
||||
# a copy of this software and associated documentation files (the
|
||||
# "Software"), to deal in the Software without restriction, including
|
||||
# without limitation the rights to use, copy, modify, merge, publish,
|
||||
# distribute, sublicense, and/or sell copies of the Software, and to permit
|
||||
# persons to whom the Software is furnished to do so, subject to the
|
||||
# following conditions:
|
||||
#
|
||||
# The above copyright notice and this permission notice shall be included
|
||||
# in all copies or substantial portions of the Software.
|
||||
#
|
||||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
|
||||
# NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
||||
# DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
||||
# OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
||||
# USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
#
|
||||
if(NOT _expat_config_included)
|
||||
# Protect against multiple inclusion
|
||||
set(_expat_config_included TRUE)
|
||||
|
||||
|
||||
include("${CMAKE_CURRENT_LIST_DIR}/expat.cmake")
|
||||
|
||||
|
||||
####### Expanded from @PACKAGE_INIT@ by configure_package_config_file() #######
|
||||
####### Any changes to this file will be overwritten by the next CMake run ####
|
||||
####### The input file was expat-config.cmake.in ########
|
||||
|
||||
get_filename_component(PACKAGE_PREFIX_DIR "${CMAKE_CURRENT_LIST_DIR}/../../../" ABSOLUTE)
|
||||
|
||||
macro(set_and_check _var _file)
|
||||
set(${_var} "${_file}")
|
||||
if(NOT EXISTS "${_file}")
|
||||
message(FATAL_ERROR "File or directory ${_file} referenced by variable ${_var} does not exist !")
|
||||
endif()
|
||||
endmacro()
|
||||
|
||||
macro(check_required_components _NAME)
|
||||
foreach(comp ${${_NAME}_FIND_COMPONENTS})
|
||||
if(NOT ${_NAME}_${comp}_FOUND)
|
||||
if(${_NAME}_FIND_REQUIRED_${comp})
|
||||
set(${_NAME}_FOUND FALSE)
|
||||
endif()
|
||||
endif()
|
||||
endforeach()
|
||||
endmacro()
|
||||
|
||||
####################################################################################
|
||||
|
||||
#
|
||||
# Supported components
|
||||
#
|
||||
macro(expat_register_component _NAME _AVAILABE)
|
||||
set(expat_${_NAME}_FOUND ${_AVAILABE})
|
||||
endmacro()
|
||||
|
||||
expat_register_component(attr_info OFF)
|
||||
expat_register_component(dtd ON)
|
||||
expat_register_component(large_size OFF)
|
||||
expat_register_component(min_size OFF)
|
||||
expat_register_component(ns ON)
|
||||
|
||||
if(1024)
|
||||
expat_register_component(context_bytes ON)
|
||||
else()
|
||||
expat_register_component(context_bytes OFF)
|
||||
endif()
|
||||
|
||||
if("char" STREQUAL "char")
|
||||
expat_register_component(char ON)
|
||||
expat_register_component(ushort OFF)
|
||||
expat_register_component(wchar_t OFF)
|
||||
elseif("char" STREQUAL "ushort")
|
||||
expat_register_component(char OFF)
|
||||
expat_register_component(ushort ON)
|
||||
expat_register_component(wchar_t OFF)
|
||||
elseif("char" STREQUAL "wchar_t")
|
||||
expat_register_component(char OFF)
|
||||
expat_register_component(ushort OFF)
|
||||
expat_register_component(wchar_t ON)
|
||||
endif()
|
||||
|
||||
check_required_components(expat)
|
||||
|
||||
|
||||
endif(NOT _expat_config_included)
|
1939
config.log
1939
config.log
File diff suppressed because it is too large
Load diff
2312
config.status
2312
config.status
File diff suppressed because it is too large
Load diff
618
doc/Makefile
618
doc/Makefile
|
@ -1,618 +0,0 @@
|
|||
# Makefile.in generated by automake 1.16.5 from Makefile.am.
|
||||
# doc/Makefile. Generated from Makefile.in by configure.
|
||||
|
||||
# Copyright (C) 1994-2021 Free Software Foundation, Inc.
|
||||
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
# with or without modifications, as long as this notice is preserved.
|
||||
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
||||
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
# PARTICULAR PURPOSE.
|
||||
|
||||
|
||||
|
||||
#
|
||||
# __ __ _
|
||||
# ___\ \/ /_ __ __ _| |_
|
||||
# / _ \\ /| '_ \ / _` | __|
|
||||
# | __// \| |_) | (_| | |_
|
||||
# \___/_/\_\ .__/ \__,_|\__|
|
||||
# |_| XML parser
|
||||
#
|
||||
# Copyright (c) 2017-2024 Sebastian Pipping <sebastian@pipping.org>
|
||||
# Copyright (c) 2017 Stephen Groat <stephen@groat.us>
|
||||
# Copyright (c) 2017 Joe Orton <jorton@redhat.com>
|
||||
# Copyright (c) 2024 Tomas Korbar <tkorbar@redhat.com>
|
||||
# Licensed under the MIT license:
|
||||
#
|
||||
# Permission is hereby granted, free of charge, to any person obtaining
|
||||
# a copy of this software and associated documentation files (the
|
||||
# "Software"), to deal in the Software without restriction, including
|
||||
# without limitation the rights to use, copy, modify, merge, publish,
|
||||
# distribute, sublicense, and/or sell copies of the Software, and to permit
|
||||
# persons to whom the Software is furnished to do so, subject to the
|
||||
# following conditions:
|
||||
#
|
||||
# The above copyright notice and this permission notice shall be included
|
||||
# in all copies or substantial portions of the Software.
|
||||
#
|
||||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
|
||||
# NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
||||
# DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
||||
# OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
||||
# USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
am__is_gnu_make = { \
|
||||
if test -z '$(MAKELEVEL)'; then \
|
||||
false; \
|
||||
elif test -n '$(MAKE_HOST)'; then \
|
||||
true; \
|
||||
elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
|
||||
true; \
|
||||
else \
|
||||
false; \
|
||||
fi; \
|
||||
}
|
||||
am__make_running_with_option = \
|
||||
case $${target_option-} in \
|
||||
?) ;; \
|
||||
*) echo "am__make_running_with_option: internal error: invalid" \
|
||||
"target option '$${target_option-}' specified" >&2; \
|
||||
exit 1;; \
|
||||
esac; \
|
||||
has_opt=no; \
|
||||
sane_makeflags=$$MAKEFLAGS; \
|
||||
if $(am__is_gnu_make); then \
|
||||
sane_makeflags=$$MFLAGS; \
|
||||
else \
|
||||
case $$MAKEFLAGS in \
|
||||
*\\[\ \ ]*) \
|
||||
bs=\\; \
|
||||
sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
|
||||
| sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
|
||||
esac; \
|
||||
fi; \
|
||||
skip_next=no; \
|
||||
strip_trailopt () \
|
||||
{ \
|
||||
flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
|
||||
}; \
|
||||
for flg in $$sane_makeflags; do \
|
||||
test $$skip_next = yes && { skip_next=no; continue; }; \
|
||||
case $$flg in \
|
||||
*=*|--*) continue;; \
|
||||
-*I) strip_trailopt 'I'; skip_next=yes;; \
|
||||
-*I?*) strip_trailopt 'I';; \
|
||||
-*O) strip_trailopt 'O'; skip_next=yes;; \
|
||||
-*O?*) strip_trailopt 'O';; \
|
||||
-*l) strip_trailopt 'l'; skip_next=yes;; \
|
||||
-*l?*) strip_trailopt 'l';; \
|
||||
-[dEDm]) skip_next=yes;; \
|
||||
-[JT]) skip_next=yes;; \
|
||||
esac; \
|
||||
case $$flg in \
|
||||
*$$target_option*) has_opt=yes; break;; \
|
||||
esac; \
|
||||
done; \
|
||||
test $$has_opt = yes
|
||||
am__make_dryrun = (target_option=n; $(am__make_running_with_option))
|
||||
am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
|
||||
pkgdatadir = $(datadir)/expat
|
||||
pkgincludedir = $(includedir)/expat
|
||||
pkglibdir = $(libdir)/expat
|
||||
pkglibexecdir = $(libexecdir)/expat
|
||||
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
||||
install_sh_DATA = $(install_sh) -c -m 644
|
||||
install_sh_PROGRAM = $(install_sh) -c
|
||||
install_sh_SCRIPT = $(install_sh) -c
|
||||
INSTALL_HEADER = $(INSTALL_DATA)
|
||||
transform = $(program_transform_name)
|
||||
NORMAL_INSTALL = :
|
||||
PRE_INSTALL = :
|
||||
POST_INSTALL = :
|
||||
NORMAL_UNINSTALL = :
|
||||
PRE_UNINSTALL = :
|
||||
POST_UNINSTALL = :
|
||||
build_triplet = x86_64-pc-linux-gnu
|
||||
host_triplet = powerpc64-fsl-linux-gnu
|
||||
subdir = doc
|
||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||
am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
|
||||
$(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
|
||||
$(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
|
||||
$(top_srcdir)/acinclude.m4 \
|
||||
$(top_srcdir)/conftools/ax-require-defined.m4 \
|
||||
$(top_srcdir)/conftools/ax-check-compile-flag.m4 \
|
||||
$(top_srcdir)/conftools/ax-check-link-flag.m4 \
|
||||
$(top_srcdir)/conftools/ax-append-flag.m4 \
|
||||
$(top_srcdir)/conftools/ax-append-compile-flags.m4 \
|
||||
$(top_srcdir)/conftools/ax-append-link-flags.m4 \
|
||||
$(top_srcdir)/conftools/expatcfg-compiler-supports-visibility.m4 \
|
||||
$(top_srcdir)/conftools/ax-cxx-compile-stdcxx.m4 \
|
||||
$(top_srcdir)/conftools/ax-cxx-compile-stdcxx-11.m4 \
|
||||
$(top_srcdir)/configure.ac
|
||||
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
||||
$(ACLOCAL_M4)
|
||||
DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
|
||||
mkinstalldirs = $(install_sh) -d
|
||||
CONFIG_HEADER = $(top_builddir)/expat_config.h
|
||||
CONFIG_CLEAN_FILES =
|
||||
CONFIG_CLEAN_VPATH_FILES =
|
||||
AM_V_P = $(am__v_P_$(V))
|
||||
am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY))
|
||||
am__v_P_0 = false
|
||||
am__v_P_1 = :
|
||||
AM_V_GEN = $(am__v_GEN_$(V))
|
||||
am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
|
||||
am__v_GEN_0 = @echo " GEN " $@;
|
||||
am__v_GEN_1 =
|
||||
AM_V_at = $(am__v_at_$(V))
|
||||
am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
|
||||
am__v_at_0 = @
|
||||
am__v_at_1 =
|
||||
SOURCES =
|
||||
DIST_SOURCES =
|
||||
am__can_run_installinfo = \
|
||||
case $$AM_UPDATE_INFO_DIR in \
|
||||
n|no|NO) false;; \
|
||||
*) (install-info --version) >/dev/null 2>&1;; \
|
||||
esac
|
||||
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
|
||||
am__vpath_adj = case $$p in \
|
||||
$(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
|
||||
*) f=$$p;; \
|
||||
esac;
|
||||
am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
|
||||
am__install_max = 40
|
||||
am__nobase_strip_setup = \
|
||||
srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
|
||||
am__nobase_strip = \
|
||||
for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
|
||||
am__nobase_list = $(am__nobase_strip_setup); \
|
||||
for p in $$list; do echo "$$p $$p"; done | \
|
||||
sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
|
||||
$(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
|
||||
if (++n[$$2] == $(am__install_max)) \
|
||||
{ print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
|
||||
END { for (dir in files) print dir, files[dir] }'
|
||||
am__base_list = \
|
||||
sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
|
||||
sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
|
||||
am__uninstall_files_from_dir = { \
|
||||
test -z "$$files" \
|
||||
|| { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
|
||||
|| { echo " ( cd '$$dir' && rm -f" $$files ")"; \
|
||||
$(am__cd) "$$dir" && rm -f $$files; }; \
|
||||
}
|
||||
man1dir = $(mandir)/man1
|
||||
am__installdirs = "$(DESTDIR)$(man1dir)"
|
||||
NROFF = nroff
|
||||
MANS = $(dist_man_MANS)
|
||||
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
|
||||
am__DIST_COMMON = $(dist_man_MANS) $(srcdir)/Makefile.in
|
||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||
ACLOCAL = ${SHELL} '/opt/vgisc/6t/workspace/UTIL/src/expat-2.6.4/conftools/missing' aclocal-1.16
|
||||
AMTAR = $${TAR-tar}
|
||||
AM_CFLAGS = -Wall -Wextra -fexceptions -fno-strict-aliasing -Wmissing-prototypes -Wstrict-prototypes -pedantic -Wduplicated-cond -Wduplicated-branches -Wlogical-op -Wrestrict -Wnull-dereference -Wjump-misses-init -Wdouble-promotion -Wshadow -Wformat=2 -Wno-pedantic-ms-format -Wmisleading-indentation -fvisibility=hidden
|
||||
AM_CPPFLAGS = -DXML_ENABLE_VISIBILITY=1
|
||||
AM_CXXFLAGS = -Wall -Wextra -fexceptions -fno-strict-aliasing
|
||||
AM_DEFAULT_VERBOSITY = 1
|
||||
AM_LDFLAGS = -fno-strict-aliasing
|
||||
AR = powerpc64-fsl-linux-ar
|
||||
AS = powerpc64-fsl-linux-as
|
||||
AUTOCONF = ${SHELL} '/opt/vgisc/6t/workspace/UTIL/src/expat-2.6.4/conftools/missing' autoconf
|
||||
AUTOHEADER = ${SHELL} '/opt/vgisc/6t/workspace/UTIL/src/expat-2.6.4/conftools/missing' autoheader
|
||||
AUTOMAKE = ${SHELL} '/opt/vgisc/6t/workspace/UTIL/src/expat-2.6.4/conftools/missing' automake-1.16
|
||||
AWK = gawk
|
||||
CC = powerpc64-fsl-linux-gcc -mbig-endian -mhard-float -m64 -mcpu=e6500 --sysroot=/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux
|
||||
CCDEPMODE = depmode=gcc3
|
||||
CFLAGS = -O2 -pipe -g -feliminate-unused-debug-types
|
||||
CMAKE_SHARED_LIBRARY_PREFIX = lib
|
||||
CPPFLAGS =
|
||||
CSCOPE = cscope
|
||||
CTAGS = ctags
|
||||
CXX = powerpc64-fsl-linux-g++ -mbig-endian -mhard-float -m64 -mcpu=e6500 --sysroot=/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux -std=c++11
|
||||
CXXCPP = powerpc64-fsl-linux-g++ -mbig-endian -mhard-float -m64 -mcpu=e6500 --sysroot=/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux -E -std=c++11
|
||||
CXXDEPMODE = depmode=gcc3
|
||||
CXXFLAGS = -O2 -pipe -g -feliminate-unused-debug-types
|
||||
CYGPATH_W = echo
|
||||
DEFS = -DHAVE_CONFIG_H
|
||||
DEPDIR = .deps
|
||||
DLLTOOL = false
|
||||
DOCBOOK_TO_MAN =
|
||||
DSYMUTIL =
|
||||
DUMPBIN =
|
||||
ECHO_C =
|
||||
ECHO_N = -n
|
||||
ECHO_T =
|
||||
EGREP = /usr/bin/grep -E
|
||||
ETAGS = etags
|
||||
EXEEXT =
|
||||
EXPAT_ATTR_INFO = OFF
|
||||
EXPAT_CHAR_TYPE = char
|
||||
EXPAT_CONTEXT_BYTES = 1024
|
||||
EXPAT_DTD = ON
|
||||
EXPAT_LARGE_SIZE = OFF
|
||||
EXPAT_MIN_SIZE = OFF
|
||||
EXPAT_NS = ON
|
||||
FGREP = /usr/bin/grep -F
|
||||
FILECMD = file
|
||||
FILEMAP = unixfilemap
|
||||
GREP = /usr/bin/grep
|
||||
HAVE_CXX11 = 1
|
||||
INSTALL = /usr/bin/install -c
|
||||
INSTALL_DATA = ${INSTALL} -m 644
|
||||
INSTALL_PROGRAM = ${INSTALL}
|
||||
INSTALL_SCRIPT = ${INSTALL}
|
||||
INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
|
||||
LD = powerpc64-fsl-linux-ld --sysroot=/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux -m elf64ppc
|
||||
LDFLAGS = -Wl,-O1 -Wl,--hash-style=gnu -Wl,--as-needed
|
||||
LIBAGE = 10
|
||||
LIBCURRENT = 11
|
||||
LIBDIR_BASENAME = lib
|
||||
LIBM = -lm
|
||||
LIBOBJS =
|
||||
LIBREVISION = 0
|
||||
LIBS =
|
||||
LIBTOOL = $(SHELL) $(top_builddir)/libtool
|
||||
LIPO =
|
||||
LN_S = ln -s
|
||||
LTLIBOBJS =
|
||||
LT_SYS_LIBRARY_PATH =
|
||||
MAINT =
|
||||
MAKEINFO = ${SHELL} '/opt/vgisc/6t/workspace/UTIL/src/expat-2.6.4/conftools/missing' makeinfo
|
||||
MANIFEST_TOOL = :
|
||||
MKDIR_P = /usr/bin/mkdir -p
|
||||
NM = powerpc64-fsl-linux-nm
|
||||
NMEDIT =
|
||||
OBJDUMP = powerpc64-fsl-linux-objdump
|
||||
OBJEXT = o
|
||||
OTOOL =
|
||||
OTOOL64 =
|
||||
PACKAGE = expat
|
||||
PACKAGE_BUGREPORT = https://github.com/libexpat/libexpat/issues
|
||||
PACKAGE_NAME = expat
|
||||
PACKAGE_STRING = expat 2.6.4
|
||||
PACKAGE_TARNAME = expat
|
||||
PACKAGE_URL =
|
||||
PACKAGE_VERSION = 2.6.4
|
||||
PATH_SEPARATOR = :
|
||||
RANLIB = powerpc64-fsl-linux-ranlib
|
||||
SED = sed
|
||||
SET_MAKE =
|
||||
SHELL = /bin/bash
|
||||
SIZEOF_VOID_P = 8
|
||||
SO_MAJOR = 1
|
||||
SO_MINOR = 10
|
||||
SO_PATCH = 0
|
||||
STRIP = powerpc64-fsl-linux-strip
|
||||
VERSION = 2.6.4
|
||||
abs_builddir = /opt/vgisc/6t/workspace/UTIL/src/expat-2.6.4/doc
|
||||
abs_srcdir = /opt/vgisc/6t/workspace/UTIL/src/expat-2.6.4/doc
|
||||
abs_top_builddir = /opt/vgisc/6t/workspace/UTIL/src/expat-2.6.4
|
||||
abs_top_srcdir = /opt/vgisc/6t/workspace/UTIL/src/expat-2.6.4
|
||||
ac_ct_AR =
|
||||
ac_ct_CC =
|
||||
ac_ct_CXX =
|
||||
ac_ct_DUMPBIN =
|
||||
am__include = include
|
||||
am__leading_dot = .
|
||||
am__quote =
|
||||
am__tar = $${TAR-tar} chof - "$$tardir"
|
||||
am__untar = $${TAR-tar} xf -
|
||||
bindir = ${exec_prefix}/bin
|
||||
build = x86_64-pc-linux-gnu
|
||||
build_alias =
|
||||
build_cpu = x86_64
|
||||
build_os = linux-gnu
|
||||
build_vendor = pc
|
||||
builddir = .
|
||||
datadir = ${datarootdir}
|
||||
datarootdir = ${prefix}/share
|
||||
docdir = ${datarootdir}/doc/${PACKAGE_TARNAME}
|
||||
dvidir = ${docdir}
|
||||
exec_prefix = ${prefix}
|
||||
host = powerpc64-fsl-linux-gnu
|
||||
host_alias = powerpc64-fsl-linux
|
||||
host_cpu = powerpc64
|
||||
host_os = linux-gnu
|
||||
host_vendor = fsl
|
||||
htmldir = ${docdir}
|
||||
includedir = ${prefix}/include
|
||||
infodir = ${datarootdir}/info
|
||||
install_sh = ${SHELL} /opt/vgisc/6t/workspace/UTIL/src/expat-2.6.4/conftools/install-sh
|
||||
libdir = ${exec_prefix}/lib
|
||||
libexecdir = ${exec_prefix}/libexec
|
||||
localedir = ${datarootdir}/locale
|
||||
localstatedir = ${prefix}/var
|
||||
mandir = ${datarootdir}/man
|
||||
mkdir_p = $(MKDIR_P)
|
||||
oldincludedir = /usr/include
|
||||
pdfdir = ${docdir}
|
||||
prefix = /opt/vgisc/6t/workspace/BUILD/build/powerpc64-fsl-linux
|
||||
program_transform_name = s,x,x,
|
||||
psdir = ${docdir}
|
||||
runstatedir = ${localstatedir}/run
|
||||
sbindir = ${exec_prefix}/sbin
|
||||
sharedstatedir = ${prefix}/com
|
||||
srcdir = .
|
||||
sysconfdir = ${prefix}/etc
|
||||
target_alias =
|
||||
top_build_prefix = ../
|
||||
top_builddir = ..
|
||||
top_srcdir = ..
|
||||
dist_man_MANS = xmlwf.1
|
||||
#CLEANFILES = xmlwf.1
|
||||
EXTRA_DIST = \
|
||||
ok.min.css \
|
||||
reference.html \
|
||||
style.css \
|
||||
xmlwf.xml
|
||||
|
||||
all: all-am
|
||||
|
||||
.SUFFIXES:
|
||||
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
|
||||
@for dep in $?; do \
|
||||
case '$(am__configure_deps)' in \
|
||||
*$$dep*) \
|
||||
( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
|
||||
&& { if test -f $@; then exit 0; else break; fi; }; \
|
||||
exit 1;; \
|
||||
esac; \
|
||||
done; \
|
||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu doc/Makefile'; \
|
||||
$(am__cd) $(top_srcdir) && \
|
||||
$(AUTOMAKE) --gnu doc/Makefile
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||
@case '$?' in \
|
||||
*config.status*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
|
||||
esac;
|
||||
|
||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
|
||||
$(top_srcdir)/configure: $(am__configure_deps)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
$(am__aclocal_m4_deps):
|
||||
|
||||
mostlyclean-libtool:
|
||||
-rm -f *.lo
|
||||
|
||||
clean-libtool:
|
||||
-rm -rf .libs _libs
|
||||
install-man1: $(dist_man_MANS)
|
||||
@$(NORMAL_INSTALL)
|
||||
@list1=''; \
|
||||
list2='$(dist_man_MANS)'; \
|
||||
test -n "$(man1dir)" \
|
||||
&& test -n "`echo $$list1$$list2`" \
|
||||
|| exit 0; \
|
||||
echo " $(MKDIR_P) '$(DESTDIR)$(man1dir)'"; \
|
||||
$(MKDIR_P) "$(DESTDIR)$(man1dir)" || exit 1; \
|
||||
{ for i in $$list1; do echo "$$i"; done; \
|
||||
if test -n "$$list2"; then \
|
||||
for i in $$list2; do echo "$$i"; done \
|
||||
| sed -n '/\.1[a-z]*$$/p'; \
|
||||
fi; \
|
||||
} | while read p; do \
|
||||
if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
|
||||
echo "$$d$$p"; echo "$$p"; \
|
||||
done | \
|
||||
sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \
|
||||
-e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \
|
||||
sed 'N;N;s,\n, ,g' | { \
|
||||
list=; while read file base inst; do \
|
||||
if test "$$base" = "$$inst"; then list="$$list $$file"; else \
|
||||
echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man1dir)/$$inst'"; \
|
||||
$(INSTALL_DATA) "$$file" "$(DESTDIR)$(man1dir)/$$inst" || exit $$?; \
|
||||
fi; \
|
||||
done; \
|
||||
for i in $$list; do echo "$$i"; done | $(am__base_list) | \
|
||||
while read files; do \
|
||||
test -z "$$files" || { \
|
||||
echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man1dir)'"; \
|
||||
$(INSTALL_DATA) $$files "$(DESTDIR)$(man1dir)" || exit $$?; }; \
|
||||
done; }
|
||||
|
||||
uninstall-man1:
|
||||
@$(NORMAL_UNINSTALL)
|
||||
@list=''; test -n "$(man1dir)" || exit 0; \
|
||||
files=`{ for i in $$list; do echo "$$i"; done; \
|
||||
l2='$(dist_man_MANS)'; for i in $$l2; do echo "$$i"; done | \
|
||||
sed -n '/\.1[a-z]*$$/p'; \
|
||||
} | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \
|
||||
-e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \
|
||||
dir='$(DESTDIR)$(man1dir)'; $(am__uninstall_files_from_dir)
|
||||
tags TAGS:
|
||||
|
||||
ctags CTAGS:
|
||||
|
||||
cscope cscopelist:
|
||||
|
||||
#dist-hook:
|
||||
distdir: $(BUILT_SOURCES)
|
||||
$(MAKE) $(AM_MAKEFLAGS) distdir-am
|
||||
|
||||
distdir-am: $(DISTFILES)
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
list='$(DISTFILES)'; \
|
||||
dist_files=`for file in $$list; do echo $$file; done | \
|
||||
sed -e "s|^$$srcdirstrip/||;t" \
|
||||
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
|
||||
case $$dist_files in \
|
||||
*/*) $(MKDIR_P) `echo "$$dist_files" | \
|
||||
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
|
||||
sort -u` ;; \
|
||||
esac; \
|
||||
for file in $$dist_files; do \
|
||||
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
||||
if test -d $$d/$$file; then \
|
||||
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
|
||||
if test -d "$(distdir)/$$file"; then \
|
||||
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
||||
fi; \
|
||||
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
||||
cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
|
||||
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
||||
fi; \
|
||||
cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
|
||||
else \
|
||||
test -f "$(distdir)/$$file" \
|
||||
|| cp -p $$d/$$file "$(distdir)/$$file" \
|
||||
|| exit 1; \
|
||||
fi; \
|
||||
done
|
||||
$(MAKE) $(AM_MAKEFLAGS) \
|
||||
top_distdir="$(top_distdir)" distdir="$(distdir)" \
|
||||
dist-hook
|
||||
check-am: all-am
|
||||
check: check-am
|
||||
all-am: Makefile $(MANS)
|
||||
installdirs:
|
||||
for dir in "$(DESTDIR)$(man1dir)"; do \
|
||||
test -z "$$dir" || $(MKDIR_P) "$$dir"; \
|
||||
done
|
||||
install: install-am
|
||||
install-exec: install-exec-am
|
||||
install-data: install-data-am
|
||||
uninstall: uninstall-am
|
||||
|
||||
install-am: all-am
|
||||
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
||||
|
||||
installcheck: installcheck-am
|
||||
install-strip:
|
||||
if test -z '$(STRIP)'; then \
|
||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
||||
install; \
|
||||
else \
|
||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
||||
"INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
|
||||
fi
|
||||
mostlyclean-generic:
|
||||
|
||||
clean-generic:
|
||||
-test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
|
||||
|
||||
distclean-generic:
|
||||
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
||||
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
|
||||
|
||||
maintainer-clean-generic:
|
||||
@echo "This command is intended for maintainers to use"
|
||||
@echo "it deletes files that may require special tools to rebuild."
|
||||
clean: clean-am
|
||||
|
||||
clean-am: clean-generic clean-libtool mostlyclean-am
|
||||
|
||||
distclean: distclean-am
|
||||
-rm -f Makefile
|
||||
distclean-am: clean-am distclean-generic
|
||||
|
||||
dvi: dvi-am
|
||||
|
||||
dvi-am:
|
||||
|
||||
html: html-am
|
||||
|
||||
html-am:
|
||||
|
||||
info: info-am
|
||||
|
||||
info-am:
|
||||
|
||||
install-data-am: install-man
|
||||
|
||||
install-dvi: install-dvi-am
|
||||
|
||||
install-dvi-am:
|
||||
|
||||
install-exec-am:
|
||||
|
||||
install-html: install-html-am
|
||||
|
||||
install-html-am:
|
||||
|
||||
install-info: install-info-am
|
||||
|
||||
install-info-am:
|
||||
|
||||
install-man: install-man1
|
||||
|
||||
install-pdf: install-pdf-am
|
||||
|
||||
install-pdf-am:
|
||||
|
||||
install-ps: install-ps-am
|
||||
|
||||
install-ps-am:
|
||||
|
||||
installcheck-am:
|
||||
|
||||
maintainer-clean: maintainer-clean-am
|
||||
-rm -f Makefile
|
||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
||||
|
||||
mostlyclean: mostlyclean-am
|
||||
|
||||
mostlyclean-am: mostlyclean-generic mostlyclean-libtool
|
||||
|
||||
pdf: pdf-am
|
||||
|
||||
pdf-am:
|
||||
|
||||
ps: ps-am
|
||||
|
||||
ps-am:
|
||||
|
||||
uninstall-am: uninstall-man
|
||||
|
||||
uninstall-man: uninstall-man1
|
||||
|
||||
.MAKE: install-am install-strip
|
||||
|
||||
.PHONY: all all-am check check-am clean clean-generic clean-libtool \
|
||||
cscopelist-am ctags-am dist-hook distclean distclean-generic \
|
||||
distclean-libtool distdir dvi dvi-am html html-am info info-am \
|
||||
install install-am install-data install-data-am install-dvi \
|
||||
install-dvi-am install-exec install-exec-am install-html \
|
||||
install-html-am install-info install-info-am install-man \
|
||||
install-man1 install-pdf install-pdf-am install-ps \
|
||||
install-ps-am install-strip installcheck installcheck-am \
|
||||
installdirs maintainer-clean maintainer-clean-generic \
|
||||
mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \
|
||||
ps ps-am tags-am uninstall uninstall-am uninstall-man \
|
||||
uninstall-man1
|
||||
|
||||
.PRECIOUS: Makefile
|
||||
|
||||
|
||||
.PHONY: dist-hook # not inside conditional to avoid automake warning
|
||||
|
||||
xmlwf.1: xmlwf.xml
|
||||
-rm -f $@
|
||||
test "x$(DOCBOOK_TO_MAN)" != x && $(DOCBOOK_TO_MAN) $<
|
||||
test -f $@ || mv XMLWF.1 $@
|
||||
|
||||
dist-hook:
|
||||
@echo 'ERROR: Configure with --with-docbook for "make dist".' 1>&2
|
||||
@false
|
||||
|
||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||
.NOEXPORT:
|
|
@ -1,168 +0,0 @@
|
|||
element_declarations.o: element_declarations.c \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdc-predef.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include/stdbool.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdio.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/libc-header-start.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/features.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/cdefs.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/wordsize.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/long-double.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/long-double-64.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/gnu/stubs.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/gnu/stubs-64-v1.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include/stddef.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include/stdarg.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/timesize.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/typesizes.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/time64.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__fpos_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__mbstate_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__fpos64_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__FILE.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/FILE.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_FILE.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdio_lim.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/sys_errlist.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdio.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdlib.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/waitflags.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/waitstatus.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn-64.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn-common.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/types.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/clock_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/clockid_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/time_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/timer_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdint-intn.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/endian.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/endian.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/byteswap.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/uintn-identity.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/select.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/select.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/sigset_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__sigset_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_timeval.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_timespec.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/pthreadtypes.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/thread-shared-types.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/pthreadtypes-arch.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/alloca.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdlib-bsearch.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdlib-float.h \
|
||||
../lib/expat.h ../lib/expat_external.h
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdc-predef.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include/stdbool.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdio.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/libc-header-start.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/features.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/cdefs.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/wordsize.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/long-double.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/long-double-64.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/gnu/stubs.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/gnu/stubs-64-v1.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include/stddef.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include/stdarg.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/timesize.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/typesizes.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/time64.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__fpos_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__mbstate_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__fpos64_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__FILE.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/FILE.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_FILE.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdio_lim.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/sys_errlist.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdio.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdlib.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/waitflags.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/waitstatus.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn-64.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn-common.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/types.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/clock_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/clockid_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/time_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/timer_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdint-intn.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/endian.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/endian.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/byteswap.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/uintn-identity.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/select.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/select.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/sigset_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__sigset_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_timeval.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_timespec.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/pthreadtypes.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/thread-shared-types.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/pthreadtypes-arch.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/alloca.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdlib-bsearch.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdlib-float.h:
|
||||
|
||||
../lib/expat.h:
|
||||
|
||||
../lib/expat_external.h:
|
|
@ -1,166 +0,0 @@
|
|||
elements.o: elements.c \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdc-predef.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdio.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/libc-header-start.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/features.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/cdefs.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/wordsize.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/long-double.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/long-double-64.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/gnu/stubs.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/gnu/stubs-64-v1.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include/stddef.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include/stdarg.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/timesize.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/typesizes.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/time64.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__fpos_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__mbstate_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__fpos64_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__FILE.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/FILE.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_FILE.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdio_lim.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/sys_errlist.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdio.h \
|
||||
../lib/expat.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdlib.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/waitflags.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/waitstatus.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn-64.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn-common.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/types.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/clock_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/clockid_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/time_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/timer_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdint-intn.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/endian.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/endian.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/byteswap.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/uintn-identity.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/select.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/select.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/sigset_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__sigset_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_timeval.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_timespec.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/pthreadtypes.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/thread-shared-types.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/pthreadtypes-arch.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/alloca.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdlib-bsearch.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdlib-float.h \
|
||||
../lib/expat_external.h
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdc-predef.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdio.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/libc-header-start.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/features.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/cdefs.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/wordsize.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/long-double.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/long-double-64.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/gnu/stubs.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/gnu/stubs-64-v1.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include/stddef.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include/stdarg.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/timesize.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/typesizes.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/time64.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__fpos_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__mbstate_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__fpos64_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__FILE.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/FILE.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_FILE.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdio_lim.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/sys_errlist.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdio.h:
|
||||
|
||||
../lib/expat.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdlib.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/waitflags.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/waitstatus.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn-64.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn-common.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/types.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/clock_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/clockid_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/time_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/timer_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdint-intn.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/endian.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/endian.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/byteswap.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/uintn-identity.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/select.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/select.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/sigset_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__sigset_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_timeval.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_timespec.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/pthreadtypes.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/thread-shared-types.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/pthreadtypes-arch.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/alloca.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdlib-bsearch.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdlib-float.h:
|
||||
|
||||
../lib/expat_external.h:
|
|
@ -1,166 +0,0 @@
|
|||
outline.o: outline.c \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdc-predef.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdio.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/libc-header-start.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/features.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/cdefs.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/wordsize.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/long-double.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/long-double-64.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/gnu/stubs.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/gnu/stubs-64-v1.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include/stddef.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include/stdarg.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/timesize.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/typesizes.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/time64.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__fpos_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__mbstate_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__fpos64_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__FILE.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/FILE.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_FILE.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdio_lim.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/sys_errlist.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdio.h \
|
||||
../lib/expat.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdlib.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/waitflags.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/waitstatus.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn-64.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn-common.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/types.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/clock_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/clockid_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/time_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/timer_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdint-intn.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/endian.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/endian.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/byteswap.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/uintn-identity.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/select.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/select.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/sigset_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__sigset_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_timeval.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_timespec.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/pthreadtypes.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/thread-shared-types.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/pthreadtypes-arch.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/alloca.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdlib-bsearch.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdlib-float.h \
|
||||
../lib/expat_external.h
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdc-predef.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdio.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/libc-header-start.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/features.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/cdefs.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/wordsize.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/long-double.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/long-double-64.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/gnu/stubs.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/gnu/stubs-64-v1.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include/stddef.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include/stdarg.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/timesize.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/typesizes.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/time64.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__fpos_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__mbstate_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__fpos64_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__FILE.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/FILE.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_FILE.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdio_lim.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/sys_errlist.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdio.h:
|
||||
|
||||
../lib/expat.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdlib.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/waitflags.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/waitstatus.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn-64.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn-common.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/types.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/clock_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/clockid_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/time_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/timer_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdint-intn.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/endian.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/endian.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/byteswap.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/uintn-identity.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/select.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/select.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/sigset_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__sigset_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_timeval.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_timespec.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/pthreadtypes.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/thread-shared-types.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/pthreadtypes-arch.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/alloca.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdlib-bsearch.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdlib-float.h:
|
||||
|
||||
../lib/expat_external.h:
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -1,694 +0,0 @@
|
|||
# Makefile.in generated by automake 1.16.5 from Makefile.am.
|
||||
# examples/Makefile. Generated from Makefile.in by configure.
|
||||
|
||||
# Copyright (C) 1994-2021 Free Software Foundation, Inc.
|
||||
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
# with or without modifications, as long as this notice is preserved.
|
||||
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
||||
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
# PARTICULAR PURPOSE.
|
||||
|
||||
|
||||
|
||||
#
|
||||
# __ __ _
|
||||
# ___\ \/ /_ __ __ _| |_
|
||||
# / _ \\ /| '_ \ / _` | __|
|
||||
# | __// \| |_) | (_| | |_
|
||||
# \___/_/\_\ .__/ \__,_|\__|
|
||||
# |_| XML parser
|
||||
#
|
||||
# Copyright (c) 2017-2022 Sebastian Pipping <sebastian@pipping.org>
|
||||
# Copyright (c) 2020 Jeffrey Walton <noloader@gmail.com>
|
||||
# Licensed under the MIT license:
|
||||
#
|
||||
# Permission is hereby granted, free of charge, to any person obtaining
|
||||
# a copy of this software and associated documentation files (the
|
||||
# "Software"), to deal in the Software without restriction, including
|
||||
# without limitation the rights to use, copy, modify, merge, publish,
|
||||
# distribute, sublicense, and/or sell copies of the Software, and to permit
|
||||
# persons to whom the Software is furnished to do so, subject to the
|
||||
# following conditions:
|
||||
#
|
||||
# The above copyright notice and this permission notice shall be included
|
||||
# in all copies or substantial portions of the Software.
|
||||
#
|
||||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
|
||||
# NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
||||
# DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
||||
# OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
||||
# USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
|
||||
am__is_gnu_make = { \
|
||||
if test -z '$(MAKELEVEL)'; then \
|
||||
false; \
|
||||
elif test -n '$(MAKE_HOST)'; then \
|
||||
true; \
|
||||
elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
|
||||
true; \
|
||||
else \
|
||||
false; \
|
||||
fi; \
|
||||
}
|
||||
am__make_running_with_option = \
|
||||
case $${target_option-} in \
|
||||
?) ;; \
|
||||
*) echo "am__make_running_with_option: internal error: invalid" \
|
||||
"target option '$${target_option-}' specified" >&2; \
|
||||
exit 1;; \
|
||||
esac; \
|
||||
has_opt=no; \
|
||||
sane_makeflags=$$MAKEFLAGS; \
|
||||
if $(am__is_gnu_make); then \
|
||||
sane_makeflags=$$MFLAGS; \
|
||||
else \
|
||||
case $$MAKEFLAGS in \
|
||||
*\\[\ \ ]*) \
|
||||
bs=\\; \
|
||||
sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
|
||||
| sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
|
||||
esac; \
|
||||
fi; \
|
||||
skip_next=no; \
|
||||
strip_trailopt () \
|
||||
{ \
|
||||
flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
|
||||
}; \
|
||||
for flg in $$sane_makeflags; do \
|
||||
test $$skip_next = yes && { skip_next=no; continue; }; \
|
||||
case $$flg in \
|
||||
*=*|--*) continue;; \
|
||||
-*I) strip_trailopt 'I'; skip_next=yes;; \
|
||||
-*I?*) strip_trailopt 'I';; \
|
||||
-*O) strip_trailopt 'O'; skip_next=yes;; \
|
||||
-*O?*) strip_trailopt 'O';; \
|
||||
-*l) strip_trailopt 'l'; skip_next=yes;; \
|
||||
-*l?*) strip_trailopt 'l';; \
|
||||
-[dEDm]) skip_next=yes;; \
|
||||
-[JT]) skip_next=yes;; \
|
||||
esac; \
|
||||
case $$flg in \
|
||||
*$$target_option*) has_opt=yes; break;; \
|
||||
esac; \
|
||||
done; \
|
||||
test $$has_opt = yes
|
||||
am__make_dryrun = (target_option=n; $(am__make_running_with_option))
|
||||
am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
|
||||
pkgdatadir = $(datadir)/expat
|
||||
pkgincludedir = $(includedir)/expat
|
||||
pkglibdir = $(libdir)/expat
|
||||
pkglibexecdir = $(libexecdir)/expat
|
||||
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
||||
install_sh_DATA = $(install_sh) -c -m 644
|
||||
install_sh_PROGRAM = $(install_sh) -c
|
||||
install_sh_SCRIPT = $(install_sh) -c
|
||||
INSTALL_HEADER = $(INSTALL_DATA)
|
||||
transform = $(program_transform_name)
|
||||
NORMAL_INSTALL = :
|
||||
PRE_INSTALL = :
|
||||
POST_INSTALL = :
|
||||
NORMAL_UNINSTALL = :
|
||||
PRE_UNINSTALL = :
|
||||
POST_UNINSTALL = :
|
||||
build_triplet = x86_64-pc-linux-gnu
|
||||
host_triplet = powerpc64-fsl-linux-gnu
|
||||
noinst_PROGRAMS = element_declarations$(EXEEXT) elements$(EXEEXT) \
|
||||
outline$(EXEEXT)
|
||||
subdir = examples
|
||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||
am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
|
||||
$(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
|
||||
$(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
|
||||
$(top_srcdir)/acinclude.m4 \
|
||||
$(top_srcdir)/conftools/ax-require-defined.m4 \
|
||||
$(top_srcdir)/conftools/ax-check-compile-flag.m4 \
|
||||
$(top_srcdir)/conftools/ax-check-link-flag.m4 \
|
||||
$(top_srcdir)/conftools/ax-append-flag.m4 \
|
||||
$(top_srcdir)/conftools/ax-append-compile-flags.m4 \
|
||||
$(top_srcdir)/conftools/ax-append-link-flags.m4 \
|
||||
$(top_srcdir)/conftools/expatcfg-compiler-supports-visibility.m4 \
|
||||
$(top_srcdir)/conftools/ax-cxx-compile-stdcxx.m4 \
|
||||
$(top_srcdir)/conftools/ax-cxx-compile-stdcxx-11.m4 \
|
||||
$(top_srcdir)/configure.ac
|
||||
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
||||
$(ACLOCAL_M4)
|
||||
DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
|
||||
mkinstalldirs = $(install_sh) -d
|
||||
CONFIG_HEADER = $(top_builddir)/expat_config.h
|
||||
CONFIG_CLEAN_FILES =
|
||||
CONFIG_CLEAN_VPATH_FILES =
|
||||
PROGRAMS = $(noinst_PROGRAMS)
|
||||
am_element_declarations_OBJECTS = element_declarations.$(OBJEXT)
|
||||
element_declarations_OBJECTS = $(am_element_declarations_OBJECTS)
|
||||
element_declarations_DEPENDENCIES = ../lib/libexpat.la
|
||||
AM_V_lt = $(am__v_lt_$(V))
|
||||
am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY))
|
||||
am__v_lt_0 = --silent
|
||||
am__v_lt_1 =
|
||||
am_elements_OBJECTS = elements.$(OBJEXT)
|
||||
elements_OBJECTS = $(am_elements_OBJECTS)
|
||||
elements_DEPENDENCIES = ../lib/libexpat.la
|
||||
am_outline_OBJECTS = outline.$(OBJEXT)
|
||||
outline_OBJECTS = $(am_outline_OBJECTS)
|
||||
outline_DEPENDENCIES = ../lib/libexpat.la
|
||||
AM_V_P = $(am__v_P_$(V))
|
||||
am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY))
|
||||
am__v_P_0 = false
|
||||
am__v_P_1 = :
|
||||
AM_V_GEN = $(am__v_GEN_$(V))
|
||||
am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
|
||||
am__v_GEN_0 = @echo " GEN " $@;
|
||||
am__v_GEN_1 =
|
||||
AM_V_at = $(am__v_at_$(V))
|
||||
am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
|
||||
am__v_at_0 = @
|
||||
am__v_at_1 =
|
||||
DEFAULT_INCLUDES = -I. -I$(top_builddir)
|
||||
depcomp = $(SHELL) $(top_srcdir)/conftools/depcomp
|
||||
am__maybe_remake_depfiles = depfiles
|
||||
am__depfiles_remade = ./$(DEPDIR)/element_declarations.Po \
|
||||
./$(DEPDIR)/elements.Po ./$(DEPDIR)/outline.Po
|
||||
am__mv = mv -f
|
||||
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
|
||||
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
||||
LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
|
||||
$(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
|
||||
$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
|
||||
$(AM_CFLAGS) $(CFLAGS)
|
||||
AM_V_CC = $(am__v_CC_$(V))
|
||||
am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY))
|
||||
am__v_CC_0 = @echo " CC " $@;
|
||||
am__v_CC_1 =
|
||||
CCLD = $(CC)
|
||||
LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
|
||||
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
|
||||
$(AM_LDFLAGS) $(LDFLAGS) -o $@
|
||||
AM_V_CCLD = $(am__v_CCLD_$(V))
|
||||
am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY))
|
||||
am__v_CCLD_0 = @echo " CCLD " $@;
|
||||
am__v_CCLD_1 =
|
||||
SOURCES = $(element_declarations_SOURCES) $(elements_SOURCES) \
|
||||
$(outline_SOURCES)
|
||||
DIST_SOURCES = $(element_declarations_SOURCES) $(elements_SOURCES) \
|
||||
$(outline_SOURCES)
|
||||
am__can_run_installinfo = \
|
||||
case $$AM_UPDATE_INFO_DIR in \
|
||||
n|no|NO) false;; \
|
||||
*) (install-info --version) >/dev/null 2>&1;; \
|
||||
esac
|
||||
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
|
||||
# Read a list of newline-separated strings from the standard input,
|
||||
# and print each of them once, without duplicates. Input order is
|
||||
# *not* preserved.
|
||||
am__uniquify_input = $(AWK) '\
|
||||
BEGIN { nonempty = 0; } \
|
||||
{ items[$$0] = 1; nonempty = 1; } \
|
||||
END { if (nonempty) { for (i in items) print i; }; } \
|
||||
'
|
||||
# Make sure the list of sources is unique. This is necessary because,
|
||||
# e.g., the same source file might be shared among _SOURCES variables
|
||||
# for different programs/libraries.
|
||||
am__define_uniq_tagged_files = \
|
||||
list='$(am__tagged_files)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | $(am__uniquify_input)`
|
||||
am__DIST_COMMON = $(srcdir)/Makefile.in \
|
||||
$(top_srcdir)/conftools/depcomp
|
||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||
ACLOCAL = ${SHELL} '/opt/vgisc/6t/workspace/UTIL/src/expat-2.6.4/conftools/missing' aclocal-1.16
|
||||
AMTAR = $${TAR-tar}
|
||||
AM_CFLAGS = -Wall -Wextra -fexceptions -fno-strict-aliasing -Wmissing-prototypes -Wstrict-prototypes -pedantic -Wduplicated-cond -Wduplicated-branches -Wlogical-op -Wrestrict -Wnull-dereference -Wjump-misses-init -Wdouble-promotion -Wshadow -Wformat=2 -Wno-pedantic-ms-format -Wmisleading-indentation -fvisibility=hidden
|
||||
AM_CPPFLAGS = -DXML_ENABLE_VISIBILITY=1 -I$(srcdir)/../lib
|
||||
AM_CXXFLAGS = -Wall -Wextra -fexceptions -fno-strict-aliasing
|
||||
AM_DEFAULT_VERBOSITY = 1
|
||||
AM_LDFLAGS = -fno-strict-aliasing
|
||||
AR = powerpc64-fsl-linux-ar
|
||||
AS = powerpc64-fsl-linux-as
|
||||
AUTOCONF = ${SHELL} '/opt/vgisc/6t/workspace/UTIL/src/expat-2.6.4/conftools/missing' autoconf
|
||||
AUTOHEADER = ${SHELL} '/opt/vgisc/6t/workspace/UTIL/src/expat-2.6.4/conftools/missing' autoheader
|
||||
AUTOMAKE = ${SHELL} '/opt/vgisc/6t/workspace/UTIL/src/expat-2.6.4/conftools/missing' automake-1.16
|
||||
AWK = gawk
|
||||
CC = powerpc64-fsl-linux-gcc -mbig-endian -mhard-float -m64 -mcpu=e6500 --sysroot=/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux
|
||||
CCDEPMODE = depmode=gcc3
|
||||
CFLAGS = -O2 -pipe -g -feliminate-unused-debug-types
|
||||
CMAKE_SHARED_LIBRARY_PREFIX = lib
|
||||
CPPFLAGS =
|
||||
CSCOPE = cscope
|
||||
CTAGS = ctags
|
||||
CXX = powerpc64-fsl-linux-g++ -mbig-endian -mhard-float -m64 -mcpu=e6500 --sysroot=/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux -std=c++11
|
||||
CXXCPP = powerpc64-fsl-linux-g++ -mbig-endian -mhard-float -m64 -mcpu=e6500 --sysroot=/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux -E -std=c++11
|
||||
CXXDEPMODE = depmode=gcc3
|
||||
CXXFLAGS = -O2 -pipe -g -feliminate-unused-debug-types
|
||||
CYGPATH_W = echo
|
||||
DEFS = -DHAVE_CONFIG_H
|
||||
DEPDIR = .deps
|
||||
DLLTOOL = false
|
||||
DOCBOOK_TO_MAN =
|
||||
DSYMUTIL =
|
||||
DUMPBIN =
|
||||
ECHO_C =
|
||||
ECHO_N = -n
|
||||
ECHO_T =
|
||||
EGREP = /usr/bin/grep -E
|
||||
ETAGS = etags
|
||||
EXEEXT =
|
||||
EXPAT_ATTR_INFO = OFF
|
||||
EXPAT_CHAR_TYPE = char
|
||||
EXPAT_CONTEXT_BYTES = 1024
|
||||
EXPAT_DTD = ON
|
||||
EXPAT_LARGE_SIZE = OFF
|
||||
EXPAT_MIN_SIZE = OFF
|
||||
EXPAT_NS = ON
|
||||
FGREP = /usr/bin/grep -F
|
||||
FILECMD = file
|
||||
FILEMAP = unixfilemap
|
||||
GREP = /usr/bin/grep
|
||||
HAVE_CXX11 = 1
|
||||
INSTALL = /usr/bin/install -c
|
||||
INSTALL_DATA = ${INSTALL} -m 644
|
||||
INSTALL_PROGRAM = ${INSTALL}
|
||||
INSTALL_SCRIPT = ${INSTALL}
|
||||
INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
|
||||
LD = powerpc64-fsl-linux-ld --sysroot=/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux -m elf64ppc
|
||||
LDFLAGS = -Wl,-O1 -Wl,--hash-style=gnu -Wl,--as-needed
|
||||
LIBAGE = 10
|
||||
LIBCURRENT = 11
|
||||
LIBDIR_BASENAME = lib
|
||||
LIBM = -lm
|
||||
LIBOBJS =
|
||||
LIBREVISION = 0
|
||||
LIBS =
|
||||
LIBTOOL = $(SHELL) $(top_builddir)/libtool
|
||||
LIPO =
|
||||
LN_S = ln -s
|
||||
LTLIBOBJS =
|
||||
LT_SYS_LIBRARY_PATH =
|
||||
MAINT =
|
||||
MAKEINFO = ${SHELL} '/opt/vgisc/6t/workspace/UTIL/src/expat-2.6.4/conftools/missing' makeinfo
|
||||
MANIFEST_TOOL = :
|
||||
MKDIR_P = /usr/bin/mkdir -p
|
||||
NM = powerpc64-fsl-linux-nm
|
||||
NMEDIT =
|
||||
OBJDUMP = powerpc64-fsl-linux-objdump
|
||||
OBJEXT = o
|
||||
OTOOL =
|
||||
OTOOL64 =
|
||||
PACKAGE = expat
|
||||
PACKAGE_BUGREPORT = https://github.com/libexpat/libexpat/issues
|
||||
PACKAGE_NAME = expat
|
||||
PACKAGE_STRING = expat 2.6.4
|
||||
PACKAGE_TARNAME = expat
|
||||
PACKAGE_URL =
|
||||
PACKAGE_VERSION = 2.6.4
|
||||
PATH_SEPARATOR = :
|
||||
RANLIB = powerpc64-fsl-linux-ranlib
|
||||
SED = sed
|
||||
SET_MAKE =
|
||||
SHELL = /bin/bash
|
||||
SIZEOF_VOID_P = 8
|
||||
SO_MAJOR = 1
|
||||
SO_MINOR = 10
|
||||
SO_PATCH = 0
|
||||
STRIP = powerpc64-fsl-linux-strip
|
||||
VERSION = 2.6.4
|
||||
abs_builddir = /opt/vgisc/6t/workspace/UTIL/src/expat-2.6.4/examples
|
||||
abs_srcdir = /opt/vgisc/6t/workspace/UTIL/src/expat-2.6.4/examples
|
||||
abs_top_builddir = /opt/vgisc/6t/workspace/UTIL/src/expat-2.6.4
|
||||
abs_top_srcdir = /opt/vgisc/6t/workspace/UTIL/src/expat-2.6.4
|
||||
ac_ct_AR =
|
||||
ac_ct_CC =
|
||||
ac_ct_CXX =
|
||||
ac_ct_DUMPBIN =
|
||||
am__include = include
|
||||
am__leading_dot = .
|
||||
am__quote =
|
||||
am__tar = $${TAR-tar} chof - "$$tardir"
|
||||
am__untar = $${TAR-tar} xf -
|
||||
bindir = ${exec_prefix}/bin
|
||||
build = x86_64-pc-linux-gnu
|
||||
build_alias =
|
||||
build_cpu = x86_64
|
||||
build_os = linux-gnu
|
||||
build_vendor = pc
|
||||
builddir = .
|
||||
datadir = ${datarootdir}
|
||||
datarootdir = ${prefix}/share
|
||||
docdir = ${datarootdir}/doc/${PACKAGE_TARNAME}
|
||||
dvidir = ${docdir}
|
||||
exec_prefix = ${prefix}
|
||||
host = powerpc64-fsl-linux-gnu
|
||||
host_alias = powerpc64-fsl-linux
|
||||
host_cpu = powerpc64
|
||||
host_os = linux-gnu
|
||||
host_vendor = fsl
|
||||
htmldir = ${docdir}
|
||||
includedir = ${prefix}/include
|
||||
infodir = ${datarootdir}/info
|
||||
install_sh = ${SHELL} /opt/vgisc/6t/workspace/UTIL/src/expat-2.6.4/conftools/install-sh
|
||||
libdir = ${exec_prefix}/lib
|
||||
libexecdir = ${exec_prefix}/libexec
|
||||
localedir = ${datarootdir}/locale
|
||||
localstatedir = ${prefix}/var
|
||||
mandir = ${datarootdir}/man
|
||||
mkdir_p = $(MKDIR_P)
|
||||
oldincludedir = /usr/include
|
||||
pdfdir = ${docdir}
|
||||
prefix = /opt/vgisc/6t/workspace/BUILD/build/powerpc64-fsl-linux
|
||||
program_transform_name = s,x,x,
|
||||
psdir = ${docdir}
|
||||
runstatedir = ${localstatedir}/run
|
||||
sbindir = ${exec_prefix}/sbin
|
||||
sharedstatedir = ${prefix}/com
|
||||
srcdir = .
|
||||
sysconfdir = ${prefix}/etc
|
||||
target_alias =
|
||||
top_build_prefix = ../
|
||||
top_builddir = ..
|
||||
top_srcdir = ..
|
||||
element_declarations_SOURCES = element_declarations.c
|
||||
element_declarations_LDADD = ../lib/libexpat.la
|
||||
elements_SOURCES = elements.c
|
||||
elements_LDADD = ../lib/libexpat.la
|
||||
outline_SOURCES = outline.c
|
||||
outline_LDADD = ../lib/libexpat.la
|
||||
all: all-am
|
||||
|
||||
.SUFFIXES:
|
||||
.SUFFIXES: .c .lo .o .obj
|
||||
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
|
||||
@for dep in $?; do \
|
||||
case '$(am__configure_deps)' in \
|
||||
*$$dep*) \
|
||||
( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
|
||||
&& { if test -f $@; then exit 0; else break; fi; }; \
|
||||
exit 1;; \
|
||||
esac; \
|
||||
done; \
|
||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu examples/Makefile'; \
|
||||
$(am__cd) $(top_srcdir) && \
|
||||
$(AUTOMAKE) --gnu examples/Makefile
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||
@case '$?' in \
|
||||
*config.status*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
|
||||
esac;
|
||||
|
||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
|
||||
$(top_srcdir)/configure: $(am__configure_deps)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
$(am__aclocal_m4_deps):
|
||||
|
||||
clean-noinstPROGRAMS:
|
||||
@list='$(noinst_PROGRAMS)'; test -n "$$list" || exit 0; \
|
||||
echo " rm -f" $$list; \
|
||||
rm -f $$list || exit $$?; \
|
||||
test -n "$(EXEEXT)" || exit 0; \
|
||||
list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
|
||||
echo " rm -f" $$list; \
|
||||
rm -f $$list
|
||||
|
||||
element_declarations$(EXEEXT): $(element_declarations_OBJECTS) $(element_declarations_DEPENDENCIES) $(EXTRA_element_declarations_DEPENDENCIES)
|
||||
@rm -f element_declarations$(EXEEXT)
|
||||
$(AM_V_CCLD)$(LINK) $(element_declarations_OBJECTS) $(element_declarations_LDADD) $(LIBS)
|
||||
|
||||
elements$(EXEEXT): $(elements_OBJECTS) $(elements_DEPENDENCIES) $(EXTRA_elements_DEPENDENCIES)
|
||||
@rm -f elements$(EXEEXT)
|
||||
$(AM_V_CCLD)$(LINK) $(elements_OBJECTS) $(elements_LDADD) $(LIBS)
|
||||
|
||||
outline$(EXEEXT): $(outline_OBJECTS) $(outline_DEPENDENCIES) $(EXTRA_outline_DEPENDENCIES)
|
||||
@rm -f outline$(EXEEXT)
|
||||
$(AM_V_CCLD)$(LINK) $(outline_OBJECTS) $(outline_LDADD) $(LIBS)
|
||||
|
||||
mostlyclean-compile:
|
||||
-rm -f *.$(OBJEXT)
|
||||
|
||||
distclean-compile:
|
||||
-rm -f *.tab.c
|
||||
|
||||
include ./$(DEPDIR)/element_declarations.Po # am--include-marker
|
||||
include ./$(DEPDIR)/elements.Po # am--include-marker
|
||||
include ./$(DEPDIR)/outline.Po # am--include-marker
|
||||
|
||||
$(am__depfiles_remade):
|
||||
@$(MKDIR_P) $(@D)
|
||||
@echo '# dummy' >$@-t && $(am__mv) $@-t $@
|
||||
|
||||
am--depfiles: $(am__depfiles_remade)
|
||||
|
||||
.c.o:
|
||||
$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
|
||||
$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
|
||||
# $(AM_V_CC)source='$<' object='$@' libtool=no \
|
||||
# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
|
||||
# $(AM_V_CC_no)$(COMPILE) -c -o $@ $<
|
||||
|
||||
.c.obj:
|
||||
$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
|
||||
$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
|
||||
# $(AM_V_CC)source='$<' object='$@' libtool=no \
|
||||
# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
|
||||
# $(AM_V_CC_no)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
|
||||
|
||||
.c.lo:
|
||||
$(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
|
||||
$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
|
||||
# $(AM_V_CC)source='$<' object='$@' libtool=yes \
|
||||
# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
|
||||
# $(AM_V_CC_no)$(LTCOMPILE) -c -o $@ $<
|
||||
|
||||
mostlyclean-libtool:
|
||||
-rm -f *.lo
|
||||
|
||||
clean-libtool:
|
||||
-rm -rf .libs _libs
|
||||
|
||||
ID: $(am__tagged_files)
|
||||
$(am__define_uniq_tagged_files); mkid -fID $$unique
|
||||
tags: tags-am
|
||||
TAGS: tags
|
||||
|
||||
tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
|
||||
set x; \
|
||||
here=`pwd`; \
|
||||
$(am__define_uniq_tagged_files); \
|
||||
shift; \
|
||||
if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
|
||||
test -n "$$unique" || unique=$$empty_fix; \
|
||||
if test $$# -gt 0; then \
|
||||
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
||||
"$$@" $$unique; \
|
||||
else \
|
||||
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
||||
$$unique; \
|
||||
fi; \
|
||||
fi
|
||||
ctags: ctags-am
|
||||
|
||||
CTAGS: ctags
|
||||
ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
|
||||
$(am__define_uniq_tagged_files); \
|
||||
test -z "$(CTAGS_ARGS)$$unique" \
|
||||
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
|
||||
$$unique
|
||||
|
||||
GTAGS:
|
||||
here=`$(am__cd) $(top_builddir) && pwd` \
|
||||
&& $(am__cd) $(top_srcdir) \
|
||||
&& gtags -i $(GTAGS_ARGS) "$$here"
|
||||
cscopelist: cscopelist-am
|
||||
|
||||
cscopelist-am: $(am__tagged_files)
|
||||
list='$(am__tagged_files)'; \
|
||||
case "$(srcdir)" in \
|
||||
[\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
|
||||
*) sdir=$(subdir)/$(srcdir) ;; \
|
||||
esac; \
|
||||
for i in $$list; do \
|
||||
if test -f "$$i"; then \
|
||||
echo "$(subdir)/$$i"; \
|
||||
else \
|
||||
echo "$$sdir/$$i"; \
|
||||
fi; \
|
||||
done >> $(top_builddir)/cscope.files
|
||||
|
||||
distclean-tags:
|
||||
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
||||
distdir: $(BUILT_SOURCES)
|
||||
$(MAKE) $(AM_MAKEFLAGS) distdir-am
|
||||
|
||||
distdir-am: $(DISTFILES)
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
list='$(DISTFILES)'; \
|
||||
dist_files=`for file in $$list; do echo $$file; done | \
|
||||
sed -e "s|^$$srcdirstrip/||;t" \
|
||||
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
|
||||
case $$dist_files in \
|
||||
*/*) $(MKDIR_P) `echo "$$dist_files" | \
|
||||
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
|
||||
sort -u` ;; \
|
||||
esac; \
|
||||
for file in $$dist_files; do \
|
||||
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
||||
if test -d $$d/$$file; then \
|
||||
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
|
||||
if test -d "$(distdir)/$$file"; then \
|
||||
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
||||
fi; \
|
||||
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
||||
cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
|
||||
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
||||
fi; \
|
||||
cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
|
||||
else \
|
||||
test -f "$(distdir)/$$file" \
|
||||
|| cp -p $$d/$$file "$(distdir)/$$file" \
|
||||
|| exit 1; \
|
||||
fi; \
|
||||
done
|
||||
check-am: all-am
|
||||
check: check-am
|
||||
all-am: Makefile $(PROGRAMS)
|
||||
installdirs:
|
||||
install: install-am
|
||||
install-exec: install-exec-am
|
||||
install-data: install-data-am
|
||||
uninstall: uninstall-am
|
||||
|
||||
install-am: all-am
|
||||
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
||||
|
||||
installcheck: installcheck-am
|
||||
install-strip:
|
||||
if test -z '$(STRIP)'; then \
|
||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
||||
install; \
|
||||
else \
|
||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
||||
"INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
|
||||
fi
|
||||
mostlyclean-generic:
|
||||
|
||||
clean-generic:
|
||||
|
||||
distclean-generic:
|
||||
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
||||
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
|
||||
|
||||
maintainer-clean-generic:
|
||||
@echo "This command is intended for maintainers to use"
|
||||
@echo "it deletes files that may require special tools to rebuild."
|
||||
clean: clean-am
|
||||
|
||||
clean-am: clean-generic clean-libtool clean-noinstPROGRAMS \
|
||||
mostlyclean-am
|
||||
|
||||
distclean: distclean-am
|
||||
-rm -f ./$(DEPDIR)/element_declarations.Po
|
||||
-rm -f ./$(DEPDIR)/elements.Po
|
||||
-rm -f ./$(DEPDIR)/outline.Po
|
||||
-rm -f Makefile
|
||||
distclean-am: clean-am distclean-compile distclean-generic \
|
||||
distclean-tags
|
||||
|
||||
dvi: dvi-am
|
||||
|
||||
dvi-am:
|
||||
|
||||
html: html-am
|
||||
|
||||
html-am:
|
||||
|
||||
info: info-am
|
||||
|
||||
info-am:
|
||||
|
||||
install-data-am:
|
||||
|
||||
install-dvi: install-dvi-am
|
||||
|
||||
install-dvi-am:
|
||||
|
||||
install-exec-am:
|
||||
|
||||
install-html: install-html-am
|
||||
|
||||
install-html-am:
|
||||
|
||||
install-info: install-info-am
|
||||
|
||||
install-info-am:
|
||||
|
||||
install-man:
|
||||
|
||||
install-pdf: install-pdf-am
|
||||
|
||||
install-pdf-am:
|
||||
|
||||
install-ps: install-ps-am
|
||||
|
||||
install-ps-am:
|
||||
|
||||
installcheck-am:
|
||||
|
||||
maintainer-clean: maintainer-clean-am
|
||||
-rm -f ./$(DEPDIR)/element_declarations.Po
|
||||
-rm -f ./$(DEPDIR)/elements.Po
|
||||
-rm -f ./$(DEPDIR)/outline.Po
|
||||
-rm -f Makefile
|
||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
||||
|
||||
mostlyclean: mostlyclean-am
|
||||
|
||||
mostlyclean-am: mostlyclean-compile mostlyclean-generic \
|
||||
mostlyclean-libtool
|
||||
|
||||
pdf: pdf-am
|
||||
|
||||
pdf-am:
|
||||
|
||||
ps: ps-am
|
||||
|
||||
ps-am:
|
||||
|
||||
uninstall-am:
|
||||
|
||||
.MAKE: install-am install-strip
|
||||
|
||||
.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
|
||||
clean-generic clean-libtool clean-noinstPROGRAMS cscopelist-am \
|
||||
ctags ctags-am distclean distclean-compile distclean-generic \
|
||||
distclean-libtool distclean-tags distdir dvi dvi-am html \
|
||||
html-am info info-am install install-am install-data \
|
||||
install-data-am install-dvi install-dvi-am install-exec \
|
||||
install-exec-am install-html install-html-am install-info \
|
||||
install-info-am install-man install-pdf install-pdf-am \
|
||||
install-ps install-ps-am install-strip installcheck \
|
||||
installcheck-am installdirs maintainer-clean \
|
||||
maintainer-clean-generic mostlyclean mostlyclean-compile \
|
||||
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
|
||||
tags tags-am uninstall uninstall-am
|
||||
|
||||
.PRECIOUS: Makefile
|
||||
|
||||
|
||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||
.NOEXPORT:
|
|
@ -1,228 +0,0 @@
|
|||
#! /bin/bash
|
||||
|
||||
# element_declarations - temporary wrapper script for .libs/element_declarations
|
||||
# Generated by libtool (GNU libtool) 2.5.3
|
||||
#
|
||||
# The element_declarations program cannot be directly executed until all the libtool
|
||||
# libraries that it depends on are installed.
|
||||
#
|
||||
# This wrapper script should never be moved out of the build directory.
|
||||
# If it is, it will not operate correctly.
|
||||
|
||||
# Sed substitution that helps us do robust quoting. It backslashifies
|
||||
# metacharacters that are still active within double-quoted strings.
|
||||
sed_quote_subst='s|\([`"$\\]\)|\\\1|g'
|
||||
|
||||
# Be Bourne compatible
|
||||
if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
|
||||
emulate sh
|
||||
NULLCMD=:
|
||||
# Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
|
||||
# is contrary to our usage. Disable this feature.
|
||||
alias -g '${1+"$@"}'='"$@"'
|
||||
setopt NO_GLOB_SUBST
|
||||
else
|
||||
case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac
|
||||
fi
|
||||
BIN_SH=xpg4; export BIN_SH # for Tru64
|
||||
DUALCASE=1; export DUALCASE # for MKS sh
|
||||
|
||||
# The HP-UX ksh and POSIX shell print the target directory to stdout
|
||||
# if CDPATH is set.
|
||||
(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
|
||||
|
||||
relink_command="(cd /opt/vgisc/6t/workspace/UTIL/src/expat-2.6.4/examples; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/bin:/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/sbin:/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/bin:/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/sbin:/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/bin/../x86_64-fslsdk-linux/bin:/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/bin/powerpc64-fsl-linux:/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/bin/powerpc64-fsl-linux-musl:/opt/vgisc/app/gradle/gradle-8.12/bin:/usr/lib/jvm/java-17-openjdk-amd64/bin:/opt/vgisc/app/maven/apache-maven-3.9.9/bin:/opt/vgisc/app/maven/apache-maven-3.9.9/bin:/home/ct129/.cargo/bin:/home/ct129/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin; export PATH; powerpc64-fsl-linux-gcc -mbig-endian -mhard-float -m64 -mcpu=e6500 --sysroot=/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux -Wall -Wextra -fexceptions -fno-strict-aliasing -Wmissing-prototypes -Wstrict-prototypes -pedantic -Wduplicated-cond -Wduplicated-branches -Wlogical-op -Wrestrict -Wnull-dereference -Wjump-misses-init -Wdouble-promotion -Wshadow -Wformat=2 -Wno-pedantic-ms-format -Wmisleading-indentation -fvisibility=hidden -O2 -pipe -g -feliminate-unused-debug-types -fno-strict-aliasing -Wl,-O1 -Wl,--hash-style=gnu -Wl,--as-needed -o \$progdir/\$file element_declarations.o ../lib/.libs/libexpat.so -lm -Wl,-rpath -Wl,/opt/vgisc/6t/workspace/UTIL/src/expat-2.6.4/lib/.libs -Wl,-rpath -Wl,/opt/vgisc/6t/workspace/BUILD/build/powerpc64-fsl-linux/lib)"
|
||||
|
||||
# This environment variable determines our operation mode.
|
||||
if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then
|
||||
# install mode needs the following variables:
|
||||
generated_by_libtool_version='2.5.3'
|
||||
notinst_deplibs=' ../lib/libexpat.la'
|
||||
else
|
||||
# When we are sourced in execute mode, $file and $ECHO are already set.
|
||||
if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then
|
||||
file="$0"
|
||||
|
||||
# A function that is used when there is no print builtin or printf.
|
||||
func_fallback_echo ()
|
||||
{
|
||||
eval 'cat <<_LTECHO_EOF
|
||||
$1
|
||||
_LTECHO_EOF'
|
||||
}
|
||||
ECHO="printf %s\\n"
|
||||
fi
|
||||
|
||||
# Very basic option parsing. These options are (a) specific to
|
||||
# the libtool wrapper, (b) are identical between the wrapper
|
||||
# /script/ and the wrapper /executable/ that is used only on
|
||||
# windows platforms, and (c) all begin with the string --lt-
|
||||
# (application programs are unlikely to have options that match
|
||||
# this pattern).
|
||||
#
|
||||
# There are only two supported options: --lt-debug and
|
||||
# --lt-dump-script. There is, deliberately, no --lt-help.
|
||||
#
|
||||
# The first argument to this parsing function should be the
|
||||
# script's ../libtool value, followed by no.
|
||||
lt_option_debug=
|
||||
func_parse_lt_options ()
|
||||
{
|
||||
lt_script_arg0=$0
|
||||
shift
|
||||
for lt_opt
|
||||
do
|
||||
case "$lt_opt" in
|
||||
--lt-debug) lt_option_debug=1 ;;
|
||||
--lt-dump-script)
|
||||
lt_dump_D=`$ECHO "X$lt_script_arg0" | sed -e 's/^X//' -e 's%/[^/]*$%%'`
|
||||
test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=.
|
||||
lt_dump_F=`$ECHO "X$lt_script_arg0" | sed -e 's/^X//' -e 's%^.*/%%'`
|
||||
cat "$lt_dump_D/$lt_dump_F"
|
||||
exit 0
|
||||
;;
|
||||
--lt-*)
|
||||
$ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
done
|
||||
|
||||
# Print the debug banner immediately:
|
||||
if test -n "$lt_option_debug"; then
|
||||
echo "element_declarations:element_declarations:$LINENO: libtool wrapper (GNU libtool) 2.5.3" 1>&2
|
||||
fi
|
||||
}
|
||||
|
||||
# Used when --lt-debug. Prints its arguments to stdout
|
||||
# (redirection is the responsibility of the caller)
|
||||
func_lt_dump_args ()
|
||||
{
|
||||
lt_dump_args_N=1;
|
||||
for lt_arg
|
||||
do
|
||||
$ECHO "element_declarations:element_declarations:$LINENO: newargv[$lt_dump_args_N]: $lt_arg"
|
||||
lt_dump_args_N=`expr $lt_dump_args_N + 1`
|
||||
done
|
||||
}
|
||||
|
||||
# Core function for launching the target application
|
||||
func_exec_program_core ()
|
||||
{
|
||||
|
||||
if test -n "$lt_option_debug"; then
|
||||
$ECHO "element_declarations:element_declarations:$LINENO: newargv[0]: $progdir/$program" 1>&2
|
||||
func_lt_dump_args ${1+"$@"} 1>&2
|
||||
fi
|
||||
exec "$progdir/$program" ${1+"$@"}
|
||||
|
||||
$ECHO "$0: cannot exec $program $*" 1>&2
|
||||
exit 1
|
||||
}
|
||||
|
||||
# A function to encapsulate launching the target application
|
||||
# Strips options in the --lt-* namespace from $@ and
|
||||
# launches target application with the remaining arguments.
|
||||
func_exec_program ()
|
||||
{
|
||||
case " $* " in
|
||||
*\ --lt-*)
|
||||
for lt_wr_arg
|
||||
do
|
||||
case $lt_wr_arg in
|
||||
--lt-*) ;;
|
||||
*) set x "$@" "$lt_wr_arg"; shift;;
|
||||
esac
|
||||
shift
|
||||
done ;;
|
||||
esac
|
||||
func_exec_program_core ${1+"$@"}
|
||||
}
|
||||
|
||||
# Parse options
|
||||
func_parse_lt_options "$0" ${1+"$@"}
|
||||
|
||||
# Find the directory that this script lives in.
|
||||
thisdir=`$ECHO "$file" | sed 's%/[^/]*$%%'`
|
||||
test "x$thisdir" = "x$file" && thisdir=.
|
||||
|
||||
# Follow symbolic links until we get to the real thisdir.
|
||||
file=`ls -ld "$file" | sed -n 's/.*-> //p'`
|
||||
while test -n "$file"; do
|
||||
destdir=`$ECHO "$file" | sed 's%/[^/]*$%%'`
|
||||
|
||||
# If there was a directory component, then change thisdir.
|
||||
if test "x$destdir" != "x$file"; then
|
||||
case "$destdir" in
|
||||
[\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;;
|
||||
*) thisdir="$thisdir/$destdir" ;;
|
||||
esac
|
||||
fi
|
||||
|
||||
file=`$ECHO "$file" | sed 's%^.*/%%'`
|
||||
file=`ls -ld "$thisdir/$file" | sed -n 's/.*-> //p'`
|
||||
done
|
||||
|
||||
# Usually 'no', except on cygwin/mingw/windows when embedded into
|
||||
# the cwrapper.
|
||||
WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no
|
||||
if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then
|
||||
# special case for '.'
|
||||
if test "$thisdir" = "."; then
|
||||
thisdir=`pwd`
|
||||
fi
|
||||
# remove .libs from thisdir
|
||||
case "$thisdir" in
|
||||
*[\\/].libs ) thisdir=`$ECHO "$thisdir" | sed 's%[\\/][^\\/]*$%%'` ;;
|
||||
.libs ) thisdir=. ;;
|
||||
esac
|
||||
fi
|
||||
|
||||
# Try to get the absolute directory name.
|
||||
absdir=`cd "$thisdir" && pwd`
|
||||
test -n "$absdir" && thisdir="$absdir"
|
||||
|
||||
program=lt-'element_declarations'
|
||||
progdir="$thisdir/.libs"
|
||||
|
||||
if test ! -f "$progdir/$program" ||
|
||||
{ file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | sed 1q`; \
|
||||
test "X$file" != "X$progdir/$program"; }; then
|
||||
|
||||
file="$$-$program"
|
||||
|
||||
if test ! -d "$progdir"; then
|
||||
mkdir "$progdir"
|
||||
else
|
||||
rm -f "$progdir/$file"
|
||||
fi
|
||||
|
||||
# relink executable if necessary
|
||||
if test -n "$relink_command"; then
|
||||
if relink_command_output=`eval $relink_command 2>&1`; then :
|
||||
else
|
||||
$ECHO "$relink_command_output" >&2
|
||||
rm -f "$progdir/$file"
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
|
||||
mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null ||
|
||||
{ rm -f "$progdir/$program";
|
||||
mv -f "$progdir/$file" "$progdir/$program"; }
|
||||
rm -f "$progdir/$file"
|
||||
fi
|
||||
|
||||
if test -f "$progdir/$program"; then
|
||||
if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then
|
||||
# Run the actual program with our arguments.
|
||||
func_exec_program ${1+"$@"}
|
||||
fi
|
||||
else
|
||||
# The program doesn't exist.
|
||||
$ECHO "$0: error: '$progdir/$program' does not exist" 1>&2
|
||||
$ECHO "This script is just a wrapper for $program." 1>&2
|
||||
$ECHO "See the libtool documentation for more information." 1>&2
|
||||
exit 1
|
||||
fi
|
||||
fi
|
Binary file not shown.
|
@ -1,228 +0,0 @@
|
|||
#! /bin/bash
|
||||
|
||||
# elements - temporary wrapper script for .libs/elements
|
||||
# Generated by libtool (GNU libtool) 2.5.3
|
||||
#
|
||||
# The elements program cannot be directly executed until all the libtool
|
||||
# libraries that it depends on are installed.
|
||||
#
|
||||
# This wrapper script should never be moved out of the build directory.
|
||||
# If it is, it will not operate correctly.
|
||||
|
||||
# Sed substitution that helps us do robust quoting. It backslashifies
|
||||
# metacharacters that are still active within double-quoted strings.
|
||||
sed_quote_subst='s|\([`"$\\]\)|\\\1|g'
|
||||
|
||||
# Be Bourne compatible
|
||||
if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
|
||||
emulate sh
|
||||
NULLCMD=:
|
||||
# Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
|
||||
# is contrary to our usage. Disable this feature.
|
||||
alias -g '${1+"$@"}'='"$@"'
|
||||
setopt NO_GLOB_SUBST
|
||||
else
|
||||
case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac
|
||||
fi
|
||||
BIN_SH=xpg4; export BIN_SH # for Tru64
|
||||
DUALCASE=1; export DUALCASE # for MKS sh
|
||||
|
||||
# The HP-UX ksh and POSIX shell print the target directory to stdout
|
||||
# if CDPATH is set.
|
||||
(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
|
||||
|
||||
relink_command="(cd /opt/vgisc/6t/workspace/UTIL/src/expat-2.6.4/examples; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/bin:/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/sbin:/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/bin:/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/sbin:/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/bin/../x86_64-fslsdk-linux/bin:/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/bin/powerpc64-fsl-linux:/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/bin/powerpc64-fsl-linux-musl:/opt/vgisc/app/gradle/gradle-8.12/bin:/usr/lib/jvm/java-17-openjdk-amd64/bin:/opt/vgisc/app/maven/apache-maven-3.9.9/bin:/opt/vgisc/app/maven/apache-maven-3.9.9/bin:/home/ct129/.cargo/bin:/home/ct129/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin; export PATH; powerpc64-fsl-linux-gcc -mbig-endian -mhard-float -m64 -mcpu=e6500 --sysroot=/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux -Wall -Wextra -fexceptions -fno-strict-aliasing -Wmissing-prototypes -Wstrict-prototypes -pedantic -Wduplicated-cond -Wduplicated-branches -Wlogical-op -Wrestrict -Wnull-dereference -Wjump-misses-init -Wdouble-promotion -Wshadow -Wformat=2 -Wno-pedantic-ms-format -Wmisleading-indentation -fvisibility=hidden -O2 -pipe -g -feliminate-unused-debug-types -fno-strict-aliasing -Wl,-O1 -Wl,--hash-style=gnu -Wl,--as-needed -o \$progdir/\$file elements.o ../lib/.libs/libexpat.so -lm -Wl,-rpath -Wl,/opt/vgisc/6t/workspace/UTIL/src/expat-2.6.4/lib/.libs -Wl,-rpath -Wl,/opt/vgisc/6t/workspace/BUILD/build/powerpc64-fsl-linux/lib)"
|
||||
|
||||
# This environment variable determines our operation mode.
|
||||
if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then
|
||||
# install mode needs the following variables:
|
||||
generated_by_libtool_version='2.5.3'
|
||||
notinst_deplibs=' ../lib/libexpat.la'
|
||||
else
|
||||
# When we are sourced in execute mode, $file and $ECHO are already set.
|
||||
if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then
|
||||
file="$0"
|
||||
|
||||
# A function that is used when there is no print builtin or printf.
|
||||
func_fallback_echo ()
|
||||
{
|
||||
eval 'cat <<_LTECHO_EOF
|
||||
$1
|
||||
_LTECHO_EOF'
|
||||
}
|
||||
ECHO="printf %s\\n"
|
||||
fi
|
||||
|
||||
# Very basic option parsing. These options are (a) specific to
|
||||
# the libtool wrapper, (b) are identical between the wrapper
|
||||
# /script/ and the wrapper /executable/ that is used only on
|
||||
# windows platforms, and (c) all begin with the string --lt-
|
||||
# (application programs are unlikely to have options that match
|
||||
# this pattern).
|
||||
#
|
||||
# There are only two supported options: --lt-debug and
|
||||
# --lt-dump-script. There is, deliberately, no --lt-help.
|
||||
#
|
||||
# The first argument to this parsing function should be the
|
||||
# script's ../libtool value, followed by no.
|
||||
lt_option_debug=
|
||||
func_parse_lt_options ()
|
||||
{
|
||||
lt_script_arg0=$0
|
||||
shift
|
||||
for lt_opt
|
||||
do
|
||||
case "$lt_opt" in
|
||||
--lt-debug) lt_option_debug=1 ;;
|
||||
--lt-dump-script)
|
||||
lt_dump_D=`$ECHO "X$lt_script_arg0" | sed -e 's/^X//' -e 's%/[^/]*$%%'`
|
||||
test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=.
|
||||
lt_dump_F=`$ECHO "X$lt_script_arg0" | sed -e 's/^X//' -e 's%^.*/%%'`
|
||||
cat "$lt_dump_D/$lt_dump_F"
|
||||
exit 0
|
||||
;;
|
||||
--lt-*)
|
||||
$ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
done
|
||||
|
||||
# Print the debug banner immediately:
|
||||
if test -n "$lt_option_debug"; then
|
||||
echo "elements:elements:$LINENO: libtool wrapper (GNU libtool) 2.5.3" 1>&2
|
||||
fi
|
||||
}
|
||||
|
||||
# Used when --lt-debug. Prints its arguments to stdout
|
||||
# (redirection is the responsibility of the caller)
|
||||
func_lt_dump_args ()
|
||||
{
|
||||
lt_dump_args_N=1;
|
||||
for lt_arg
|
||||
do
|
||||
$ECHO "elements:elements:$LINENO: newargv[$lt_dump_args_N]: $lt_arg"
|
||||
lt_dump_args_N=`expr $lt_dump_args_N + 1`
|
||||
done
|
||||
}
|
||||
|
||||
# Core function for launching the target application
|
||||
func_exec_program_core ()
|
||||
{
|
||||
|
||||
if test -n "$lt_option_debug"; then
|
||||
$ECHO "elements:elements:$LINENO: newargv[0]: $progdir/$program" 1>&2
|
||||
func_lt_dump_args ${1+"$@"} 1>&2
|
||||
fi
|
||||
exec "$progdir/$program" ${1+"$@"}
|
||||
|
||||
$ECHO "$0: cannot exec $program $*" 1>&2
|
||||
exit 1
|
||||
}
|
||||
|
||||
# A function to encapsulate launching the target application
|
||||
# Strips options in the --lt-* namespace from $@ and
|
||||
# launches target application with the remaining arguments.
|
||||
func_exec_program ()
|
||||
{
|
||||
case " $* " in
|
||||
*\ --lt-*)
|
||||
for lt_wr_arg
|
||||
do
|
||||
case $lt_wr_arg in
|
||||
--lt-*) ;;
|
||||
*) set x "$@" "$lt_wr_arg"; shift;;
|
||||
esac
|
||||
shift
|
||||
done ;;
|
||||
esac
|
||||
func_exec_program_core ${1+"$@"}
|
||||
}
|
||||
|
||||
# Parse options
|
||||
func_parse_lt_options "$0" ${1+"$@"}
|
||||
|
||||
# Find the directory that this script lives in.
|
||||
thisdir=`$ECHO "$file" | sed 's%/[^/]*$%%'`
|
||||
test "x$thisdir" = "x$file" && thisdir=.
|
||||
|
||||
# Follow symbolic links until we get to the real thisdir.
|
||||
file=`ls -ld "$file" | sed -n 's/.*-> //p'`
|
||||
while test -n "$file"; do
|
||||
destdir=`$ECHO "$file" | sed 's%/[^/]*$%%'`
|
||||
|
||||
# If there was a directory component, then change thisdir.
|
||||
if test "x$destdir" != "x$file"; then
|
||||
case "$destdir" in
|
||||
[\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;;
|
||||
*) thisdir="$thisdir/$destdir" ;;
|
||||
esac
|
||||
fi
|
||||
|
||||
file=`$ECHO "$file" | sed 's%^.*/%%'`
|
||||
file=`ls -ld "$thisdir/$file" | sed -n 's/.*-> //p'`
|
||||
done
|
||||
|
||||
# Usually 'no', except on cygwin/mingw/windows when embedded into
|
||||
# the cwrapper.
|
||||
WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no
|
||||
if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then
|
||||
# special case for '.'
|
||||
if test "$thisdir" = "."; then
|
||||
thisdir=`pwd`
|
||||
fi
|
||||
# remove .libs from thisdir
|
||||
case "$thisdir" in
|
||||
*[\\/].libs ) thisdir=`$ECHO "$thisdir" | sed 's%[\\/][^\\/]*$%%'` ;;
|
||||
.libs ) thisdir=. ;;
|
||||
esac
|
||||
fi
|
||||
|
||||
# Try to get the absolute directory name.
|
||||
absdir=`cd "$thisdir" && pwd`
|
||||
test -n "$absdir" && thisdir="$absdir"
|
||||
|
||||
program=lt-'elements'
|
||||
progdir="$thisdir/.libs"
|
||||
|
||||
if test ! -f "$progdir/$program" ||
|
||||
{ file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | sed 1q`; \
|
||||
test "X$file" != "X$progdir/$program"; }; then
|
||||
|
||||
file="$$-$program"
|
||||
|
||||
if test ! -d "$progdir"; then
|
||||
mkdir "$progdir"
|
||||
else
|
||||
rm -f "$progdir/$file"
|
||||
fi
|
||||
|
||||
# relink executable if necessary
|
||||
if test -n "$relink_command"; then
|
||||
if relink_command_output=`eval $relink_command 2>&1`; then :
|
||||
else
|
||||
$ECHO "$relink_command_output" >&2
|
||||
rm -f "$progdir/$file"
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
|
||||
mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null ||
|
||||
{ rm -f "$progdir/$program";
|
||||
mv -f "$progdir/$file" "$progdir/$program"; }
|
||||
rm -f "$progdir/$file"
|
||||
fi
|
||||
|
||||
if test -f "$progdir/$program"; then
|
||||
if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then
|
||||
# Run the actual program with our arguments.
|
||||
func_exec_program ${1+"$@"}
|
||||
fi
|
||||
else
|
||||
# The program doesn't exist.
|
||||
$ECHO "$0: error: '$progdir/$program' does not exist" 1>&2
|
||||
$ECHO "This script is just a wrapper for $program." 1>&2
|
||||
$ECHO "See the libtool documentation for more information." 1>&2
|
||||
exit 1
|
||||
fi
|
||||
fi
|
Binary file not shown.
228
examples/outline
228
examples/outline
|
@ -1,228 +0,0 @@
|
|||
#! /bin/bash
|
||||
|
||||
# outline - temporary wrapper script for .libs/outline
|
||||
# Generated by libtool (GNU libtool) 2.5.3
|
||||
#
|
||||
# The outline program cannot be directly executed until all the libtool
|
||||
# libraries that it depends on are installed.
|
||||
#
|
||||
# This wrapper script should never be moved out of the build directory.
|
||||
# If it is, it will not operate correctly.
|
||||
|
||||
# Sed substitution that helps us do robust quoting. It backslashifies
|
||||
# metacharacters that are still active within double-quoted strings.
|
||||
sed_quote_subst='s|\([`"$\\]\)|\\\1|g'
|
||||
|
||||
# Be Bourne compatible
|
||||
if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
|
||||
emulate sh
|
||||
NULLCMD=:
|
||||
# Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
|
||||
# is contrary to our usage. Disable this feature.
|
||||
alias -g '${1+"$@"}'='"$@"'
|
||||
setopt NO_GLOB_SUBST
|
||||
else
|
||||
case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac
|
||||
fi
|
||||
BIN_SH=xpg4; export BIN_SH # for Tru64
|
||||
DUALCASE=1; export DUALCASE # for MKS sh
|
||||
|
||||
# The HP-UX ksh and POSIX shell print the target directory to stdout
|
||||
# if CDPATH is set.
|
||||
(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
|
||||
|
||||
relink_command="(cd /opt/vgisc/6t/workspace/UTIL/src/expat-2.6.4/examples; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/bin:/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/sbin:/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/bin:/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/sbin:/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/bin/../x86_64-fslsdk-linux/bin:/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/bin/powerpc64-fsl-linux:/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/bin/powerpc64-fsl-linux-musl:/opt/vgisc/app/gradle/gradle-8.12/bin:/usr/lib/jvm/java-17-openjdk-amd64/bin:/opt/vgisc/app/maven/apache-maven-3.9.9/bin:/opt/vgisc/app/maven/apache-maven-3.9.9/bin:/home/ct129/.cargo/bin:/home/ct129/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin; export PATH; powerpc64-fsl-linux-gcc -mbig-endian -mhard-float -m64 -mcpu=e6500 --sysroot=/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux -Wall -Wextra -fexceptions -fno-strict-aliasing -Wmissing-prototypes -Wstrict-prototypes -pedantic -Wduplicated-cond -Wduplicated-branches -Wlogical-op -Wrestrict -Wnull-dereference -Wjump-misses-init -Wdouble-promotion -Wshadow -Wformat=2 -Wno-pedantic-ms-format -Wmisleading-indentation -fvisibility=hidden -O2 -pipe -g -feliminate-unused-debug-types -fno-strict-aliasing -Wl,-O1 -Wl,--hash-style=gnu -Wl,--as-needed -o \$progdir/\$file outline.o ../lib/.libs/libexpat.so -lm -Wl,-rpath -Wl,/opt/vgisc/6t/workspace/UTIL/src/expat-2.6.4/lib/.libs -Wl,-rpath -Wl,/opt/vgisc/6t/workspace/BUILD/build/powerpc64-fsl-linux/lib)"
|
||||
|
||||
# This environment variable determines our operation mode.
|
||||
if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then
|
||||
# install mode needs the following variables:
|
||||
generated_by_libtool_version='2.5.3'
|
||||
notinst_deplibs=' ../lib/libexpat.la'
|
||||
else
|
||||
# When we are sourced in execute mode, $file and $ECHO are already set.
|
||||
if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then
|
||||
file="$0"
|
||||
|
||||
# A function that is used when there is no print builtin or printf.
|
||||
func_fallback_echo ()
|
||||
{
|
||||
eval 'cat <<_LTECHO_EOF
|
||||
$1
|
||||
_LTECHO_EOF'
|
||||
}
|
||||
ECHO="printf %s\\n"
|
||||
fi
|
||||
|
||||
# Very basic option parsing. These options are (a) specific to
|
||||
# the libtool wrapper, (b) are identical between the wrapper
|
||||
# /script/ and the wrapper /executable/ that is used only on
|
||||
# windows platforms, and (c) all begin with the string --lt-
|
||||
# (application programs are unlikely to have options that match
|
||||
# this pattern).
|
||||
#
|
||||
# There are only two supported options: --lt-debug and
|
||||
# --lt-dump-script. There is, deliberately, no --lt-help.
|
||||
#
|
||||
# The first argument to this parsing function should be the
|
||||
# script's ../libtool value, followed by no.
|
||||
lt_option_debug=
|
||||
func_parse_lt_options ()
|
||||
{
|
||||
lt_script_arg0=$0
|
||||
shift
|
||||
for lt_opt
|
||||
do
|
||||
case "$lt_opt" in
|
||||
--lt-debug) lt_option_debug=1 ;;
|
||||
--lt-dump-script)
|
||||
lt_dump_D=`$ECHO "X$lt_script_arg0" | sed -e 's/^X//' -e 's%/[^/]*$%%'`
|
||||
test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=.
|
||||
lt_dump_F=`$ECHO "X$lt_script_arg0" | sed -e 's/^X//' -e 's%^.*/%%'`
|
||||
cat "$lt_dump_D/$lt_dump_F"
|
||||
exit 0
|
||||
;;
|
||||
--lt-*)
|
||||
$ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
done
|
||||
|
||||
# Print the debug banner immediately:
|
||||
if test -n "$lt_option_debug"; then
|
||||
echo "outline:outline:$LINENO: libtool wrapper (GNU libtool) 2.5.3" 1>&2
|
||||
fi
|
||||
}
|
||||
|
||||
# Used when --lt-debug. Prints its arguments to stdout
|
||||
# (redirection is the responsibility of the caller)
|
||||
func_lt_dump_args ()
|
||||
{
|
||||
lt_dump_args_N=1;
|
||||
for lt_arg
|
||||
do
|
||||
$ECHO "outline:outline:$LINENO: newargv[$lt_dump_args_N]: $lt_arg"
|
||||
lt_dump_args_N=`expr $lt_dump_args_N + 1`
|
||||
done
|
||||
}
|
||||
|
||||
# Core function for launching the target application
|
||||
func_exec_program_core ()
|
||||
{
|
||||
|
||||
if test -n "$lt_option_debug"; then
|
||||
$ECHO "outline:outline:$LINENO: newargv[0]: $progdir/$program" 1>&2
|
||||
func_lt_dump_args ${1+"$@"} 1>&2
|
||||
fi
|
||||
exec "$progdir/$program" ${1+"$@"}
|
||||
|
||||
$ECHO "$0: cannot exec $program $*" 1>&2
|
||||
exit 1
|
||||
}
|
||||
|
||||
# A function to encapsulate launching the target application
|
||||
# Strips options in the --lt-* namespace from $@ and
|
||||
# launches target application with the remaining arguments.
|
||||
func_exec_program ()
|
||||
{
|
||||
case " $* " in
|
||||
*\ --lt-*)
|
||||
for lt_wr_arg
|
||||
do
|
||||
case $lt_wr_arg in
|
||||
--lt-*) ;;
|
||||
*) set x "$@" "$lt_wr_arg"; shift;;
|
||||
esac
|
||||
shift
|
||||
done ;;
|
||||
esac
|
||||
func_exec_program_core ${1+"$@"}
|
||||
}
|
||||
|
||||
# Parse options
|
||||
func_parse_lt_options "$0" ${1+"$@"}
|
||||
|
||||
# Find the directory that this script lives in.
|
||||
thisdir=`$ECHO "$file" | sed 's%/[^/]*$%%'`
|
||||
test "x$thisdir" = "x$file" && thisdir=.
|
||||
|
||||
# Follow symbolic links until we get to the real thisdir.
|
||||
file=`ls -ld "$file" | sed -n 's/.*-> //p'`
|
||||
while test -n "$file"; do
|
||||
destdir=`$ECHO "$file" | sed 's%/[^/]*$%%'`
|
||||
|
||||
# If there was a directory component, then change thisdir.
|
||||
if test "x$destdir" != "x$file"; then
|
||||
case "$destdir" in
|
||||
[\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;;
|
||||
*) thisdir="$thisdir/$destdir" ;;
|
||||
esac
|
||||
fi
|
||||
|
||||
file=`$ECHO "$file" | sed 's%^.*/%%'`
|
||||
file=`ls -ld "$thisdir/$file" | sed -n 's/.*-> //p'`
|
||||
done
|
||||
|
||||
# Usually 'no', except on cygwin/mingw/windows when embedded into
|
||||
# the cwrapper.
|
||||
WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no
|
||||
if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then
|
||||
# special case for '.'
|
||||
if test "$thisdir" = "."; then
|
||||
thisdir=`pwd`
|
||||
fi
|
||||
# remove .libs from thisdir
|
||||
case "$thisdir" in
|
||||
*[\\/].libs ) thisdir=`$ECHO "$thisdir" | sed 's%[\\/][^\\/]*$%%'` ;;
|
||||
.libs ) thisdir=. ;;
|
||||
esac
|
||||
fi
|
||||
|
||||
# Try to get the absolute directory name.
|
||||
absdir=`cd "$thisdir" && pwd`
|
||||
test -n "$absdir" && thisdir="$absdir"
|
||||
|
||||
program=lt-'outline'
|
||||
progdir="$thisdir/.libs"
|
||||
|
||||
if test ! -f "$progdir/$program" ||
|
||||
{ file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | sed 1q`; \
|
||||
test "X$file" != "X$progdir/$program"; }; then
|
||||
|
||||
file="$$-$program"
|
||||
|
||||
if test ! -d "$progdir"; then
|
||||
mkdir "$progdir"
|
||||
else
|
||||
rm -f "$progdir/$file"
|
||||
fi
|
||||
|
||||
# relink executable if necessary
|
||||
if test -n "$relink_command"; then
|
||||
if relink_command_output=`eval $relink_command 2>&1`; then :
|
||||
else
|
||||
$ECHO "$relink_command_output" >&2
|
||||
rm -f "$progdir/$file"
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
|
||||
mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null ||
|
||||
{ rm -f "$progdir/$program";
|
||||
mv -f "$progdir/$file" "$progdir/$program"; }
|
||||
rm -f "$progdir/$file"
|
||||
fi
|
||||
|
||||
if test -f "$progdir/$program"; then
|
||||
if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then
|
||||
# Run the actual program with our arguments.
|
||||
func_exec_program ${1+"$@"}
|
||||
fi
|
||||
else
|
||||
# The program doesn't exist.
|
||||
$ECHO "$0: error: '$progdir/$program' does not exist" 1>&2
|
||||
$ECHO "This script is just a wrapper for $program." 1>&2
|
||||
$ECHO "See the libtool documentation for more information." 1>&2
|
||||
exit 1
|
||||
fi
|
||||
fi
|
Binary file not shown.
13
expat.pc
13
expat.pc
|
@ -1,13 +0,0 @@
|
|||
prefix=/opt/vgisc/6t/workspace/BUILD/build/powerpc64-fsl-linux
|
||||
exec_prefix=${prefix}
|
||||
libdir=${exec_prefix}/lib
|
||||
includedir=${prefix}/include
|
||||
|
||||
Name: expat
|
||||
Version: 2.6.4
|
||||
Description: expat XML parser
|
||||
URL: https://libexpat.github.io/
|
||||
Libs: -L${libdir} -lexpat
|
||||
Libs.private: -lm
|
||||
Cflags: -I${includedir}
|
||||
Cflags.private: -DXML_STATIC
|
143
expat_config.h
143
expat_config.h
|
@ -1,143 +0,0 @@
|
|||
/* expat_config.h. Generated from expat_config.h.in by configure. */
|
||||
/* expat_config.h.in. Generated from configure.ac by autoheader. */
|
||||
|
||||
#ifndef EXPAT_CONFIG_H
|
||||
#define EXPAT_CONFIG_H 1
|
||||
|
||||
/* Define if building universal (internal helper macro) */
|
||||
/* #undef AC_APPLE_UNIVERSAL_BUILD */
|
||||
|
||||
/* 1234 = LILENDIAN, 4321 = BIGENDIAN */
|
||||
#define BYTEORDER 4321
|
||||
|
||||
/* Define to 1 if you have the `arc4random' function. */
|
||||
/* #undef HAVE_ARC4RANDOM */
|
||||
|
||||
/* Define to 1 if you have the `arc4random_buf' function. */
|
||||
/* #undef HAVE_ARC4RANDOM_BUF */
|
||||
|
||||
/* define if the compiler supports basic C++11 syntax */
|
||||
#define HAVE_CXX11 1
|
||||
|
||||
/* Define to 1 if you have the <dlfcn.h> header file. */
|
||||
#define HAVE_DLFCN_H 1
|
||||
|
||||
/* Define to 1 if you have the <fcntl.h> header file. */
|
||||
#define HAVE_FCNTL_H 1
|
||||
|
||||
/* Define to 1 if you have the `getpagesize' function. */
|
||||
#define HAVE_GETPAGESIZE 1
|
||||
|
||||
/* Define to 1 if you have the `getrandom' function. */
|
||||
#define HAVE_GETRANDOM 1
|
||||
|
||||
/* Define to 1 if you have the <inttypes.h> header file. */
|
||||
#define HAVE_INTTYPES_H 1
|
||||
|
||||
/* Define to 1 if you have the `bsd' library (-lbsd). */
|
||||
/* #undef HAVE_LIBBSD */
|
||||
|
||||
/* Define to 1 if you have a working `mmap' system call. */
|
||||
#define HAVE_MMAP 1
|
||||
|
||||
/* Define to 1 if you have the <stdint.h> header file. */
|
||||
#define HAVE_STDINT_H 1
|
||||
|
||||
/* Define to 1 if you have the <stdio.h> header file. */
|
||||
#define HAVE_STDIO_H 1
|
||||
|
||||
/* Define to 1 if you have the <stdlib.h> header file. */
|
||||
#define HAVE_STDLIB_H 1
|
||||
|
||||
/* Define to 1 if you have the <strings.h> header file. */
|
||||
#define HAVE_STRINGS_H 1
|
||||
|
||||
/* Define to 1 if you have the <string.h> header file. */
|
||||
#define HAVE_STRING_H 1
|
||||
|
||||
/* Define to 1 if you have `syscall' and `SYS_getrandom'. */
|
||||
#define HAVE_SYSCALL_GETRANDOM 1
|
||||
|
||||
/* Define to 1 if you have the <sys/param.h> header file. */
|
||||
#define HAVE_SYS_PARAM_H 1
|
||||
|
||||
/* Define to 1 if you have the <sys/stat.h> header file. */
|
||||
#define HAVE_SYS_STAT_H 1
|
||||
|
||||
/* Define to 1 if you have the <sys/types.h> header file. */
|
||||
#define HAVE_SYS_TYPES_H 1
|
||||
|
||||
/* Define to 1 if you have the <unistd.h> header file. */
|
||||
#define HAVE_UNISTD_H 1
|
||||
|
||||
/* Define to the sub-directory where libtool stores uninstalled libraries. */
|
||||
#define LT_OBJDIR ".libs/"
|
||||
|
||||
/* Name of package */
|
||||
#define PACKAGE "expat"
|
||||
|
||||
/* Define to the address where bug reports for this package should be sent. */
|
||||
#define PACKAGE_BUGREPORT "https://github.com/libexpat/libexpat/issues"
|
||||
|
||||
/* Define to the full name of this package. */
|
||||
#define PACKAGE_NAME "expat"
|
||||
|
||||
/* Define to the full name and version of this package. */
|
||||
#define PACKAGE_STRING "expat 2.6.4"
|
||||
|
||||
/* Define to the one symbol short name of this package. */
|
||||
#define PACKAGE_TARNAME "expat"
|
||||
|
||||
/* Define to the home page for this package. */
|
||||
#define PACKAGE_URL ""
|
||||
|
||||
/* Define to the version of this package. */
|
||||
#define PACKAGE_VERSION "2.6.4"
|
||||
|
||||
/* Define to 1 if all of the C90 standard headers exist (not just the ones
|
||||
required in a freestanding environment). This macro is provided for
|
||||
backward compatibility; new code need not use it. */
|
||||
#define STDC_HEADERS 1
|
||||
|
||||
/* Version number of package */
|
||||
#define VERSION "2.6.4"
|
||||
|
||||
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
|
||||
significant byte first (like Motorola and SPARC, unlike Intel). */
|
||||
#if defined AC_APPLE_UNIVERSAL_BUILD
|
||||
# if defined __BIG_ENDIAN__
|
||||
# define WORDS_BIGENDIAN 1
|
||||
# endif
|
||||
#else
|
||||
# ifndef WORDS_BIGENDIAN
|
||||
# define WORDS_BIGENDIAN 1
|
||||
# endif
|
||||
#endif
|
||||
|
||||
/* Define to allow retrieving the byte offsets for attribute names and values.
|
||||
*/
|
||||
/* #undef XML_ATTR_INFO */
|
||||
|
||||
/* Define to specify how much context to retain around the current parse
|
||||
point, 0 to disable. */
|
||||
#define XML_CONTEXT_BYTES 1024
|
||||
|
||||
/* Define to include code reading entropy from `/dev/urandom'. */
|
||||
#define XML_DEV_URANDOM 1
|
||||
|
||||
/* Define to make parameter entity parsing functionality available. */
|
||||
#define XML_DTD 1
|
||||
|
||||
/* Define as 1/0 to enable/disable support for general entities. */
|
||||
#define XML_GE 1
|
||||
|
||||
/* Define to make XML Namespaces functionality available. */
|
||||
#define XML_NS 1
|
||||
|
||||
/* Define to empty if `const' does not conform to ANSI C. */
|
||||
/* #undef const */
|
||||
|
||||
/* Define to `long int' if <sys/types.h> does not define. */
|
||||
/* #undef off_t */
|
||||
|
||||
#endif // ndef EXPAT_CONFIG_H
|
|
@ -1,338 +0,0 @@
|
|||
libtestpat_la-xmlparse.lo: xmlparse.c \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdc-predef.h \
|
||||
../expat_config.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include/stdbool.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include/stddef.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/string.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/libc-header-start.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/features.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/cdefs.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/wordsize.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/long-double.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/long-double-64.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/gnu/stubs.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/gnu/stubs-64-v1.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/locale_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__locale_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/strings.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/assert.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include-fixed/limits.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include-fixed/syslimits.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/limits.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/posix1_lim.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/local_lim.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/linux/limits.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/posix2_lim.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/xopen_lim.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/uio_lim.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdio.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include/stdarg.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/timesize.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/typesizes.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/time64.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__fpos_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__mbstate_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__fpos64_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__FILE.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/FILE.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_FILE.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/cookie_io_functions_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdio_lim.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/sys_errlist.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdio.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdlib.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/waitflags.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/waitstatus.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn-64.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn-common.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/types.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/clock_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/clockid_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/time_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/timer_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdint-intn.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/endian.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/endian.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/byteswap.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/uintn-identity.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/select.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/select.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/sigset_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__sigset_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_timeval.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_timespec.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/pthreadtypes.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/thread-shared-types.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/pthreadtypes-arch.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/alloca.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdlib-bsearch.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdlib-float.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include/stdint.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdint.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/wchar.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdint-uintn.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/math.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/math-vector.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/libm-simd-decl-stubs.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/flt-eval-method.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/fp-logb.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/fp-fast.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/mathcalls-helper-functions.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/mathcalls.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/mathcalls-narrow.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/iscanonical.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/mathinline.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/time.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/unistd.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/posix_opt.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/environments.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/confname.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/getopt_posix.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/getopt_core.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/unistd_ext.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/fcntl.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/fcntl.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/fcntl-linux.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_iovec.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/linux/falloc.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stat.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/errno.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/errno.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/linux/errno.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/asm/errno.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/asm-generic/errno.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/asm-generic/errno-base.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/error_t.h \
|
||||
ascii.h expat.h expat_external.h siphash.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/random.h \
|
||||
internal.h xmltok.h xmlrole.h
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdc-predef.h:
|
||||
|
||||
../expat_config.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include/stdbool.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include/stddef.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/string.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/libc-header-start.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/features.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/cdefs.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/wordsize.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/long-double.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/long-double-64.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/gnu/stubs.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/gnu/stubs-64-v1.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/locale_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__locale_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/strings.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/assert.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include-fixed/limits.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include-fixed/syslimits.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/limits.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/posix1_lim.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/local_lim.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/linux/limits.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/posix2_lim.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/xopen_lim.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/uio_lim.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdio.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include/stdarg.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/timesize.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/typesizes.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/time64.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__fpos_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__mbstate_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__fpos64_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__FILE.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/FILE.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_FILE.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/cookie_io_functions_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdio_lim.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/sys_errlist.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdio.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdlib.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/waitflags.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/waitstatus.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn-64.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn-common.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/types.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/clock_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/clockid_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/time_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/timer_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdint-intn.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/endian.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/endian.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/byteswap.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/uintn-identity.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/select.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/select.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/sigset_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__sigset_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_timeval.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_timespec.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/pthreadtypes.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/thread-shared-types.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/pthreadtypes-arch.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/alloca.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdlib-bsearch.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdlib-float.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include/stdint.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdint.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/wchar.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdint-uintn.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/math.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/math-vector.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/libm-simd-decl-stubs.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/flt-eval-method.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/fp-logb.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/fp-fast.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/mathcalls-helper-functions.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/mathcalls.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/mathcalls-narrow.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/iscanonical.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/mathinline.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/time.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/unistd.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/posix_opt.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/environments.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/confname.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/getopt_posix.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/getopt_core.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/unistd_ext.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/fcntl.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/fcntl.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/fcntl-linux.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_iovec.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/linux/falloc.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stat.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/errno.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/errno.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/linux/errno.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/asm/errno.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/asm-generic/errno.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/asm-generic/errno-base.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/error_t.h:
|
||||
|
||||
ascii.h:
|
||||
|
||||
expat.h:
|
||||
|
||||
expat_external.h:
|
||||
|
||||
siphash.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/random.h:
|
||||
|
||||
internal.h:
|
||||
|
||||
xmltok.h:
|
||||
|
||||
xmlrole.h:
|
|
@ -1,166 +0,0 @@
|
|||
libtestpat_la-xmlrole.lo: xmlrole.c \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdc-predef.h \
|
||||
../expat_config.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include/stddef.h \
|
||||
expat_external.h internal.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include-fixed/limits.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include-fixed/syslimits.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/limits.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/libc-header-start.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/features.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/cdefs.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/wordsize.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/long-double.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/long-double-64.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/gnu/stubs.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/gnu/stubs-64-v1.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/posix1_lim.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/local_lim.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/linux/limits.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/posix2_lim.h \
|
||||
expat.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdlib.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/waitflags.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/waitstatus.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn-64.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn-common.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/types.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/timesize.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/typesizes.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/time64.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/clock_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/clockid_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/time_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/timer_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdint-intn.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/endian.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/endian.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/byteswap.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/uintn-identity.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/select.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/select.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/sigset_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__sigset_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_timeval.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_timespec.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/pthreadtypes.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/thread-shared-types.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/pthreadtypes-arch.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/alloca.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdlib-bsearch.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdlib-float.h \
|
||||
xmlrole.h xmltok.h ascii.h
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdc-predef.h:
|
||||
|
||||
../expat_config.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include/stddef.h:
|
||||
|
||||
expat_external.h:
|
||||
|
||||
internal.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include-fixed/limits.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include-fixed/syslimits.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/limits.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/libc-header-start.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/features.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/cdefs.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/wordsize.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/long-double.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/long-double-64.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/gnu/stubs.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/gnu/stubs-64-v1.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/posix1_lim.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/local_lim.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/linux/limits.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/posix2_lim.h:
|
||||
|
||||
expat.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdlib.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/waitflags.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/waitstatus.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn-64.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn-common.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/types.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/timesize.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/typesizes.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/time64.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/clock_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/clockid_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/time_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/timer_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdint-intn.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/endian.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/endian.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/byteswap.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/uintn-identity.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/select.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/select.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/sigset_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__sigset_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_timeval.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_timespec.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/pthreadtypes.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/thread-shared-types.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/pthreadtypes-arch.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/alloca.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdlib-bsearch.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdlib-float.h:
|
||||
|
||||
xmlrole.h:
|
||||
|
||||
xmltok.h:
|
||||
|
||||
ascii.h:
|
|
@ -1,196 +0,0 @@
|
|||
libtestpat_la-xmltok.lo: xmltok.c \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdc-predef.h \
|
||||
../expat_config.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include/stddef.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/string.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/libc-header-start.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/features.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/cdefs.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/wordsize.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/long-double.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/long-double-64.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/gnu/stubs.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/gnu/stubs-64-v1.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/locale_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__locale_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/strings.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include/stdbool.h \
|
||||
expat_external.h internal.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include-fixed/limits.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include-fixed/syslimits.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/limits.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/posix1_lim.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/local_lim.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/linux/limits.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/posix2_lim.h \
|
||||
expat.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdlib.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/waitflags.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/waitstatus.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn-64.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn-common.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/types.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/timesize.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/typesizes.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/time64.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/clock_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/clockid_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/time_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/timer_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdint-intn.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/endian.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/endian.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/byteswap.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/uintn-identity.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/select.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/select.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/sigset_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__sigset_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_timeval.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_timespec.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/pthreadtypes.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/thread-shared-types.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/pthreadtypes-arch.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/alloca.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdlib-bsearch.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdlib-float.h \
|
||||
xmltok.h nametab.h xmltok_impl.h ascii.h xmltok_impl.c asciitab.h \
|
||||
utf8tab.h iasciitab.h latin1tab.h xmltok_ns.c
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdc-predef.h:
|
||||
|
||||
../expat_config.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include/stddef.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/string.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/libc-header-start.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/features.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/cdefs.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/wordsize.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/long-double.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/long-double-64.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/gnu/stubs.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/gnu/stubs-64-v1.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/locale_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__locale_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/strings.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include/stdbool.h:
|
||||
|
||||
expat_external.h:
|
||||
|
||||
internal.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include-fixed/limits.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include-fixed/syslimits.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/limits.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/posix1_lim.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/local_lim.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/linux/limits.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/posix2_lim.h:
|
||||
|
||||
expat.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdlib.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/waitflags.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/waitstatus.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn-64.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn-common.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/types.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/timesize.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/typesizes.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/time64.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/clock_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/clockid_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/time_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/timer_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdint-intn.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/endian.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/endian.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/byteswap.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/uintn-identity.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/select.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/select.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/sigset_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__sigset_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_timeval.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_timespec.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/pthreadtypes.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/thread-shared-types.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/pthreadtypes-arch.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/alloca.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdlib-bsearch.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdlib-float.h:
|
||||
|
||||
xmltok.h:
|
||||
|
||||
nametab.h:
|
||||
|
||||
xmltok_impl.h:
|
||||
|
||||
ascii.h:
|
||||
|
||||
xmltok_impl.c:
|
||||
|
||||
asciitab.h:
|
||||
|
||||
utf8tab.h:
|
||||
|
||||
iasciitab.h:
|
||||
|
||||
latin1tab.h:
|
||||
|
||||
xmltok_ns.c:
|
|
@ -1,338 +0,0 @@
|
|||
xmlparse.lo: xmlparse.c \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdc-predef.h \
|
||||
../expat_config.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include/stdbool.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include/stddef.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/string.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/libc-header-start.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/features.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/cdefs.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/wordsize.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/long-double.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/long-double-64.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/gnu/stubs.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/gnu/stubs-64-v1.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/locale_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__locale_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/strings.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/assert.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include-fixed/limits.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include-fixed/syslimits.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/limits.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/posix1_lim.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/local_lim.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/linux/limits.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/posix2_lim.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/xopen_lim.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/uio_lim.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdio.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include/stdarg.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/timesize.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/typesizes.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/time64.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__fpos_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__mbstate_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__fpos64_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__FILE.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/FILE.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_FILE.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/cookie_io_functions_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdio_lim.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/sys_errlist.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdio.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdlib.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/waitflags.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/waitstatus.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn-64.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn-common.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/types.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/clock_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/clockid_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/time_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/timer_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdint-intn.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/endian.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/endian.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/byteswap.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/uintn-identity.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/select.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/select.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/sigset_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__sigset_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_timeval.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_timespec.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/pthreadtypes.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/thread-shared-types.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/pthreadtypes-arch.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/alloca.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdlib-bsearch.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdlib-float.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include/stdint.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdint.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/wchar.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdint-uintn.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/math.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/math-vector.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/libm-simd-decl-stubs.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/flt-eval-method.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/fp-logb.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/fp-fast.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/mathcalls-helper-functions.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/mathcalls.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/mathcalls-narrow.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/iscanonical.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/mathinline.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/time.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/unistd.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/posix_opt.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/environments.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/confname.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/getopt_posix.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/getopt_core.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/unistd_ext.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/fcntl.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/fcntl.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/fcntl-linux.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_iovec.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/linux/falloc.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stat.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/errno.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/errno.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/linux/errno.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/asm/errno.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/asm-generic/errno.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/asm-generic/errno-base.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/error_t.h \
|
||||
ascii.h expat.h expat_external.h siphash.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/random.h \
|
||||
internal.h xmltok.h xmlrole.h
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdc-predef.h:
|
||||
|
||||
../expat_config.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include/stdbool.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include/stddef.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/string.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/libc-header-start.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/features.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/cdefs.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/wordsize.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/long-double.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/long-double-64.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/gnu/stubs.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/gnu/stubs-64-v1.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/locale_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__locale_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/strings.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/assert.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include-fixed/limits.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include-fixed/syslimits.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/limits.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/posix1_lim.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/local_lim.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/linux/limits.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/posix2_lim.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/xopen_lim.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/uio_lim.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdio.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include/stdarg.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/timesize.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/typesizes.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/time64.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__fpos_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__mbstate_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__fpos64_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__FILE.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/FILE.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_FILE.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/cookie_io_functions_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdio_lim.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/sys_errlist.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdio.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdlib.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/waitflags.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/waitstatus.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn-64.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn-common.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/types.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/clock_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/clockid_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/time_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/timer_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdint-intn.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/endian.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/endian.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/byteswap.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/uintn-identity.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/select.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/select.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/sigset_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__sigset_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_timeval.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_timespec.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/pthreadtypes.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/thread-shared-types.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/pthreadtypes-arch.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/alloca.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdlib-bsearch.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdlib-float.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include/stdint.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdint.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/wchar.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdint-uintn.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/math.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/math-vector.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/libm-simd-decl-stubs.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/flt-eval-method.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/fp-logb.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/fp-fast.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/mathcalls-helper-functions.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/mathcalls.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/mathcalls-narrow.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/iscanonical.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/mathinline.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/time.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/unistd.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/posix_opt.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/environments.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/confname.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/getopt_posix.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/getopt_core.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/unistd_ext.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/fcntl.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/fcntl.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/fcntl-linux.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_iovec.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/linux/falloc.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stat.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/errno.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/errno.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/linux/errno.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/asm/errno.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/asm-generic/errno.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/asm-generic/errno-base.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/error_t.h:
|
||||
|
||||
ascii.h:
|
||||
|
||||
expat.h:
|
||||
|
||||
expat_external.h:
|
||||
|
||||
siphash.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/random.h:
|
||||
|
||||
internal.h:
|
||||
|
||||
xmltok.h:
|
||||
|
||||
xmlrole.h:
|
|
@ -1,166 +0,0 @@
|
|||
xmlrole.lo: xmlrole.c \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdc-predef.h \
|
||||
../expat_config.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include/stddef.h \
|
||||
expat_external.h internal.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include-fixed/limits.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include-fixed/syslimits.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/limits.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/libc-header-start.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/features.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/cdefs.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/wordsize.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/long-double.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/long-double-64.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/gnu/stubs.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/gnu/stubs-64-v1.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/posix1_lim.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/local_lim.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/linux/limits.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/posix2_lim.h \
|
||||
expat.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdlib.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/waitflags.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/waitstatus.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn-64.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn-common.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/types.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/timesize.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/typesizes.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/time64.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/clock_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/clockid_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/time_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/timer_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdint-intn.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/endian.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/endian.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/byteswap.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/uintn-identity.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/select.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/select.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/sigset_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__sigset_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_timeval.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_timespec.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/pthreadtypes.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/thread-shared-types.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/pthreadtypes-arch.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/alloca.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdlib-bsearch.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdlib-float.h \
|
||||
xmlrole.h xmltok.h ascii.h
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdc-predef.h:
|
||||
|
||||
../expat_config.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include/stddef.h:
|
||||
|
||||
expat_external.h:
|
||||
|
||||
internal.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include-fixed/limits.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include-fixed/syslimits.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/limits.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/libc-header-start.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/features.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/cdefs.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/wordsize.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/long-double.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/long-double-64.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/gnu/stubs.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/gnu/stubs-64-v1.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/posix1_lim.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/local_lim.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/linux/limits.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/posix2_lim.h:
|
||||
|
||||
expat.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdlib.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/waitflags.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/waitstatus.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn-64.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn-common.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/types.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/timesize.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/typesizes.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/time64.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/clock_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/clockid_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/time_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/timer_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdint-intn.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/endian.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/endian.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/byteswap.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/uintn-identity.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/select.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/select.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/sigset_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__sigset_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_timeval.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_timespec.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/pthreadtypes.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/thread-shared-types.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/pthreadtypes-arch.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/alloca.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdlib-bsearch.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdlib-float.h:
|
||||
|
||||
xmlrole.h:
|
||||
|
||||
xmltok.h:
|
||||
|
||||
ascii.h:
|
|
@ -1,196 +0,0 @@
|
|||
xmltok.lo: xmltok.c \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdc-predef.h \
|
||||
../expat_config.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include/stddef.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/string.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/libc-header-start.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/features.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/cdefs.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/wordsize.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/long-double.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/long-double-64.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/gnu/stubs.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/gnu/stubs-64-v1.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/locale_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__locale_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/strings.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include/stdbool.h \
|
||||
expat_external.h internal.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include-fixed/limits.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include-fixed/syslimits.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/limits.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/posix1_lim.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/local_lim.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/linux/limits.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/posix2_lim.h \
|
||||
expat.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdlib.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/waitflags.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/waitstatus.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn-64.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn-common.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/types.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/timesize.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/typesizes.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/time64.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/clock_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/clockid_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/time_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/timer_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdint-intn.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/endian.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/endian.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/byteswap.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/uintn-identity.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/select.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/select.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/sigset_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__sigset_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_timeval.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_timespec.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/pthreadtypes.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/thread-shared-types.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/pthreadtypes-arch.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/alloca.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdlib-bsearch.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdlib-float.h \
|
||||
xmltok.h nametab.h xmltok_impl.h ascii.h xmltok_impl.c asciitab.h \
|
||||
utf8tab.h iasciitab.h latin1tab.h xmltok_ns.c
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdc-predef.h:
|
||||
|
||||
../expat_config.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include/stddef.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/string.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/libc-header-start.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/features.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/cdefs.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/wordsize.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/long-double.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/long-double-64.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/gnu/stubs.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/gnu/stubs-64-v1.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/locale_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__locale_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/strings.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include/stdbool.h:
|
||||
|
||||
expat_external.h:
|
||||
|
||||
internal.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include-fixed/limits.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include-fixed/syslimits.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/limits.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/posix1_lim.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/local_lim.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/linux/limits.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/posix2_lim.h:
|
||||
|
||||
expat.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdlib.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/waitflags.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/waitstatus.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn-64.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn-common.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/types.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/timesize.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/typesizes.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/time64.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/clock_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/clockid_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/time_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/timer_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdint-intn.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/endian.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/endian.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/byteswap.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/uintn-identity.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/select.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/select.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/sigset_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__sigset_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_timeval.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_timespec.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/pthreadtypes.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/thread-shared-types.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/pthreadtypes-arch.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/alloca.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdlib-bsearch.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdlib-float.h:
|
||||
|
||||
xmltok.h:
|
||||
|
||||
nametab.h:
|
||||
|
||||
xmltok_impl.h:
|
||||
|
||||
ascii.h:
|
||||
|
||||
xmltok_impl.c:
|
||||
|
||||
asciitab.h:
|
||||
|
||||
utf8tab.h:
|
||||
|
||||
iasciitab.h:
|
||||
|
||||
latin1tab.h:
|
||||
|
||||
xmltok_ns.c:
|
Binary file not shown.
|
@ -1 +0,0 @@
|
|||
../libexpat.la
|
|
@ -1,41 +0,0 @@
|
|||
# libexpat.la - a libtool library file
|
||||
# Generated by libtool (GNU libtool) 2.5.3
|
||||
#
|
||||
# Please DO NOT delete this file!
|
||||
# It is necessary for linking the library.
|
||||
|
||||
# The name that we can dlopen(3).
|
||||
dlname='libexpat.so.1'
|
||||
|
||||
# Names of this library.
|
||||
library_names='libexpat.so.1.10.0 libexpat.so.1 libexpat.so'
|
||||
|
||||
# The name of the static archive.
|
||||
old_library='libexpat.a'
|
||||
|
||||
# Linker flags that cannot go in dependency_libs.
|
||||
inherited_linker_flags=''
|
||||
|
||||
# Libraries that this one depends upon.
|
||||
dependency_libs=' -lm'
|
||||
|
||||
# Names of additional weak libraries provided by this library
|
||||
weak_library_names=''
|
||||
|
||||
# Version information for libexpat.
|
||||
current=11
|
||||
age=10
|
||||
revision=0
|
||||
|
||||
# Is this an already installed library?
|
||||
installed=yes
|
||||
|
||||
# Should we warn about portability when linking against -modules?
|
||||
shouldnotlink=no
|
||||
|
||||
# Files to dlopen/dlpreopen
|
||||
dlopen=''
|
||||
dlpreopen=''
|
||||
|
||||
# Directory that this library needs to be installed in:
|
||||
libdir='/opt/vgisc/6t/workspace/BUILD/build/powerpc64-fsl-linux/lib'
|
|
@ -1 +0,0 @@
|
|||
libexpat.so.1.10.0
|
|
@ -1 +0,0 @@
|
|||
libexpat.so.1.10.0
|
Binary file not shown.
Binary file not shown.
|
@ -1 +0,0 @@
|
|||
../libtestpat.la
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
887
lib/Makefile
887
lib/Makefile
|
@ -1,887 +0,0 @@
|
|||
# Makefile.in generated by automake 1.16.5 from Makefile.am.
|
||||
# lib/Makefile. Generated from Makefile.in by configure.
|
||||
|
||||
# Copyright (C) 1994-2021 Free Software Foundation, Inc.
|
||||
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
# with or without modifications, as long as this notice is preserved.
|
||||
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
||||
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
# PARTICULAR PURPOSE.
|
||||
|
||||
|
||||
|
||||
#
|
||||
# __ __ _
|
||||
# ___\ \/ /_ __ __ _| |_
|
||||
# / _ \\ /| '_ \ / _` | __|
|
||||
# | __// \| |_) | (_| | |_
|
||||
# \___/_/\_\ .__/ \__,_|\__|
|
||||
# |_| XML parser
|
||||
#
|
||||
# Copyright (c) 2017-2024 Sebastian Pipping <sebastian@pipping.org>
|
||||
# Copyright (c) 2017 Tomasz Kłoczko <kloczek@fedoraproject.org>
|
||||
# Copyright (c) 2019 David Loffredo <loffredo@steptools.com>
|
||||
# Licensed under the MIT license:
|
||||
#
|
||||
# Permission is hereby granted, free of charge, to any person obtaining
|
||||
# a copy of this software and associated documentation files (the
|
||||
# "Software"), to deal in the Software without restriction, including
|
||||
# without limitation the rights to use, copy, modify, merge, publish,
|
||||
# distribute, sublicense, and/or sell copies of the Software, and to permit
|
||||
# persons to whom the Software is furnished to do so, subject to the
|
||||
# following conditions:
|
||||
#
|
||||
# The above copyright notice and this permission notice shall be included
|
||||
# in all copies or substantial portions of the Software.
|
||||
#
|
||||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
|
||||
# NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
||||
# DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
||||
# OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
||||
# USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
|
||||
|
||||
|
||||
am__is_gnu_make = { \
|
||||
if test -z '$(MAKELEVEL)'; then \
|
||||
false; \
|
||||
elif test -n '$(MAKE_HOST)'; then \
|
||||
true; \
|
||||
elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
|
||||
true; \
|
||||
else \
|
||||
false; \
|
||||
fi; \
|
||||
}
|
||||
am__make_running_with_option = \
|
||||
case $${target_option-} in \
|
||||
?) ;; \
|
||||
*) echo "am__make_running_with_option: internal error: invalid" \
|
||||
"target option '$${target_option-}' specified" >&2; \
|
||||
exit 1;; \
|
||||
esac; \
|
||||
has_opt=no; \
|
||||
sane_makeflags=$$MAKEFLAGS; \
|
||||
if $(am__is_gnu_make); then \
|
||||
sane_makeflags=$$MFLAGS; \
|
||||
else \
|
||||
case $$MAKEFLAGS in \
|
||||
*\\[\ \ ]*) \
|
||||
bs=\\; \
|
||||
sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
|
||||
| sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
|
||||
esac; \
|
||||
fi; \
|
||||
skip_next=no; \
|
||||
strip_trailopt () \
|
||||
{ \
|
||||
flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
|
||||
}; \
|
||||
for flg in $$sane_makeflags; do \
|
||||
test $$skip_next = yes && { skip_next=no; continue; }; \
|
||||
case $$flg in \
|
||||
*=*|--*) continue;; \
|
||||
-*I) strip_trailopt 'I'; skip_next=yes;; \
|
||||
-*I?*) strip_trailopt 'I';; \
|
||||
-*O) strip_trailopt 'O'; skip_next=yes;; \
|
||||
-*O?*) strip_trailopt 'O';; \
|
||||
-*l) strip_trailopt 'l'; skip_next=yes;; \
|
||||
-*l?*) strip_trailopt 'l';; \
|
||||
-[dEDm]) skip_next=yes;; \
|
||||
-[JT]) skip_next=yes;; \
|
||||
esac; \
|
||||
case $$flg in \
|
||||
*$$target_option*) has_opt=yes; break;; \
|
||||
esac; \
|
||||
done; \
|
||||
test $$has_opt = yes
|
||||
am__make_dryrun = (target_option=n; $(am__make_running_with_option))
|
||||
am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
|
||||
pkgdatadir = $(datadir)/expat
|
||||
pkgincludedir = $(includedir)/expat
|
||||
pkglibdir = $(libdir)/expat
|
||||
pkglibexecdir = $(libexecdir)/expat
|
||||
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
||||
install_sh_DATA = $(install_sh) -c -m 644
|
||||
install_sh_PROGRAM = $(install_sh) -c
|
||||
install_sh_SCRIPT = $(install_sh) -c
|
||||
INSTALL_HEADER = $(INSTALL_DATA)
|
||||
transform = $(program_transform_name)
|
||||
NORMAL_INSTALL = :
|
||||
PRE_INSTALL = :
|
||||
POST_INSTALL = :
|
||||
NORMAL_UNINSTALL = :
|
||||
PRE_UNINSTALL = :
|
||||
POST_UNINSTALL = :
|
||||
build_triplet = x86_64-pc-linux-gnu
|
||||
host_triplet = powerpc64-fsl-linux-gnu
|
||||
subdir = lib
|
||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||
am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
|
||||
$(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
|
||||
$(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
|
||||
$(top_srcdir)/acinclude.m4 \
|
||||
$(top_srcdir)/conftools/ax-require-defined.m4 \
|
||||
$(top_srcdir)/conftools/ax-check-compile-flag.m4 \
|
||||
$(top_srcdir)/conftools/ax-check-link-flag.m4 \
|
||||
$(top_srcdir)/conftools/ax-append-flag.m4 \
|
||||
$(top_srcdir)/conftools/ax-append-compile-flags.m4 \
|
||||
$(top_srcdir)/conftools/ax-append-link-flags.m4 \
|
||||
$(top_srcdir)/conftools/expatcfg-compiler-supports-visibility.m4 \
|
||||
$(top_srcdir)/conftools/ax-cxx-compile-stdcxx.m4 \
|
||||
$(top_srcdir)/conftools/ax-cxx-compile-stdcxx-11.m4 \
|
||||
$(top_srcdir)/configure.ac
|
||||
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
||||
$(ACLOCAL_M4)
|
||||
DIST_COMMON = $(srcdir)/Makefile.am $(include_HEADERS) \
|
||||
$(am__DIST_COMMON)
|
||||
mkinstalldirs = $(install_sh) -d
|
||||
CONFIG_HEADER = $(top_builddir)/expat_config.h
|
||||
CONFIG_CLEAN_FILES =
|
||||
CONFIG_CLEAN_VPATH_FILES =
|
||||
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
|
||||
am__vpath_adj = case $$p in \
|
||||
$(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
|
||||
*) f=$$p;; \
|
||||
esac;
|
||||
am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
|
||||
am__install_max = 40
|
||||
am__nobase_strip_setup = \
|
||||
srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
|
||||
am__nobase_strip = \
|
||||
for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
|
||||
am__nobase_list = $(am__nobase_strip_setup); \
|
||||
for p in $$list; do echo "$$p $$p"; done | \
|
||||
sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
|
||||
$(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
|
||||
if (++n[$$2] == $(am__install_max)) \
|
||||
{ print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
|
||||
END { for (dir in files) print dir, files[dir] }'
|
||||
am__base_list = \
|
||||
sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
|
||||
sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
|
||||
am__uninstall_files_from_dir = { \
|
||||
test -z "$$files" \
|
||||
|| { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
|
||||
|| { echo " ( cd '$$dir' && rm -f" $$files ")"; \
|
||||
$(am__cd) "$$dir" && rm -f $$files; }; \
|
||||
}
|
||||
am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(docdir)" \
|
||||
"$(DESTDIR)$(includedir)"
|
||||
LTLIBRARIES = $(lib_LTLIBRARIES) $(noinst_LTLIBRARIES)
|
||||
libexpat_la_LIBADD =
|
||||
am_libexpat_la_OBJECTS = xmlparse.lo xmltok.lo xmlrole.lo
|
||||
libexpat_la_OBJECTS = $(am_libexpat_la_OBJECTS)
|
||||
AM_V_lt = $(am__v_lt_$(V))
|
||||
am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY))
|
||||
am__v_lt_0 = --silent
|
||||
am__v_lt_1 =
|
||||
libexpat_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
|
||||
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
|
||||
$(libexpat_la_LDFLAGS) $(LDFLAGS) -o $@
|
||||
libtestpat_la_LIBADD =
|
||||
am__libtestpat_la_SOURCES_DIST = xmlparse.c xmltok.c xmlrole.c
|
||||
am__objects_1 = libtestpat_la-xmlparse.lo libtestpat_la-xmltok.lo \
|
||||
libtestpat_la-xmlrole.lo
|
||||
am_libtestpat_la_OBJECTS = $(am__objects_1)
|
||||
libtestpat_la_OBJECTS = $(am_libtestpat_la_OBJECTS)
|
||||
am_libtestpat_la_rpath =
|
||||
AM_V_P = $(am__v_P_$(V))
|
||||
am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY))
|
||||
am__v_P_0 = false
|
||||
am__v_P_1 = :
|
||||
AM_V_GEN = $(am__v_GEN_$(V))
|
||||
am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
|
||||
am__v_GEN_0 = @echo " GEN " $@;
|
||||
am__v_GEN_1 =
|
||||
AM_V_at = $(am__v_at_$(V))
|
||||
am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
|
||||
am__v_at_0 = @
|
||||
am__v_at_1 =
|
||||
DEFAULT_INCLUDES = -I. -I$(top_builddir)
|
||||
depcomp = $(SHELL) $(top_srcdir)/conftools/depcomp
|
||||
am__maybe_remake_depfiles = depfiles
|
||||
am__depfiles_remade = ./$(DEPDIR)/libtestpat_la-xmlparse.Plo \
|
||||
./$(DEPDIR)/libtestpat_la-xmlrole.Plo \
|
||||
./$(DEPDIR)/libtestpat_la-xmltok.Plo ./$(DEPDIR)/xmlparse.Plo \
|
||||
./$(DEPDIR)/xmlrole.Plo ./$(DEPDIR)/xmltok.Plo
|
||||
am__mv = mv -f
|
||||
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
|
||||
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
||||
LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
|
||||
$(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
|
||||
$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
|
||||
$(AM_CFLAGS) $(CFLAGS)
|
||||
AM_V_CC = $(am__v_CC_$(V))
|
||||
am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY))
|
||||
am__v_CC_0 = @echo " CC " $@;
|
||||
am__v_CC_1 =
|
||||
CCLD = $(CC)
|
||||
LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
|
||||
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
|
||||
$(AM_LDFLAGS) $(LDFLAGS) -o $@
|
||||
AM_V_CCLD = $(am__v_CCLD_$(V))
|
||||
am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY))
|
||||
am__v_CCLD_0 = @echo " CCLD " $@;
|
||||
am__v_CCLD_1 =
|
||||
SOURCES = $(libexpat_la_SOURCES) $(libtestpat_la_SOURCES)
|
||||
DIST_SOURCES = $(libexpat_la_SOURCES) \
|
||||
$(am__libtestpat_la_SOURCES_DIST)
|
||||
am__can_run_installinfo = \
|
||||
case $$AM_UPDATE_INFO_DIR in \
|
||||
n|no|NO) false;; \
|
||||
*) (install-info --version) >/dev/null 2>&1;; \
|
||||
esac
|
||||
DATA = $(doc_DATA)
|
||||
HEADERS = $(include_HEADERS)
|
||||
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
|
||||
# Read a list of newline-separated strings from the standard input,
|
||||
# and print each of them once, without duplicates. Input order is
|
||||
# *not* preserved.
|
||||
am__uniquify_input = $(AWK) '\
|
||||
BEGIN { nonempty = 0; } \
|
||||
{ items[$$0] = 1; nonempty = 1; } \
|
||||
END { if (nonempty) { for (i in items) print i; }; } \
|
||||
'
|
||||
# Make sure the list of sources is unique. This is necessary because,
|
||||
# e.g., the same source file might be shared among _SOURCES variables
|
||||
# for different programs/libraries.
|
||||
am__define_uniq_tagged_files = \
|
||||
list='$(am__tagged_files)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | $(am__uniquify_input)`
|
||||
am__DIST_COMMON = $(srcdir)/Makefile.in \
|
||||
$(top_srcdir)/conftools/depcomp
|
||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||
ACLOCAL = ${SHELL} '/opt/vgisc/6t/workspace/UTIL/src/expat-2.6.4/conftools/missing' aclocal-1.16
|
||||
AMTAR = $${TAR-tar}
|
||||
AM_CFLAGS = -Wall -Wextra -fexceptions -fno-strict-aliasing -Wmissing-prototypes -Wstrict-prototypes -pedantic -Wduplicated-cond -Wduplicated-branches -Wlogical-op -Wrestrict -Wnull-dereference -Wjump-misses-init -Wdouble-promotion -Wshadow -Wformat=2 -Wno-pedantic-ms-format -Wmisleading-indentation -fvisibility=hidden
|
||||
AM_CPPFLAGS = -DXML_ENABLE_VISIBILITY=1
|
||||
AM_CXXFLAGS = -Wall -Wextra -fexceptions -fno-strict-aliasing
|
||||
AM_DEFAULT_VERBOSITY = 1
|
||||
AM_LDFLAGS = -fno-strict-aliasing
|
||||
AR = powerpc64-fsl-linux-ar
|
||||
AS = powerpc64-fsl-linux-as
|
||||
AUTOCONF = ${SHELL} '/opt/vgisc/6t/workspace/UTIL/src/expat-2.6.4/conftools/missing' autoconf
|
||||
AUTOHEADER = ${SHELL} '/opt/vgisc/6t/workspace/UTIL/src/expat-2.6.4/conftools/missing' autoheader
|
||||
AUTOMAKE = ${SHELL} '/opt/vgisc/6t/workspace/UTIL/src/expat-2.6.4/conftools/missing' automake-1.16
|
||||
AWK = gawk
|
||||
CC = powerpc64-fsl-linux-gcc -mbig-endian -mhard-float -m64 -mcpu=e6500 --sysroot=/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux
|
||||
CCDEPMODE = depmode=gcc3
|
||||
CFLAGS = -O2 -pipe -g -feliminate-unused-debug-types
|
||||
CMAKE_SHARED_LIBRARY_PREFIX = lib
|
||||
CPPFLAGS =
|
||||
CSCOPE = cscope
|
||||
CTAGS = ctags
|
||||
CXX = powerpc64-fsl-linux-g++ -mbig-endian -mhard-float -m64 -mcpu=e6500 --sysroot=/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux -std=c++11
|
||||
CXXCPP = powerpc64-fsl-linux-g++ -mbig-endian -mhard-float -m64 -mcpu=e6500 --sysroot=/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux -E -std=c++11
|
||||
CXXDEPMODE = depmode=gcc3
|
||||
CXXFLAGS = -O2 -pipe -g -feliminate-unused-debug-types
|
||||
CYGPATH_W = echo
|
||||
DEFS = -DHAVE_CONFIG_H
|
||||
DEPDIR = .deps
|
||||
DLLTOOL = false
|
||||
DOCBOOK_TO_MAN =
|
||||
DSYMUTIL =
|
||||
DUMPBIN =
|
||||
ECHO_C =
|
||||
ECHO_N = -n
|
||||
ECHO_T =
|
||||
EGREP = /usr/bin/grep -E
|
||||
ETAGS = etags
|
||||
EXEEXT =
|
||||
EXPAT_ATTR_INFO = OFF
|
||||
EXPAT_CHAR_TYPE = char
|
||||
EXPAT_CONTEXT_BYTES = 1024
|
||||
EXPAT_DTD = ON
|
||||
EXPAT_LARGE_SIZE = OFF
|
||||
EXPAT_MIN_SIZE = OFF
|
||||
EXPAT_NS = ON
|
||||
FGREP = /usr/bin/grep -F
|
||||
FILECMD = file
|
||||
FILEMAP = unixfilemap
|
||||
GREP = /usr/bin/grep
|
||||
HAVE_CXX11 = 1
|
||||
INSTALL = /usr/bin/install -c
|
||||
INSTALL_DATA = ${INSTALL} -m 644
|
||||
INSTALL_PROGRAM = ${INSTALL}
|
||||
INSTALL_SCRIPT = ${INSTALL}
|
||||
INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
|
||||
LD = powerpc64-fsl-linux-ld --sysroot=/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux -m elf64ppc
|
||||
LDFLAGS = -Wl,-O1 -Wl,--hash-style=gnu -Wl,--as-needed
|
||||
LIBAGE = 10
|
||||
LIBCURRENT = 11
|
||||
LIBDIR_BASENAME = lib
|
||||
LIBM = -lm
|
||||
LIBOBJS =
|
||||
LIBREVISION = 0
|
||||
LIBS =
|
||||
LIBTOOL = $(SHELL) $(top_builddir)/libtool
|
||||
LIPO =
|
||||
LN_S = ln -s
|
||||
LTLIBOBJS =
|
||||
LT_SYS_LIBRARY_PATH =
|
||||
MAINT =
|
||||
MAKEINFO = ${SHELL} '/opt/vgisc/6t/workspace/UTIL/src/expat-2.6.4/conftools/missing' makeinfo
|
||||
MANIFEST_TOOL = :
|
||||
MKDIR_P = /usr/bin/mkdir -p
|
||||
NM = powerpc64-fsl-linux-nm
|
||||
NMEDIT =
|
||||
OBJDUMP = powerpc64-fsl-linux-objdump
|
||||
OBJEXT = o
|
||||
OTOOL =
|
||||
OTOOL64 =
|
||||
PACKAGE = expat
|
||||
PACKAGE_BUGREPORT = https://github.com/libexpat/libexpat/issues
|
||||
PACKAGE_NAME = expat
|
||||
PACKAGE_STRING = expat 2.6.4
|
||||
PACKAGE_TARNAME = expat
|
||||
PACKAGE_URL =
|
||||
PACKAGE_VERSION = 2.6.4
|
||||
PATH_SEPARATOR = :
|
||||
RANLIB = powerpc64-fsl-linux-ranlib
|
||||
SED = sed
|
||||
SET_MAKE =
|
||||
SHELL = /bin/bash
|
||||
SIZEOF_VOID_P = 8
|
||||
SO_MAJOR = 1
|
||||
SO_MINOR = 10
|
||||
SO_PATCH = 0
|
||||
STRIP = powerpc64-fsl-linux-strip
|
||||
VERSION = 2.6.4
|
||||
abs_builddir = /opt/vgisc/6t/workspace/UTIL/src/expat-2.6.4/lib
|
||||
abs_srcdir = /opt/vgisc/6t/workspace/UTIL/src/expat-2.6.4/lib
|
||||
abs_top_builddir = /opt/vgisc/6t/workspace/UTIL/src/expat-2.6.4
|
||||
abs_top_srcdir = /opt/vgisc/6t/workspace/UTIL/src/expat-2.6.4
|
||||
ac_ct_AR =
|
||||
ac_ct_CC =
|
||||
ac_ct_CXX =
|
||||
ac_ct_DUMPBIN =
|
||||
am__include = include
|
||||
am__leading_dot = .
|
||||
am__quote =
|
||||
am__tar = $${TAR-tar} chof - "$$tardir"
|
||||
am__untar = $${TAR-tar} xf -
|
||||
bindir = ${exec_prefix}/bin
|
||||
build = x86_64-pc-linux-gnu
|
||||
build_alias =
|
||||
build_cpu = x86_64
|
||||
build_os = linux-gnu
|
||||
build_vendor = pc
|
||||
builddir = .
|
||||
datadir = ${datarootdir}
|
||||
datarootdir = ${prefix}/share
|
||||
docdir = ${datarootdir}/doc/${PACKAGE_TARNAME}
|
||||
dvidir = ${docdir}
|
||||
exec_prefix = ${prefix}
|
||||
host = powerpc64-fsl-linux-gnu
|
||||
host_alias = powerpc64-fsl-linux
|
||||
host_cpu = powerpc64
|
||||
host_os = linux-gnu
|
||||
host_vendor = fsl
|
||||
htmldir = ${docdir}
|
||||
includedir = ${prefix}/include
|
||||
infodir = ${datarootdir}/info
|
||||
install_sh = ${SHELL} /opt/vgisc/6t/workspace/UTIL/src/expat-2.6.4/conftools/install-sh
|
||||
libdir = ${exec_prefix}/lib
|
||||
libexecdir = ${exec_prefix}/libexec
|
||||
localedir = ${datarootdir}/locale
|
||||
localstatedir = ${prefix}/var
|
||||
mandir = ${datarootdir}/man
|
||||
mkdir_p = $(MKDIR_P)
|
||||
oldincludedir = /usr/include
|
||||
pdfdir = ${docdir}
|
||||
prefix = /opt/vgisc/6t/workspace/BUILD/build/powerpc64-fsl-linux
|
||||
program_transform_name = s,x,x,
|
||||
psdir = ${docdir}
|
||||
runstatedir = ${localstatedir}/run
|
||||
sbindir = ${exec_prefix}/sbin
|
||||
sharedstatedir = ${prefix}/com
|
||||
srcdir = .
|
||||
sysconfdir = ${prefix}/etc
|
||||
target_alias =
|
||||
top_build_prefix = ../
|
||||
top_builddir = ..
|
||||
top_srcdir = ..
|
||||
include_HEADERS = \
|
||||
../expat_config.h \
|
||||
expat.h \
|
||||
expat_external.h
|
||||
|
||||
lib_LTLIBRARIES = libexpat.la
|
||||
noinst_LTLIBRARIES = libtestpat.la
|
||||
libexpat_la_LDFLAGS = \
|
||||
-fno-strict-aliasing \
|
||||
-lm \
|
||||
-no-undefined \
|
||||
-version-info 11:0:10
|
||||
|
||||
libexpat_la_SOURCES = \
|
||||
xmlparse.c \
|
||||
xmltok.c \
|
||||
xmlrole.c
|
||||
|
||||
libtestpat_la_CPPFLAGS = -DXML_TESTING
|
||||
libtestpat_la_SOURCES = $(libexpat_la_SOURCES)
|
||||
doc_DATA = \
|
||||
../AUTHORS \
|
||||
../Changes
|
||||
|
||||
EXTRA_DIST = \
|
||||
ascii.h \
|
||||
asciitab.h \
|
||||
expat_external.h \
|
||||
expat.h \
|
||||
iasciitab.h \
|
||||
internal.h \
|
||||
latin1tab.h \
|
||||
libexpat.def.cmake \
|
||||
nametab.h \
|
||||
siphash.h \
|
||||
utf8tab.h \
|
||||
winconfig.h \
|
||||
xmlrole.h \
|
||||
xmltok.h \
|
||||
xmltok_impl.c \
|
||||
xmltok_impl.h \
|
||||
xmltok_ns.c
|
||||
|
||||
all: all-am
|
||||
|
||||
.SUFFIXES:
|
||||
.SUFFIXES: .c .lo .o .obj
|
||||
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
|
||||
@for dep in $?; do \
|
||||
case '$(am__configure_deps)' in \
|
||||
*$$dep*) \
|
||||
( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
|
||||
&& { if test -f $@; then exit 0; else break; fi; }; \
|
||||
exit 1;; \
|
||||
esac; \
|
||||
done; \
|
||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu lib/Makefile'; \
|
||||
$(am__cd) $(top_srcdir) && \
|
||||
$(AUTOMAKE) --gnu lib/Makefile
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||
@case '$?' in \
|
||||
*config.status*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
|
||||
esac;
|
||||
|
||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
|
||||
$(top_srcdir)/configure: $(am__configure_deps)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
$(am__aclocal_m4_deps):
|
||||
|
||||
install-libLTLIBRARIES: $(lib_LTLIBRARIES)
|
||||
@$(NORMAL_INSTALL)
|
||||
@list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
|
||||
list2=; for p in $$list; do \
|
||||
if test -f $$p; then \
|
||||
list2="$$list2 $$p"; \
|
||||
else :; fi; \
|
||||
done; \
|
||||
test -z "$$list2" || { \
|
||||
echo " $(MKDIR_P) '$(DESTDIR)$(libdir)'"; \
|
||||
$(MKDIR_P) "$(DESTDIR)$(libdir)" || exit 1; \
|
||||
echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \
|
||||
$(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \
|
||||
}
|
||||
|
||||
uninstall-libLTLIBRARIES:
|
||||
@$(NORMAL_UNINSTALL)
|
||||
@list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
|
||||
for p in $$list; do \
|
||||
$(am__strip_dir) \
|
||||
echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \
|
||||
$(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \
|
||||
done
|
||||
|
||||
clean-libLTLIBRARIES:
|
||||
-test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES)
|
||||
@list='$(lib_LTLIBRARIES)'; \
|
||||
locs=`for p in $$list; do echo $$p; done | \
|
||||
sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
|
||||
sort -u`; \
|
||||
test -z "$$locs" || { \
|
||||
echo rm -f $${locs}; \
|
||||
rm -f $${locs}; \
|
||||
}
|
||||
|
||||
clean-noinstLTLIBRARIES:
|
||||
-test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES)
|
||||
@list='$(noinst_LTLIBRARIES)'; \
|
||||
locs=`for p in $$list; do echo $$p; done | \
|
||||
sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
|
||||
sort -u`; \
|
||||
test -z "$$locs" || { \
|
||||
echo rm -f $${locs}; \
|
||||
rm -f $${locs}; \
|
||||
}
|
||||
|
||||
libexpat.la: $(libexpat_la_OBJECTS) $(libexpat_la_DEPENDENCIES) $(EXTRA_libexpat_la_DEPENDENCIES)
|
||||
$(AM_V_CCLD)$(libexpat_la_LINK) -rpath $(libdir) $(libexpat_la_OBJECTS) $(libexpat_la_LIBADD) $(LIBS)
|
||||
|
||||
libtestpat.la: $(libtestpat_la_OBJECTS) $(libtestpat_la_DEPENDENCIES) $(EXTRA_libtestpat_la_DEPENDENCIES)
|
||||
$(AM_V_CCLD)$(LINK) $(am_libtestpat_la_rpath) $(libtestpat_la_OBJECTS) $(libtestpat_la_LIBADD) $(LIBS)
|
||||
|
||||
mostlyclean-compile:
|
||||
-rm -f *.$(OBJEXT)
|
||||
|
||||
distclean-compile:
|
||||
-rm -f *.tab.c
|
||||
|
||||
include ./$(DEPDIR)/libtestpat_la-xmlparse.Plo # am--include-marker
|
||||
include ./$(DEPDIR)/libtestpat_la-xmlrole.Plo # am--include-marker
|
||||
include ./$(DEPDIR)/libtestpat_la-xmltok.Plo # am--include-marker
|
||||
include ./$(DEPDIR)/xmlparse.Plo # am--include-marker
|
||||
include ./$(DEPDIR)/xmlrole.Plo # am--include-marker
|
||||
include ./$(DEPDIR)/xmltok.Plo # am--include-marker
|
||||
|
||||
$(am__depfiles_remade):
|
||||
@$(MKDIR_P) $(@D)
|
||||
@echo '# dummy' >$@-t && $(am__mv) $@-t $@
|
||||
|
||||
am--depfiles: $(am__depfiles_remade)
|
||||
|
||||
.c.o:
|
||||
$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
|
||||
$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
|
||||
# $(AM_V_CC)source='$<' object='$@' libtool=no \
|
||||
# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
|
||||
# $(AM_V_CC_no)$(COMPILE) -c -o $@ $<
|
||||
|
||||
.c.obj:
|
||||
$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
|
||||
$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
|
||||
# $(AM_V_CC)source='$<' object='$@' libtool=no \
|
||||
# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
|
||||
# $(AM_V_CC_no)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
|
||||
|
||||
.c.lo:
|
||||
$(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
|
||||
$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
|
||||
# $(AM_V_CC)source='$<' object='$@' libtool=yes \
|
||||
# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
|
||||
# $(AM_V_CC_no)$(LTCOMPILE) -c -o $@ $<
|
||||
|
||||
libtestpat_la-xmlparse.lo: xmlparse.c
|
||||
$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libtestpat_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libtestpat_la-xmlparse.lo -MD -MP -MF $(DEPDIR)/libtestpat_la-xmlparse.Tpo -c -o libtestpat_la-xmlparse.lo `test -f 'xmlparse.c' || echo '$(srcdir)/'`xmlparse.c
|
||||
$(AM_V_at)$(am__mv) $(DEPDIR)/libtestpat_la-xmlparse.Tpo $(DEPDIR)/libtestpat_la-xmlparse.Plo
|
||||
# $(AM_V_CC)source='xmlparse.c' object='libtestpat_la-xmlparse.lo' libtool=yes \
|
||||
# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
|
||||
# $(AM_V_CC_no)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libtestpat_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libtestpat_la-xmlparse.lo `test -f 'xmlparse.c' || echo '$(srcdir)/'`xmlparse.c
|
||||
|
||||
libtestpat_la-xmltok.lo: xmltok.c
|
||||
$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libtestpat_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libtestpat_la-xmltok.lo -MD -MP -MF $(DEPDIR)/libtestpat_la-xmltok.Tpo -c -o libtestpat_la-xmltok.lo `test -f 'xmltok.c' || echo '$(srcdir)/'`xmltok.c
|
||||
$(AM_V_at)$(am__mv) $(DEPDIR)/libtestpat_la-xmltok.Tpo $(DEPDIR)/libtestpat_la-xmltok.Plo
|
||||
# $(AM_V_CC)source='xmltok.c' object='libtestpat_la-xmltok.lo' libtool=yes \
|
||||
# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
|
||||
# $(AM_V_CC_no)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libtestpat_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libtestpat_la-xmltok.lo `test -f 'xmltok.c' || echo '$(srcdir)/'`xmltok.c
|
||||
|
||||
libtestpat_la-xmlrole.lo: xmlrole.c
|
||||
$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libtestpat_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libtestpat_la-xmlrole.lo -MD -MP -MF $(DEPDIR)/libtestpat_la-xmlrole.Tpo -c -o libtestpat_la-xmlrole.lo `test -f 'xmlrole.c' || echo '$(srcdir)/'`xmlrole.c
|
||||
$(AM_V_at)$(am__mv) $(DEPDIR)/libtestpat_la-xmlrole.Tpo $(DEPDIR)/libtestpat_la-xmlrole.Plo
|
||||
# $(AM_V_CC)source='xmlrole.c' object='libtestpat_la-xmlrole.lo' libtool=yes \
|
||||
# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
|
||||
# $(AM_V_CC_no)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libtestpat_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libtestpat_la-xmlrole.lo `test -f 'xmlrole.c' || echo '$(srcdir)/'`xmlrole.c
|
||||
|
||||
mostlyclean-libtool:
|
||||
-rm -f *.lo
|
||||
|
||||
clean-libtool:
|
||||
-rm -rf .libs _libs
|
||||
install-docDATA: $(doc_DATA)
|
||||
@$(NORMAL_INSTALL)
|
||||
@list='$(doc_DATA)'; test -n "$(docdir)" || list=; \
|
||||
if test -n "$$list"; then \
|
||||
echo " $(MKDIR_P) '$(DESTDIR)$(docdir)'"; \
|
||||
$(MKDIR_P) "$(DESTDIR)$(docdir)" || exit 1; \
|
||||
fi; \
|
||||
for p in $$list; do \
|
||||
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
|
||||
echo "$$d$$p"; \
|
||||
done | $(am__base_list) | \
|
||||
while read files; do \
|
||||
echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(docdir)'"; \
|
||||
$(INSTALL_DATA) $$files "$(DESTDIR)$(docdir)" || exit $$?; \
|
||||
done
|
||||
|
||||
uninstall-docDATA:
|
||||
@$(NORMAL_UNINSTALL)
|
||||
@list='$(doc_DATA)'; test -n "$(docdir)" || list=; \
|
||||
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
|
||||
dir='$(DESTDIR)$(docdir)'; $(am__uninstall_files_from_dir)
|
||||
install-includeHEADERS: $(include_HEADERS)
|
||||
@$(NORMAL_INSTALL)
|
||||
@list='$(include_HEADERS)'; test -n "$(includedir)" || list=; \
|
||||
if test -n "$$list"; then \
|
||||
echo " $(MKDIR_P) '$(DESTDIR)$(includedir)'"; \
|
||||
$(MKDIR_P) "$(DESTDIR)$(includedir)" || exit 1; \
|
||||
fi; \
|
||||
for p in $$list; do \
|
||||
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
|
||||
echo "$$d$$p"; \
|
||||
done | $(am__base_list) | \
|
||||
while read files; do \
|
||||
echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(includedir)'"; \
|
||||
$(INSTALL_HEADER) $$files "$(DESTDIR)$(includedir)" || exit $$?; \
|
||||
done
|
||||
|
||||
uninstall-includeHEADERS:
|
||||
@$(NORMAL_UNINSTALL)
|
||||
@list='$(include_HEADERS)'; test -n "$(includedir)" || list=; \
|
||||
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
|
||||
dir='$(DESTDIR)$(includedir)'; $(am__uninstall_files_from_dir)
|
||||
|
||||
ID: $(am__tagged_files)
|
||||
$(am__define_uniq_tagged_files); mkid -fID $$unique
|
||||
tags: tags-am
|
||||
TAGS: tags
|
||||
|
||||
tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
|
||||
set x; \
|
||||
here=`pwd`; \
|
||||
$(am__define_uniq_tagged_files); \
|
||||
shift; \
|
||||
if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
|
||||
test -n "$$unique" || unique=$$empty_fix; \
|
||||
if test $$# -gt 0; then \
|
||||
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
||||
"$$@" $$unique; \
|
||||
else \
|
||||
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
||||
$$unique; \
|
||||
fi; \
|
||||
fi
|
||||
ctags: ctags-am
|
||||
|
||||
CTAGS: ctags
|
||||
ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
|
||||
$(am__define_uniq_tagged_files); \
|
||||
test -z "$(CTAGS_ARGS)$$unique" \
|
||||
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
|
||||
$$unique
|
||||
|
||||
GTAGS:
|
||||
here=`$(am__cd) $(top_builddir) && pwd` \
|
||||
&& $(am__cd) $(top_srcdir) \
|
||||
&& gtags -i $(GTAGS_ARGS) "$$here"
|
||||
cscopelist: cscopelist-am
|
||||
|
||||
cscopelist-am: $(am__tagged_files)
|
||||
list='$(am__tagged_files)'; \
|
||||
case "$(srcdir)" in \
|
||||
[\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
|
||||
*) sdir=$(subdir)/$(srcdir) ;; \
|
||||
esac; \
|
||||
for i in $$list; do \
|
||||
if test -f "$$i"; then \
|
||||
echo "$(subdir)/$$i"; \
|
||||
else \
|
||||
echo "$$sdir/$$i"; \
|
||||
fi; \
|
||||
done >> $(top_builddir)/cscope.files
|
||||
|
||||
distclean-tags:
|
||||
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
||||
distdir: $(BUILT_SOURCES)
|
||||
$(MAKE) $(AM_MAKEFLAGS) distdir-am
|
||||
|
||||
distdir-am: $(DISTFILES)
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
list='$(DISTFILES)'; \
|
||||
dist_files=`for file in $$list; do echo $$file; done | \
|
||||
sed -e "s|^$$srcdirstrip/||;t" \
|
||||
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
|
||||
case $$dist_files in \
|
||||
*/*) $(MKDIR_P) `echo "$$dist_files" | \
|
||||
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
|
||||
sort -u` ;; \
|
||||
esac; \
|
||||
for file in $$dist_files; do \
|
||||
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
||||
if test -d $$d/$$file; then \
|
||||
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
|
||||
if test -d "$(distdir)/$$file"; then \
|
||||
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
||||
fi; \
|
||||
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
||||
cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
|
||||
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
||||
fi; \
|
||||
cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
|
||||
else \
|
||||
test -f "$(distdir)/$$file" \
|
||||
|| cp -p $$d/$$file "$(distdir)/$$file" \
|
||||
|| exit 1; \
|
||||
fi; \
|
||||
done
|
||||
check-am: all-am
|
||||
check: check-am
|
||||
all-am: Makefile $(LTLIBRARIES) $(DATA) $(HEADERS)
|
||||
installdirs:
|
||||
for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(docdir)" "$(DESTDIR)$(includedir)"; do \
|
||||
test -z "$$dir" || $(MKDIR_P) "$$dir"; \
|
||||
done
|
||||
install: install-am
|
||||
install-exec: install-exec-am
|
||||
install-data: install-data-am
|
||||
uninstall: uninstall-am
|
||||
|
||||
install-am: all-am
|
||||
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
||||
|
||||
installcheck: installcheck-am
|
||||
install-strip:
|
||||
if test -z '$(STRIP)'; then \
|
||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
||||
install; \
|
||||
else \
|
||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
||||
"INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
|
||||
fi
|
||||
mostlyclean-generic:
|
||||
|
||||
clean-generic:
|
||||
|
||||
distclean-generic:
|
||||
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
||||
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
|
||||
|
||||
maintainer-clean-generic:
|
||||
@echo "This command is intended for maintainers to use"
|
||||
@echo "it deletes files that may require special tools to rebuild."
|
||||
clean: clean-am
|
||||
|
||||
clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \
|
||||
clean-noinstLTLIBRARIES mostlyclean-am
|
||||
|
||||
distclean: distclean-am
|
||||
-rm -f ./$(DEPDIR)/libtestpat_la-xmlparse.Plo
|
||||
-rm -f ./$(DEPDIR)/libtestpat_la-xmlrole.Plo
|
||||
-rm -f ./$(DEPDIR)/libtestpat_la-xmltok.Plo
|
||||
-rm -f ./$(DEPDIR)/xmlparse.Plo
|
||||
-rm -f ./$(DEPDIR)/xmlrole.Plo
|
||||
-rm -f ./$(DEPDIR)/xmltok.Plo
|
||||
-rm -f Makefile
|
||||
distclean-am: clean-am distclean-compile distclean-generic \
|
||||
distclean-tags
|
||||
|
||||
dvi: dvi-am
|
||||
|
||||
dvi-am:
|
||||
|
||||
html: html-am
|
||||
|
||||
html-am:
|
||||
|
||||
info: info-am
|
||||
|
||||
info-am:
|
||||
|
||||
install-data-am: install-docDATA install-includeHEADERS
|
||||
@$(NORMAL_INSTALL)
|
||||
$(MAKE) $(AM_MAKEFLAGS) install-data-hook
|
||||
install-dvi: install-dvi-am
|
||||
|
||||
install-dvi-am:
|
||||
|
||||
install-exec-am: install-libLTLIBRARIES
|
||||
|
||||
install-html: install-html-am
|
||||
|
||||
install-html-am:
|
||||
|
||||
install-info: install-info-am
|
||||
|
||||
install-info-am:
|
||||
|
||||
install-man:
|
||||
|
||||
install-pdf: install-pdf-am
|
||||
|
||||
install-pdf-am:
|
||||
|
||||
install-ps: install-ps-am
|
||||
|
||||
install-ps-am:
|
||||
|
||||
installcheck-am:
|
||||
|
||||
maintainer-clean: maintainer-clean-am
|
||||
-rm -f ./$(DEPDIR)/libtestpat_la-xmlparse.Plo
|
||||
-rm -f ./$(DEPDIR)/libtestpat_la-xmlrole.Plo
|
||||
-rm -f ./$(DEPDIR)/libtestpat_la-xmltok.Plo
|
||||
-rm -f ./$(DEPDIR)/xmlparse.Plo
|
||||
-rm -f ./$(DEPDIR)/xmlrole.Plo
|
||||
-rm -f ./$(DEPDIR)/xmltok.Plo
|
||||
-rm -f Makefile
|
||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
||||
|
||||
mostlyclean: mostlyclean-am
|
||||
|
||||
mostlyclean-am: mostlyclean-compile mostlyclean-generic \
|
||||
mostlyclean-libtool
|
||||
|
||||
pdf: pdf-am
|
||||
|
||||
pdf-am:
|
||||
|
||||
ps: ps-am
|
||||
|
||||
ps-am:
|
||||
|
||||
uninstall-am: uninstall-docDATA uninstall-includeHEADERS \
|
||||
uninstall-libLTLIBRARIES uninstall-local
|
||||
|
||||
.MAKE: install-am install-data-am install-strip
|
||||
|
||||
.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
|
||||
clean-generic clean-libLTLIBRARIES clean-libtool \
|
||||
clean-noinstLTLIBRARIES cscopelist-am ctags ctags-am distclean \
|
||||
distclean-compile distclean-generic distclean-libtool \
|
||||
distclean-tags distdir dvi dvi-am html html-am info info-am \
|
||||
install install-am install-data install-data-am \
|
||||
install-data-hook install-docDATA install-dvi install-dvi-am \
|
||||
install-exec install-exec-am install-html install-html-am \
|
||||
install-includeHEADERS install-info install-info-am \
|
||||
install-libLTLIBRARIES install-man install-pdf install-pdf-am \
|
||||
install-ps install-ps-am install-strip installcheck \
|
||||
installcheck-am installdirs maintainer-clean \
|
||||
maintainer-clean-generic mostlyclean mostlyclean-compile \
|
||||
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
|
||||
tags tags-am uninstall uninstall-am uninstall-docDATA \
|
||||
uninstall-includeHEADERS uninstall-libLTLIBRARIES \
|
||||
uninstall-local
|
||||
|
||||
.PRECIOUS: Makefile
|
||||
|
||||
|
||||
install-data-hook:
|
||||
cd "$(DESTDIR)$(docdir)" && $(am__mv) Changes changelog
|
||||
|
||||
uninstall-local:
|
||||
$(RM) "$(DESTDIR)$(docdir)/changelog"
|
||||
|
||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||
.NOEXPORT:
|
|
@ -1,41 +0,0 @@
|
|||
# libexpat.la - a libtool library file
|
||||
# Generated by libtool (GNU libtool) 2.5.3
|
||||
#
|
||||
# Please DO NOT delete this file!
|
||||
# It is necessary for linking the library.
|
||||
|
||||
# The name that we can dlopen(3).
|
||||
dlname='libexpat.so.1'
|
||||
|
||||
# Names of this library.
|
||||
library_names='libexpat.so.1.10.0 libexpat.so.1 libexpat.so'
|
||||
|
||||
# The name of the static archive.
|
||||
old_library='libexpat.a'
|
||||
|
||||
# Linker flags that cannot go in dependency_libs.
|
||||
inherited_linker_flags=''
|
||||
|
||||
# Libraries that this one depends upon.
|
||||
dependency_libs=' -lm'
|
||||
|
||||
# Names of additional weak libraries provided by this library
|
||||
weak_library_names=''
|
||||
|
||||
# Version information for libexpat.
|
||||
current=11
|
||||
age=10
|
||||
revision=0
|
||||
|
||||
# Is this an already installed library?
|
||||
installed=no
|
||||
|
||||
# Should we warn about portability when linking against -modules?
|
||||
shouldnotlink=no
|
||||
|
||||
# Files to dlopen/dlpreopen
|
||||
dlopen=''
|
||||
dlpreopen=''
|
||||
|
||||
# Directory that this library needs to be installed in:
|
||||
libdir='/opt/vgisc/6t/workspace/BUILD/build/powerpc64-fsl-linux/lib'
|
|
@ -1,41 +0,0 @@
|
|||
# libtestpat.la - a libtool library file
|
||||
# Generated by libtool (GNU libtool) 2.5.3
|
||||
#
|
||||
# Please DO NOT delete this file!
|
||||
# It is necessary for linking the library.
|
||||
|
||||
# The name that we can dlopen(3).
|
||||
dlname=''
|
||||
|
||||
# Names of this library.
|
||||
library_names=''
|
||||
|
||||
# The name of the static archive.
|
||||
old_library='libtestpat.a'
|
||||
|
||||
# Linker flags that cannot go in dependency_libs.
|
||||
inherited_linker_flags=''
|
||||
|
||||
# Libraries that this one depends upon.
|
||||
dependency_libs=''
|
||||
|
||||
# Names of additional weak libraries provided by this library
|
||||
weak_library_names=''
|
||||
|
||||
# Version information for libtestpat.
|
||||
current=
|
||||
age=
|
||||
revision=
|
||||
|
||||
# Is this an already installed library?
|
||||
installed=no
|
||||
|
||||
# Should we warn about portability when linking against -modules?
|
||||
shouldnotlink=no
|
||||
|
||||
# Files to dlopen/dlpreopen
|
||||
dlopen=''
|
||||
dlpreopen=''
|
||||
|
||||
# Directory that this library needs to be installed in:
|
||||
libdir=''
|
|
@ -1,12 +0,0 @@
|
|||
# libtestpat_la-xmlparse.lo - a libtool object file
|
||||
# Generated by libtool (GNU libtool) 2.5.3
|
||||
#
|
||||
# Please DO NOT delete this file!
|
||||
# It is necessary for linking the library.
|
||||
|
||||
# Name of the PIC object.
|
||||
pic_object='.libs/libtestpat_la-xmlparse.o'
|
||||
|
||||
# Name of the non-PIC object
|
||||
non_pic_object='libtestpat_la-xmlparse.o'
|
||||
|
Binary file not shown.
|
@ -1,12 +0,0 @@
|
|||
# libtestpat_la-xmlrole.lo - a libtool object file
|
||||
# Generated by libtool (GNU libtool) 2.5.3
|
||||
#
|
||||
# Please DO NOT delete this file!
|
||||
# It is necessary for linking the library.
|
||||
|
||||
# Name of the PIC object.
|
||||
pic_object='.libs/libtestpat_la-xmlrole.o'
|
||||
|
||||
# Name of the non-PIC object
|
||||
non_pic_object='libtestpat_la-xmlrole.o'
|
||||
|
Binary file not shown.
|
@ -1,12 +0,0 @@
|
|||
# libtestpat_la-xmltok.lo - a libtool object file
|
||||
# Generated by libtool (GNU libtool) 2.5.3
|
||||
#
|
||||
# Please DO NOT delete this file!
|
||||
# It is necessary for linking the library.
|
||||
|
||||
# Name of the PIC object.
|
||||
pic_object='.libs/libtestpat_la-xmltok.o'
|
||||
|
||||
# Name of the non-PIC object
|
||||
non_pic_object='libtestpat_la-xmltok.o'
|
||||
|
Binary file not shown.
|
@ -1,12 +0,0 @@
|
|||
# xmlparse.lo - a libtool object file
|
||||
# Generated by libtool (GNU libtool) 2.5.3
|
||||
#
|
||||
# Please DO NOT delete this file!
|
||||
# It is necessary for linking the library.
|
||||
|
||||
# Name of the PIC object.
|
||||
pic_object='.libs/xmlparse.o'
|
||||
|
||||
# Name of the non-PIC object
|
||||
non_pic_object='xmlparse.o'
|
||||
|
BIN
lib/xmlparse.o
BIN
lib/xmlparse.o
Binary file not shown.
|
@ -1,12 +0,0 @@
|
|||
# xmlrole.lo - a libtool object file
|
||||
# Generated by libtool (GNU libtool) 2.5.3
|
||||
#
|
||||
# Please DO NOT delete this file!
|
||||
# It is necessary for linking the library.
|
||||
|
||||
# Name of the PIC object.
|
||||
pic_object='.libs/xmlrole.o'
|
||||
|
||||
# Name of the non-PIC object
|
||||
non_pic_object='xmlrole.o'
|
||||
|
BIN
lib/xmlrole.o
BIN
lib/xmlrole.o
Binary file not shown.
|
@ -1,12 +0,0 @@
|
|||
# xmltok.lo - a libtool object file
|
||||
# Generated by libtool (GNU libtool) 2.5.3
|
||||
#
|
||||
# Please DO NOT delete this file!
|
||||
# It is necessary for linking the library.
|
||||
|
||||
# Name of the PIC object.
|
||||
pic_object='.libs/xmltok.o'
|
||||
|
||||
# Name of the non-PIC object
|
||||
non_pic_object='xmltok.o'
|
||||
|
BIN
lib/xmltok.o
BIN
lib/xmltok.o
Binary file not shown.
47
run.sh
47
run.sh
|
@ -1,47 +0,0 @@
|
|||
#! /usr/bin/env bash
|
||||
# __ __ _
|
||||
# ___\ \/ /_ __ __ _| |_
|
||||
# / _ \\ /| '_ \ / _` | __|
|
||||
# | __// \| |_) | (_| | |_
|
||||
# \___/_/\_\ .__/ \__,_|\__|
|
||||
# |_| XML parser
|
||||
#
|
||||
# Copyright (c) 2017-2022 Sebastian Pipping <sebastian@pipping.org>
|
||||
# Licensed under the MIT license:
|
||||
#
|
||||
# Permission is hereby granted, free of charge, to any person obtaining
|
||||
# a copy of this software and associated documentation files (the
|
||||
# "Software"), to deal in the Software without restriction, including
|
||||
# without limitation the rights to use, copy, modify, merge, publish,
|
||||
# distribute, sublicense, and/or sell copies of the Software, and to permit
|
||||
# persons to whom the Software is furnished to do so, subject to the
|
||||
# following conditions:
|
||||
#
|
||||
# The above copyright notice and this permission notice shall be included
|
||||
# in all copies or substantial portions of the Software.
|
||||
#
|
||||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
|
||||
# NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
||||
# DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
||||
# OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
||||
# USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
case "powerpc64-fsl-linux-gnu" in
|
||||
*-mingw*)
|
||||
case "$(uname -o)" in
|
||||
Cygwin|Msys)
|
||||
# Windows binary on Windows host
|
||||
exec "$@"
|
||||
;;
|
||||
*)
|
||||
# Windows binary on non-Windows host
|
||||
exec wine "$@"
|
||||
;;
|
||||
esac
|
||||
;;
|
||||
*)
|
||||
exec "$@"
|
||||
;;
|
||||
esac
|
|
@ -295,42 +295,21 @@ make clean
|
|||
make distclean
|
||||
rm -rf ${SRC_DIR}/${OUTPUT_DIR}
|
||||
rm -rf ${SRC_DIR}/${OUTPUT_DIR}.tar.gz
|
||||
rm -rf *.exe
|
||||
rm -rf *.dll
|
||||
rm -rf zlib2ansi
|
||||
|
||||
echo ""
|
||||
echo "=> Building in source tree: ${SRC_DIR}/..."
|
||||
case "${ARCH_BUILD}" in
|
||||
i686-w64-mingw32)
|
||||
linux-x86_64)
|
||||
./configure --prefix=${PREFIX}
|
||||
make -f win32/Makefile.gcc PREFIX=i686-w64-mingw32-
|
||||
make -f win32/Makefile.gcc PREFIX=i686-w64-mingw32- \
|
||||
SHARED_MODE=1 \
|
||||
INCLUDE_PATH=./${OUTPUT_DIR}${PREFIX}/include \
|
||||
LIBRARY_PATH=./${OUTPUT_DIR}${PREFIX}/lib \
|
||||
BINARY_PATH=./${OUTPUT_DIR}${PREFIX}/bin \
|
||||
install
|
||||
cp -rf ${SRC_DIR}/${OUTPUT_DIR}${PREFIX}/bin/*.dll ${SRC_DIR}/${OUTPUT_DIR}${PREFIX}/lib/
|
||||
;;
|
||||
x86_64-w64-mingw32)
|
||||
./configure --prefix=${PREFIX}
|
||||
make -f win32/Makefile.gcc PREFIX=x86_64-w64-mingw32-
|
||||
make -f win32/Makefile.gcc PREFIX=x86_64-w64-mingw32- \
|
||||
SHARED_MODE=1 \
|
||||
INCLUDE_PATH=./${OUTPUT_DIR}${PREFIX}/include \
|
||||
LIBRARY_PATH=./${OUTPUT_DIR}${PREFIX}/lib \
|
||||
BINARY_PATH=./${OUTPUT_DIR}${PREFIX}/bin \
|
||||
install
|
||||
cp -rf ${SRC_DIR}/${OUTPUT_DIR}${PREFIX}/bin/*.dll ${SRC_DIR}/${OUTPUT_DIR}${PREFIX}/lib/
|
||||
;;
|
||||
*)
|
||||
./configure --prefix=${PREFIX}
|
||||
make
|
||||
make DESTDIR=${SRC_DIR}/${OUTPUT_DIR} install
|
||||
./configure --prefix=${PREFIX} --host=${HOST}
|
||||
;;
|
||||
esac
|
||||
|
||||
make -j8
|
||||
make DESTDIR=${SRC_DIR}/${OUTPUT_DIR} install
|
||||
|
||||
echo ""
|
||||
echo "=> Make output tar.gz file: ${SRC_DIR}/${OUTPUT_DIR}.tar.gz"
|
||||
rm -rf ${SRC_DIR}/${OUTPUT_DIR}.tar.gz
|
||||
|
@ -352,9 +331,6 @@ make clean
|
|||
make distclean
|
||||
rm -rf ${SRC_DIR}/${OUTPUT_DIR}
|
||||
rm -rf ${SRC_DIR}/${OUTPUT_DIR}.tar.gz
|
||||
rm -rf *.exe
|
||||
rm -rf *.dll
|
||||
rm -rf zlib2ansi
|
||||
|
||||
echo ""
|
||||
echo "=> Done."
|
||||
|
|
|
@ -283,7 +283,6 @@ export OUTPUT_DIR=output/${APP_NAME}-${ARCH_BUILD}-${BUILD_TYPE}
|
|||
export ZIP_DIR=${INSTALL_DIR}/zip
|
||||
export RELEASE_DIR=${INSTALL_DIR}/rls/${ARCH_BUILD}/release
|
||||
export STATIC_DIR=${INSTALL_DIR}/rls/${ARCH_BUILD}/static
|
||||
export DYNAMIC_DIR=${INSTALL_DIR}/rls/${ARCH_BUILD}/dynamic
|
||||
export BOOT_DIR=${INSTALL_DIR}/rls/${ARCH_BUILD}/boot
|
||||
export INSTALLERS_DIR=${INSTALL_DIR}/installers
|
||||
|
||||
|
@ -297,46 +296,27 @@ make clean
|
|||
make distclean
|
||||
rm -rf ${SRC_DIR}/${OUTPUT_DIR}
|
||||
rm -rf ${SRC_DIR}/${OUTPUT_DIR}.tar.gz
|
||||
rm -rf *.exe
|
||||
rm -rf *.dll
|
||||
rm -rf zlib2ansi
|
||||
|
||||
echo ""
|
||||
echo "=> Building in source tree: ${SRC_DIR}/..."
|
||||
case "${ARCH_BUILD}" in
|
||||
i686-w64-mingw32)
|
||||
linux-x86_64)
|
||||
./configure --prefix=${PREFIX}
|
||||
make -f win32/Makefile.gcc PREFIX=i686-w64-mingw32-
|
||||
make -f win32/Makefile.gcc PREFIX=i686-w64-mingw32- \
|
||||
SHARED_MODE=0 \
|
||||
INCLUDE_PATH=./${OUTPUT_DIR}${PREFIX}/include \
|
||||
LIBRARY_PATH=./${OUTPUT_DIR}${PREFIX}/lib \
|
||||
BINARY_PATH=./${OUTPUT_DIR}${PREFIX}/bin \
|
||||
install
|
||||
cp -rf ${SRC_DIR}/${OUTPUT_DIR}${PREFIX}/bin/*.dll ${SRC_DIR}/${OUTPUT_DIR}${PREFIX}/lib/
|
||||
;;
|
||||
x86_64-w64-mingw32)
|
||||
./configure --prefix=${PREFIX}
|
||||
make -f win32/Makefile.gcc PREFIX=x86_64-w64-mingw32-
|
||||
make -f win32/Makefile.gcc PREFIX=x86_64-w64-mingw32- \
|
||||
SHARED_MODE=0 \
|
||||
INCLUDE_PATH=./${OUTPUT_DIR}${PREFIX}/include \
|
||||
LIBRARY_PATH=./${OUTPUT_DIR}${PREFIX}/lib \
|
||||
BINARY_PATH=./${OUTPUT_DIR}${PREFIX}/bin \
|
||||
install
|
||||
cp -rf ${SRC_DIR}/${OUTPUT_DIR}${PREFIX}/bin/*.dll ${SRC_DIR}/${OUTPUT_DIR}${PREFIX}/lib/
|
||||
;;
|
||||
*)
|
||||
./configure --prefix=${PREFIX} --static
|
||||
make CFLAGS+="-fPIE -fPIC"
|
||||
make DESTDIR=${SRC_DIR}/${OUTPUT_DIR} install
|
||||
./configure --prefix=${PREFIX} --host=${HOST}
|
||||
;;
|
||||
esac
|
||||
|
||||
make -j8
|
||||
make DESTDIR=${SRC_DIR}/${OUTPUT_DIR} install
|
||||
|
||||
echo ""
|
||||
echo "=> Make output tar.gz file: ${SRC_DIR}/${OUTPUT_DIR}.tar.gz"
|
||||
rm -rf ${SRC_DIR}/${OUTPUT_DIR}.tar.gz
|
||||
tar -zcvf ${SRC_DIR}/${OUTPUT_DIR}.tar.gz ${SRC_DIR}/${OUTPUT_DIR}/
|
||||
rm -rf ${SRC_DIR}/${OUTPUT_DIR}${PREFIX}/lib/*.so*
|
||||
rm -rf ${SRC_DIR}/${OUTPUT_DIR}${PREFIX}/lib/*.so.*
|
||||
|
||||
echo ""
|
||||
echo "=> Copy output to static directory: ${STATIC_DIR}${PREFIX}/"
|
||||
|
@ -354,9 +334,6 @@ make clean
|
|||
make distclean
|
||||
rm -rf ${SRC_DIR}/${OUTPUT_DIR}
|
||||
rm -rf ${SRC_DIR}/${OUTPUT_DIR}.tar.gz
|
||||
rm -rf *.exe
|
||||
rm -rf *.dll
|
||||
rm -rf zlib2ansi
|
||||
|
||||
echo ""
|
||||
echo "=> Done."
|
||||
|
|
1
stamp-h1
1
stamp-h1
|
@ -1 +0,0 @@
|
|||
timestamp for expat_config.h
|
|
@ -1 +0,0 @@
|
|||
# dummy
|
|
@ -1 +0,0 @@
|
|||
# dummy
|
|
@ -1 +0,0 @@
|
|||
# dummy
|
|
@ -1 +0,0 @@
|
|||
# dummy
|
|
@ -1 +0,0 @@
|
|||
# dummy
|
|
@ -1 +0,0 @@
|
|||
# dummy
|
|
@ -1 +0,0 @@
|
|||
# dummy
|
|
@ -1 +0,0 @@
|
|||
# dummy
|
|
@ -1 +0,0 @@
|
|||
# dummy
|
|
@ -1 +0,0 @@
|
|||
# dummy
|
|
@ -1 +0,0 @@
|
|||
# dummy
|
|
@ -1 +0,0 @@
|
|||
# dummy
|
|
@ -1 +0,0 @@
|
|||
# dummy
|
|
@ -1 +0,0 @@
|
|||
# dummy
|
|
@ -1 +0,0 @@
|
|||
# dummy
|
|
@ -1 +0,0 @@
|
|||
# dummy
|
|
@ -1 +0,0 @@
|
|||
# dummy
|
|
@ -1 +0,0 @@
|
|||
# dummy
|
|
@ -1 +0,0 @@
|
|||
# dummy
|
|
@ -1 +0,0 @@
|
|||
# dummy
|
|
@ -1 +0,0 @@
|
|||
# dummy
|
|
@ -1 +0,0 @@
|
|||
# dummy
|
|
@ -1 +0,0 @@
|
|||
# dummy
|
|
@ -1 +0,0 @@
|
|||
# dummy
|
|
@ -1 +0,0 @@
|
|||
# dummy
|
|
@ -1 +0,0 @@
|
|||
# dummy
|
|
@ -1 +0,0 @@
|
|||
# dummy
|
|
@ -1 +0,0 @@
|
|||
# dummy
|
1378
tests/Makefile
1378
tests/Makefile
File diff suppressed because it is too large
Load diff
|
@ -1,192 +0,0 @@
|
|||
benchmark.o: benchmark.c \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdc-predef.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/stat.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/features.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/cdefs.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/wordsize.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/long-double.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/long-double-64.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/gnu/stubs.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/gnu/stubs-64-v1.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/timesize.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/typesizes.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/time64.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_timespec.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/time_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stat.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/assert.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include/stddef.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdlib.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/libc-header-start.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/waitflags.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/waitstatus.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn-64.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn-common.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/types.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/clock_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/clockid_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/timer_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdint-intn.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/endian.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/endian.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/byteswap.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/uintn-identity.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/select.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/select.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/sigset_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__sigset_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_timeval.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/pthreadtypes.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/thread-shared-types.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/pthreadtypes-arch.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/alloca.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdlib-bsearch.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdlib-float.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdio.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include/stdarg.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__fpos_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__mbstate_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__fpos64_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__FILE.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/FILE.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_FILE.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdio_lim.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/sys_errlist.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdio.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/time.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/time.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_tm.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_itimerspec.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/locale_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__locale_t.h \
|
||||
../../lib/expat.h ../../lib/expat_external.h
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdc-predef.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/stat.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/features.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/cdefs.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/wordsize.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/long-double.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/long-double-64.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/gnu/stubs.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/gnu/stubs-64-v1.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/timesize.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/typesizes.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/time64.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_timespec.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/time_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stat.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/assert.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include/stddef.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdlib.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/libc-header-start.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/waitflags.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/waitstatus.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn-64.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn-common.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/types.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/clock_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/clockid_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/timer_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdint-intn.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/endian.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/endian.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/byteswap.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/uintn-identity.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/select.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/select.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/sigset_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__sigset_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_timeval.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/pthreadtypes.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/thread-shared-types.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/pthreadtypes-arch.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/alloca.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdlib-bsearch.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdlib-float.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdio.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include/stdarg.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__fpos_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__mbstate_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__fpos64_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__FILE.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/FILE.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_FILE.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdio_lim.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/sys_errlist.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdio.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/time.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/time.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_tm.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_itimerspec.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/locale_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__locale_t.h:
|
||||
|
||||
../../lib/expat.h:
|
||||
|
||||
../../lib/expat_external.h:
|
Binary file not shown.
|
@ -1,669 +0,0 @@
|
|||
# Makefile.in generated by automake 1.16.5 from Makefile.am.
|
||||
# tests/benchmark/Makefile. Generated from Makefile.in by configure.
|
||||
|
||||
# Copyright (C) 1994-2021 Free Software Foundation, Inc.
|
||||
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
# with or without modifications, as long as this notice is preserved.
|
||||
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
||||
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
# PARTICULAR PURPOSE.
|
||||
|
||||
|
||||
|
||||
#
|
||||
# __ __ _
|
||||
# ___\ \/ /_ __ __ _| |_
|
||||
# / _ \\ /| '_ \ / _` | __|
|
||||
# | __// \| |_) | (_| | |_
|
||||
# \___/_/\_\ .__/ \__,_|\__|
|
||||
# |_| XML parser
|
||||
#
|
||||
# Copyright (c) 2017 Sebastian Pipping <sebastian@pipping.org>
|
||||
# Copyright (c) 2020 Jeffrey Walton <noloader@gmail.com>
|
||||
# Licensed under the MIT license:
|
||||
#
|
||||
# Permission is hereby granted, free of charge, to any person obtaining
|
||||
# a copy of this software and associated documentation files (the
|
||||
# "Software"), to deal in the Software without restriction, including
|
||||
# without limitation the rights to use, copy, modify, merge, publish,
|
||||
# distribute, sublicense, and/or sell copies of the Software, and to permit
|
||||
# persons to whom the Software is furnished to do so, subject to the
|
||||
# following conditions:
|
||||
#
|
||||
# The above copyright notice and this permission notice shall be included
|
||||
# in all copies or substantial portions of the Software.
|
||||
#
|
||||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
|
||||
# NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
||||
# DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
||||
# OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
||||
# USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
|
||||
am__is_gnu_make = { \
|
||||
if test -z '$(MAKELEVEL)'; then \
|
||||
false; \
|
||||
elif test -n '$(MAKE_HOST)'; then \
|
||||
true; \
|
||||
elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
|
||||
true; \
|
||||
else \
|
||||
false; \
|
||||
fi; \
|
||||
}
|
||||
am__make_running_with_option = \
|
||||
case $${target_option-} in \
|
||||
?) ;; \
|
||||
*) echo "am__make_running_with_option: internal error: invalid" \
|
||||
"target option '$${target_option-}' specified" >&2; \
|
||||
exit 1;; \
|
||||
esac; \
|
||||
has_opt=no; \
|
||||
sane_makeflags=$$MAKEFLAGS; \
|
||||
if $(am__is_gnu_make); then \
|
||||
sane_makeflags=$$MFLAGS; \
|
||||
else \
|
||||
case $$MAKEFLAGS in \
|
||||
*\\[\ \ ]*) \
|
||||
bs=\\; \
|
||||
sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
|
||||
| sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
|
||||
esac; \
|
||||
fi; \
|
||||
skip_next=no; \
|
||||
strip_trailopt () \
|
||||
{ \
|
||||
flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
|
||||
}; \
|
||||
for flg in $$sane_makeflags; do \
|
||||
test $$skip_next = yes && { skip_next=no; continue; }; \
|
||||
case $$flg in \
|
||||
*=*|--*) continue;; \
|
||||
-*I) strip_trailopt 'I'; skip_next=yes;; \
|
||||
-*I?*) strip_trailopt 'I';; \
|
||||
-*O) strip_trailopt 'O'; skip_next=yes;; \
|
||||
-*O?*) strip_trailopt 'O';; \
|
||||
-*l) strip_trailopt 'l'; skip_next=yes;; \
|
||||
-*l?*) strip_trailopt 'l';; \
|
||||
-[dEDm]) skip_next=yes;; \
|
||||
-[JT]) skip_next=yes;; \
|
||||
esac; \
|
||||
case $$flg in \
|
||||
*$$target_option*) has_opt=yes; break;; \
|
||||
esac; \
|
||||
done; \
|
||||
test $$has_opt = yes
|
||||
am__make_dryrun = (target_option=n; $(am__make_running_with_option))
|
||||
am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
|
||||
pkgdatadir = $(datadir)/expat
|
||||
pkgincludedir = $(includedir)/expat
|
||||
pkglibdir = $(libdir)/expat
|
||||
pkglibexecdir = $(libexecdir)/expat
|
||||
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
||||
install_sh_DATA = $(install_sh) -c -m 644
|
||||
install_sh_PROGRAM = $(install_sh) -c
|
||||
install_sh_SCRIPT = $(install_sh) -c
|
||||
INSTALL_HEADER = $(INSTALL_DATA)
|
||||
transform = $(program_transform_name)
|
||||
NORMAL_INSTALL = :
|
||||
PRE_INSTALL = :
|
||||
POST_INSTALL = :
|
||||
NORMAL_UNINSTALL = :
|
||||
PRE_UNINSTALL = :
|
||||
POST_UNINSTALL = :
|
||||
build_triplet = x86_64-pc-linux-gnu
|
||||
host_triplet = powerpc64-fsl-linux-gnu
|
||||
noinst_PROGRAMS = benchmark$(EXEEXT)
|
||||
subdir = tests/benchmark
|
||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||
am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
|
||||
$(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
|
||||
$(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
|
||||
$(top_srcdir)/acinclude.m4 \
|
||||
$(top_srcdir)/conftools/ax-require-defined.m4 \
|
||||
$(top_srcdir)/conftools/ax-check-compile-flag.m4 \
|
||||
$(top_srcdir)/conftools/ax-check-link-flag.m4 \
|
||||
$(top_srcdir)/conftools/ax-append-flag.m4 \
|
||||
$(top_srcdir)/conftools/ax-append-compile-flags.m4 \
|
||||
$(top_srcdir)/conftools/ax-append-link-flags.m4 \
|
||||
$(top_srcdir)/conftools/expatcfg-compiler-supports-visibility.m4 \
|
||||
$(top_srcdir)/conftools/ax-cxx-compile-stdcxx.m4 \
|
||||
$(top_srcdir)/conftools/ax-cxx-compile-stdcxx-11.m4 \
|
||||
$(top_srcdir)/configure.ac
|
||||
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
||||
$(ACLOCAL_M4)
|
||||
DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
|
||||
mkinstalldirs = $(install_sh) -d
|
||||
CONFIG_HEADER = $(top_builddir)/expat_config.h
|
||||
CONFIG_CLEAN_FILES =
|
||||
CONFIG_CLEAN_VPATH_FILES =
|
||||
PROGRAMS = $(noinst_PROGRAMS)
|
||||
am_benchmark_OBJECTS = benchmark.$(OBJEXT)
|
||||
benchmark_OBJECTS = $(am_benchmark_OBJECTS)
|
||||
benchmark_DEPENDENCIES = ../../lib/libexpat.la
|
||||
AM_V_lt = $(am__v_lt_$(V))
|
||||
am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY))
|
||||
am__v_lt_0 = --silent
|
||||
am__v_lt_1 =
|
||||
AM_V_P = $(am__v_P_$(V))
|
||||
am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY))
|
||||
am__v_P_0 = false
|
||||
am__v_P_1 = :
|
||||
AM_V_GEN = $(am__v_GEN_$(V))
|
||||
am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
|
||||
am__v_GEN_0 = @echo " GEN " $@;
|
||||
am__v_GEN_1 =
|
||||
AM_V_at = $(am__v_at_$(V))
|
||||
am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
|
||||
am__v_at_0 = @
|
||||
am__v_at_1 =
|
||||
DEFAULT_INCLUDES = -I. -I$(top_builddir)
|
||||
depcomp = $(SHELL) $(top_srcdir)/conftools/depcomp
|
||||
am__maybe_remake_depfiles = depfiles
|
||||
am__depfiles_remade = ./$(DEPDIR)/benchmark.Po
|
||||
am__mv = mv -f
|
||||
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
|
||||
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
||||
LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
|
||||
$(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
|
||||
$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
|
||||
$(AM_CFLAGS) $(CFLAGS)
|
||||
AM_V_CC = $(am__v_CC_$(V))
|
||||
am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY))
|
||||
am__v_CC_0 = @echo " CC " $@;
|
||||
am__v_CC_1 =
|
||||
CCLD = $(CC)
|
||||
LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
|
||||
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
|
||||
$(AM_LDFLAGS) $(LDFLAGS) -o $@
|
||||
AM_V_CCLD = $(am__v_CCLD_$(V))
|
||||
am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY))
|
||||
am__v_CCLD_0 = @echo " CCLD " $@;
|
||||
am__v_CCLD_1 =
|
||||
SOURCES = $(benchmark_SOURCES)
|
||||
DIST_SOURCES = $(benchmark_SOURCES)
|
||||
am__can_run_installinfo = \
|
||||
case $$AM_UPDATE_INFO_DIR in \
|
||||
n|no|NO) false;; \
|
||||
*) (install-info --version) >/dev/null 2>&1;; \
|
||||
esac
|
||||
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
|
||||
# Read a list of newline-separated strings from the standard input,
|
||||
# and print each of them once, without duplicates. Input order is
|
||||
# *not* preserved.
|
||||
am__uniquify_input = $(AWK) '\
|
||||
BEGIN { nonempty = 0; } \
|
||||
{ items[$$0] = 1; nonempty = 1; } \
|
||||
END { if (nonempty) { for (i in items) print i; }; } \
|
||||
'
|
||||
# Make sure the list of sources is unique. This is necessary because,
|
||||
# e.g., the same source file might be shared among _SOURCES variables
|
||||
# for different programs/libraries.
|
||||
am__define_uniq_tagged_files = \
|
||||
list='$(am__tagged_files)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | $(am__uniquify_input)`
|
||||
am__DIST_COMMON = $(srcdir)/Makefile.in \
|
||||
$(top_srcdir)/conftools/depcomp
|
||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||
ACLOCAL = ${SHELL} '/opt/vgisc/6t/workspace/UTIL/src/expat-2.6.4/conftools/missing' aclocal-1.16
|
||||
AMTAR = $${TAR-tar}
|
||||
AM_CFLAGS = -Wall -Wextra -fexceptions -fno-strict-aliasing -Wmissing-prototypes -Wstrict-prototypes -pedantic -Wduplicated-cond -Wduplicated-branches -Wlogical-op -Wrestrict -Wnull-dereference -Wjump-misses-init -Wdouble-promotion -Wshadow -Wformat=2 -Wno-pedantic-ms-format -Wmisleading-indentation -fvisibility=hidden
|
||||
AM_CPPFLAGS = -DXML_ENABLE_VISIBILITY=1 -I$(srcdir)/../../lib
|
||||
AM_CXXFLAGS = -Wall -Wextra -fexceptions -fno-strict-aliasing
|
||||
AM_DEFAULT_VERBOSITY = 1
|
||||
AM_LDFLAGS = -fno-strict-aliasing
|
||||
AR = powerpc64-fsl-linux-ar
|
||||
AS = powerpc64-fsl-linux-as
|
||||
AUTOCONF = ${SHELL} '/opt/vgisc/6t/workspace/UTIL/src/expat-2.6.4/conftools/missing' autoconf
|
||||
AUTOHEADER = ${SHELL} '/opt/vgisc/6t/workspace/UTIL/src/expat-2.6.4/conftools/missing' autoheader
|
||||
AUTOMAKE = ${SHELL} '/opt/vgisc/6t/workspace/UTIL/src/expat-2.6.4/conftools/missing' automake-1.16
|
||||
AWK = gawk
|
||||
CC = powerpc64-fsl-linux-gcc -mbig-endian -mhard-float -m64 -mcpu=e6500 --sysroot=/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux
|
||||
CCDEPMODE = depmode=gcc3
|
||||
CFLAGS = -O2 -pipe -g -feliminate-unused-debug-types
|
||||
CMAKE_SHARED_LIBRARY_PREFIX = lib
|
||||
CPPFLAGS =
|
||||
CSCOPE = cscope
|
||||
CTAGS = ctags
|
||||
CXX = powerpc64-fsl-linux-g++ -mbig-endian -mhard-float -m64 -mcpu=e6500 --sysroot=/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux -std=c++11
|
||||
CXXCPP = powerpc64-fsl-linux-g++ -mbig-endian -mhard-float -m64 -mcpu=e6500 --sysroot=/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux -E -std=c++11
|
||||
CXXDEPMODE = depmode=gcc3
|
||||
CXXFLAGS = -O2 -pipe -g -feliminate-unused-debug-types
|
||||
CYGPATH_W = echo
|
||||
DEFS = -DHAVE_CONFIG_H
|
||||
DEPDIR = .deps
|
||||
DLLTOOL = false
|
||||
DOCBOOK_TO_MAN =
|
||||
DSYMUTIL =
|
||||
DUMPBIN =
|
||||
ECHO_C =
|
||||
ECHO_N = -n
|
||||
ECHO_T =
|
||||
EGREP = /usr/bin/grep -E
|
||||
ETAGS = etags
|
||||
EXEEXT =
|
||||
EXPAT_ATTR_INFO = OFF
|
||||
EXPAT_CHAR_TYPE = char
|
||||
EXPAT_CONTEXT_BYTES = 1024
|
||||
EXPAT_DTD = ON
|
||||
EXPAT_LARGE_SIZE = OFF
|
||||
EXPAT_MIN_SIZE = OFF
|
||||
EXPAT_NS = ON
|
||||
FGREP = /usr/bin/grep -F
|
||||
FILECMD = file
|
||||
FILEMAP = unixfilemap
|
||||
GREP = /usr/bin/grep
|
||||
HAVE_CXX11 = 1
|
||||
INSTALL = /usr/bin/install -c
|
||||
INSTALL_DATA = ${INSTALL} -m 644
|
||||
INSTALL_PROGRAM = ${INSTALL}
|
||||
INSTALL_SCRIPT = ${INSTALL}
|
||||
INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
|
||||
LD = powerpc64-fsl-linux-ld --sysroot=/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux -m elf64ppc
|
||||
LDFLAGS = -Wl,-O1 -Wl,--hash-style=gnu -Wl,--as-needed
|
||||
LIBAGE = 10
|
||||
LIBCURRENT = 11
|
||||
LIBDIR_BASENAME = lib
|
||||
LIBM = -lm
|
||||
LIBOBJS =
|
||||
LIBREVISION = 0
|
||||
LIBS =
|
||||
LIBTOOL = $(SHELL) $(top_builddir)/libtool
|
||||
LIPO =
|
||||
LN_S = ln -s
|
||||
LTLIBOBJS =
|
||||
LT_SYS_LIBRARY_PATH =
|
||||
MAINT =
|
||||
MAKEINFO = ${SHELL} '/opt/vgisc/6t/workspace/UTIL/src/expat-2.6.4/conftools/missing' makeinfo
|
||||
MANIFEST_TOOL = :
|
||||
MKDIR_P = /usr/bin/mkdir -p
|
||||
NM = powerpc64-fsl-linux-nm
|
||||
NMEDIT =
|
||||
OBJDUMP = powerpc64-fsl-linux-objdump
|
||||
OBJEXT = o
|
||||
OTOOL =
|
||||
OTOOL64 =
|
||||
PACKAGE = expat
|
||||
PACKAGE_BUGREPORT = https://github.com/libexpat/libexpat/issues
|
||||
PACKAGE_NAME = expat
|
||||
PACKAGE_STRING = expat 2.6.4
|
||||
PACKAGE_TARNAME = expat
|
||||
PACKAGE_URL =
|
||||
PACKAGE_VERSION = 2.6.4
|
||||
PATH_SEPARATOR = :
|
||||
RANLIB = powerpc64-fsl-linux-ranlib
|
||||
SED = sed
|
||||
SET_MAKE =
|
||||
SHELL = /bin/bash
|
||||
SIZEOF_VOID_P = 8
|
||||
SO_MAJOR = 1
|
||||
SO_MINOR = 10
|
||||
SO_PATCH = 0
|
||||
STRIP = powerpc64-fsl-linux-strip
|
||||
VERSION = 2.6.4
|
||||
abs_builddir = /opt/vgisc/6t/workspace/UTIL/src/expat-2.6.4/tests/benchmark
|
||||
abs_srcdir = /opt/vgisc/6t/workspace/UTIL/src/expat-2.6.4/tests/benchmark
|
||||
abs_top_builddir = /opt/vgisc/6t/workspace/UTIL/src/expat-2.6.4
|
||||
abs_top_srcdir = /opt/vgisc/6t/workspace/UTIL/src/expat-2.6.4
|
||||
ac_ct_AR =
|
||||
ac_ct_CC =
|
||||
ac_ct_CXX =
|
||||
ac_ct_DUMPBIN =
|
||||
am__include = include
|
||||
am__leading_dot = .
|
||||
am__quote =
|
||||
am__tar = $${TAR-tar} chof - "$$tardir"
|
||||
am__untar = $${TAR-tar} xf -
|
||||
bindir = ${exec_prefix}/bin
|
||||
build = x86_64-pc-linux-gnu
|
||||
build_alias =
|
||||
build_cpu = x86_64
|
||||
build_os = linux-gnu
|
||||
build_vendor = pc
|
||||
builddir = .
|
||||
datadir = ${datarootdir}
|
||||
datarootdir = ${prefix}/share
|
||||
docdir = ${datarootdir}/doc/${PACKAGE_TARNAME}
|
||||
dvidir = ${docdir}
|
||||
exec_prefix = ${prefix}
|
||||
host = powerpc64-fsl-linux-gnu
|
||||
host_alias = powerpc64-fsl-linux
|
||||
host_cpu = powerpc64
|
||||
host_os = linux-gnu
|
||||
host_vendor = fsl
|
||||
htmldir = ${docdir}
|
||||
includedir = ${prefix}/include
|
||||
infodir = ${datarootdir}/info
|
||||
install_sh = ${SHELL} /opt/vgisc/6t/workspace/UTIL/src/expat-2.6.4/conftools/install-sh
|
||||
libdir = ${exec_prefix}/lib
|
||||
libexecdir = ${exec_prefix}/libexec
|
||||
localedir = ${datarootdir}/locale
|
||||
localstatedir = ${prefix}/var
|
||||
mandir = ${datarootdir}/man
|
||||
mkdir_p = $(MKDIR_P)
|
||||
oldincludedir = /usr/include
|
||||
pdfdir = ${docdir}
|
||||
prefix = /opt/vgisc/6t/workspace/BUILD/build/powerpc64-fsl-linux
|
||||
program_transform_name = s,x,x,
|
||||
psdir = ${docdir}
|
||||
runstatedir = ${localstatedir}/run
|
||||
sbindir = ${exec_prefix}/sbin
|
||||
sharedstatedir = ${prefix}/com
|
||||
srcdir = .
|
||||
sysconfdir = ${prefix}/etc
|
||||
target_alias =
|
||||
top_build_prefix = ../../
|
||||
top_builddir = ../..
|
||||
top_srcdir = ../..
|
||||
benchmark_SOURCES = benchmark.c
|
||||
benchmark_LDADD = ../../lib/libexpat.la
|
||||
EXTRA_DIST = \
|
||||
README.txt
|
||||
|
||||
all: all-am
|
||||
|
||||
.SUFFIXES:
|
||||
.SUFFIXES: .c .lo .o .obj
|
||||
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
|
||||
@for dep in $?; do \
|
||||
case '$(am__configure_deps)' in \
|
||||
*$$dep*) \
|
||||
( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
|
||||
&& { if test -f $@; then exit 0; else break; fi; }; \
|
||||
exit 1;; \
|
||||
esac; \
|
||||
done; \
|
||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu tests/benchmark/Makefile'; \
|
||||
$(am__cd) $(top_srcdir) && \
|
||||
$(AUTOMAKE) --gnu tests/benchmark/Makefile
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||
@case '$?' in \
|
||||
*config.status*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
|
||||
esac;
|
||||
|
||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
|
||||
$(top_srcdir)/configure: $(am__configure_deps)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
$(am__aclocal_m4_deps):
|
||||
|
||||
clean-noinstPROGRAMS:
|
||||
@list='$(noinst_PROGRAMS)'; test -n "$$list" || exit 0; \
|
||||
echo " rm -f" $$list; \
|
||||
rm -f $$list || exit $$?; \
|
||||
test -n "$(EXEEXT)" || exit 0; \
|
||||
list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
|
||||
echo " rm -f" $$list; \
|
||||
rm -f $$list
|
||||
|
||||
benchmark$(EXEEXT): $(benchmark_OBJECTS) $(benchmark_DEPENDENCIES) $(EXTRA_benchmark_DEPENDENCIES)
|
||||
@rm -f benchmark$(EXEEXT)
|
||||
$(AM_V_CCLD)$(LINK) $(benchmark_OBJECTS) $(benchmark_LDADD) $(LIBS)
|
||||
|
||||
mostlyclean-compile:
|
||||
-rm -f *.$(OBJEXT)
|
||||
|
||||
distclean-compile:
|
||||
-rm -f *.tab.c
|
||||
|
||||
include ./$(DEPDIR)/benchmark.Po # am--include-marker
|
||||
|
||||
$(am__depfiles_remade):
|
||||
@$(MKDIR_P) $(@D)
|
||||
@echo '# dummy' >$@-t && $(am__mv) $@-t $@
|
||||
|
||||
am--depfiles: $(am__depfiles_remade)
|
||||
|
||||
.c.o:
|
||||
$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
|
||||
$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
|
||||
# $(AM_V_CC)source='$<' object='$@' libtool=no \
|
||||
# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
|
||||
# $(AM_V_CC_no)$(COMPILE) -c -o $@ $<
|
||||
|
||||
.c.obj:
|
||||
$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
|
||||
$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
|
||||
# $(AM_V_CC)source='$<' object='$@' libtool=no \
|
||||
# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
|
||||
# $(AM_V_CC_no)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
|
||||
|
||||
.c.lo:
|
||||
$(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
|
||||
$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
|
||||
# $(AM_V_CC)source='$<' object='$@' libtool=yes \
|
||||
# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
|
||||
# $(AM_V_CC_no)$(LTCOMPILE) -c -o $@ $<
|
||||
|
||||
mostlyclean-libtool:
|
||||
-rm -f *.lo
|
||||
|
||||
clean-libtool:
|
||||
-rm -rf .libs _libs
|
||||
|
||||
ID: $(am__tagged_files)
|
||||
$(am__define_uniq_tagged_files); mkid -fID $$unique
|
||||
tags: tags-am
|
||||
TAGS: tags
|
||||
|
||||
tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
|
||||
set x; \
|
||||
here=`pwd`; \
|
||||
$(am__define_uniq_tagged_files); \
|
||||
shift; \
|
||||
if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
|
||||
test -n "$$unique" || unique=$$empty_fix; \
|
||||
if test $$# -gt 0; then \
|
||||
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
||||
"$$@" $$unique; \
|
||||
else \
|
||||
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
||||
$$unique; \
|
||||
fi; \
|
||||
fi
|
||||
ctags: ctags-am
|
||||
|
||||
CTAGS: ctags
|
||||
ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
|
||||
$(am__define_uniq_tagged_files); \
|
||||
test -z "$(CTAGS_ARGS)$$unique" \
|
||||
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
|
||||
$$unique
|
||||
|
||||
GTAGS:
|
||||
here=`$(am__cd) $(top_builddir) && pwd` \
|
||||
&& $(am__cd) $(top_srcdir) \
|
||||
&& gtags -i $(GTAGS_ARGS) "$$here"
|
||||
cscopelist: cscopelist-am
|
||||
|
||||
cscopelist-am: $(am__tagged_files)
|
||||
list='$(am__tagged_files)'; \
|
||||
case "$(srcdir)" in \
|
||||
[\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
|
||||
*) sdir=$(subdir)/$(srcdir) ;; \
|
||||
esac; \
|
||||
for i in $$list; do \
|
||||
if test -f "$$i"; then \
|
||||
echo "$(subdir)/$$i"; \
|
||||
else \
|
||||
echo "$$sdir/$$i"; \
|
||||
fi; \
|
||||
done >> $(top_builddir)/cscope.files
|
||||
|
||||
distclean-tags:
|
||||
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
||||
distdir: $(BUILT_SOURCES)
|
||||
$(MAKE) $(AM_MAKEFLAGS) distdir-am
|
||||
|
||||
distdir-am: $(DISTFILES)
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
list='$(DISTFILES)'; \
|
||||
dist_files=`for file in $$list; do echo $$file; done | \
|
||||
sed -e "s|^$$srcdirstrip/||;t" \
|
||||
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
|
||||
case $$dist_files in \
|
||||
*/*) $(MKDIR_P) `echo "$$dist_files" | \
|
||||
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
|
||||
sort -u` ;; \
|
||||
esac; \
|
||||
for file in $$dist_files; do \
|
||||
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
||||
if test -d $$d/$$file; then \
|
||||
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
|
||||
if test -d "$(distdir)/$$file"; then \
|
||||
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
||||
fi; \
|
||||
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
||||
cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
|
||||
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
||||
fi; \
|
||||
cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
|
||||
else \
|
||||
test -f "$(distdir)/$$file" \
|
||||
|| cp -p $$d/$$file "$(distdir)/$$file" \
|
||||
|| exit 1; \
|
||||
fi; \
|
||||
done
|
||||
check-am: all-am
|
||||
check: check-am
|
||||
all-am: Makefile $(PROGRAMS)
|
||||
installdirs:
|
||||
install: install-am
|
||||
install-exec: install-exec-am
|
||||
install-data: install-data-am
|
||||
uninstall: uninstall-am
|
||||
|
||||
install-am: all-am
|
||||
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
||||
|
||||
installcheck: installcheck-am
|
||||
install-strip:
|
||||
if test -z '$(STRIP)'; then \
|
||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
||||
install; \
|
||||
else \
|
||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
||||
"INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
|
||||
fi
|
||||
mostlyclean-generic:
|
||||
|
||||
clean-generic:
|
||||
|
||||
distclean-generic:
|
||||
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
||||
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
|
||||
|
||||
maintainer-clean-generic:
|
||||
@echo "This command is intended for maintainers to use"
|
||||
@echo "it deletes files that may require special tools to rebuild."
|
||||
clean: clean-am
|
||||
|
||||
clean-am: clean-generic clean-libtool clean-noinstPROGRAMS \
|
||||
mostlyclean-am
|
||||
|
||||
distclean: distclean-am
|
||||
-rm -f ./$(DEPDIR)/benchmark.Po
|
||||
-rm -f Makefile
|
||||
distclean-am: clean-am distclean-compile distclean-generic \
|
||||
distclean-tags
|
||||
|
||||
dvi: dvi-am
|
||||
|
||||
dvi-am:
|
||||
|
||||
html: html-am
|
||||
|
||||
html-am:
|
||||
|
||||
info: info-am
|
||||
|
||||
info-am:
|
||||
|
||||
install-data-am:
|
||||
|
||||
install-dvi: install-dvi-am
|
||||
|
||||
install-dvi-am:
|
||||
|
||||
install-exec-am:
|
||||
|
||||
install-html: install-html-am
|
||||
|
||||
install-html-am:
|
||||
|
||||
install-info: install-info-am
|
||||
|
||||
install-info-am:
|
||||
|
||||
install-man:
|
||||
|
||||
install-pdf: install-pdf-am
|
||||
|
||||
install-pdf-am:
|
||||
|
||||
install-ps: install-ps-am
|
||||
|
||||
install-ps-am:
|
||||
|
||||
installcheck-am:
|
||||
|
||||
maintainer-clean: maintainer-clean-am
|
||||
-rm -f ./$(DEPDIR)/benchmark.Po
|
||||
-rm -f Makefile
|
||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
||||
|
||||
mostlyclean: mostlyclean-am
|
||||
|
||||
mostlyclean-am: mostlyclean-compile mostlyclean-generic \
|
||||
mostlyclean-libtool
|
||||
|
||||
pdf: pdf-am
|
||||
|
||||
pdf-am:
|
||||
|
||||
ps: ps-am
|
||||
|
||||
ps-am:
|
||||
|
||||
uninstall-am:
|
||||
|
||||
.MAKE: install-am install-strip
|
||||
|
||||
.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
|
||||
clean-generic clean-libtool clean-noinstPROGRAMS cscopelist-am \
|
||||
ctags ctags-am distclean distclean-compile distclean-generic \
|
||||
distclean-libtool distclean-tags distdir dvi dvi-am html \
|
||||
html-am info info-am install install-am install-data \
|
||||
install-data-am install-dvi install-dvi-am install-exec \
|
||||
install-exec-am install-html install-html-am install-info \
|
||||
install-info-am install-man install-pdf install-pdf-am \
|
||||
install-ps install-ps-am install-strip installcheck \
|
||||
installcheck-am installdirs maintainer-clean \
|
||||
maintainer-clean-generic mostlyclean mostlyclean-compile \
|
||||
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
|
||||
tags tags-am uninstall uninstall-am
|
||||
|
||||
.PRECIOUS: Makefile
|
||||
|
||||
|
||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||
.NOEXPORT:
|
|
@ -1,228 +0,0 @@
|
|||
#! /bin/bash
|
||||
|
||||
# benchmark - temporary wrapper script for .libs/benchmark
|
||||
# Generated by libtool (GNU libtool) 2.5.3
|
||||
#
|
||||
# The benchmark program cannot be directly executed until all the libtool
|
||||
# libraries that it depends on are installed.
|
||||
#
|
||||
# This wrapper script should never be moved out of the build directory.
|
||||
# If it is, it will not operate correctly.
|
||||
|
||||
# Sed substitution that helps us do robust quoting. It backslashifies
|
||||
# metacharacters that are still active within double-quoted strings.
|
||||
sed_quote_subst='s|\([`"$\\]\)|\\\1|g'
|
||||
|
||||
# Be Bourne compatible
|
||||
if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
|
||||
emulate sh
|
||||
NULLCMD=:
|
||||
# Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
|
||||
# is contrary to our usage. Disable this feature.
|
||||
alias -g '${1+"$@"}'='"$@"'
|
||||
setopt NO_GLOB_SUBST
|
||||
else
|
||||
case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac
|
||||
fi
|
||||
BIN_SH=xpg4; export BIN_SH # for Tru64
|
||||
DUALCASE=1; export DUALCASE # for MKS sh
|
||||
|
||||
# The HP-UX ksh and POSIX shell print the target directory to stdout
|
||||
# if CDPATH is set.
|
||||
(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
|
||||
|
||||
relink_command="(cd /opt/vgisc/6t/workspace/UTIL/src/expat-2.6.4/tests/benchmark; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; { test -z \"\${LD_LIBRARY_PATH+set}\" || unset LD_LIBRARY_PATH || { LD_LIBRARY_PATH=; export LD_LIBRARY_PATH; }; }; PATH=/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/bin:/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/sbin:/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/bin:/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/sbin:/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/bin/../x86_64-fslsdk-linux/bin:/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/bin/powerpc64-fsl-linux:/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/bin/powerpc64-fsl-linux-musl:/opt/vgisc/app/gradle/gradle-8.12/bin:/usr/lib/jvm/java-17-openjdk-amd64/bin:/opt/vgisc/app/maven/apache-maven-3.9.9/bin:/opt/vgisc/app/maven/apache-maven-3.9.9/bin:/home/ct129/.cargo/bin:/home/ct129/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin; export PATH; powerpc64-fsl-linux-gcc -mbig-endian -mhard-float -m64 -mcpu=e6500 --sysroot=/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux -Wall -Wextra -fexceptions -fno-strict-aliasing -Wmissing-prototypes -Wstrict-prototypes -pedantic -Wduplicated-cond -Wduplicated-branches -Wlogical-op -Wrestrict -Wnull-dereference -Wjump-misses-init -Wdouble-promotion -Wshadow -Wformat=2 -Wno-pedantic-ms-format -Wmisleading-indentation -fvisibility=hidden -O2 -pipe -g -feliminate-unused-debug-types -fno-strict-aliasing -Wl,-O1 -Wl,--hash-style=gnu -Wl,--as-needed -o \$progdir/\$file benchmark.o ../../lib/.libs/libexpat.so -lm -Wl,-rpath -Wl,/opt/vgisc/6t/workspace/UTIL/src/expat-2.6.4/lib/.libs -Wl,-rpath -Wl,/opt/vgisc/6t/workspace/BUILD/build/powerpc64-fsl-linux/lib)"
|
||||
|
||||
# This environment variable determines our operation mode.
|
||||
if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then
|
||||
# install mode needs the following variables:
|
||||
generated_by_libtool_version='2.5.3'
|
||||
notinst_deplibs=' ../../lib/libexpat.la'
|
||||
else
|
||||
# When we are sourced in execute mode, $file and $ECHO are already set.
|
||||
if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then
|
||||
file="$0"
|
||||
|
||||
# A function that is used when there is no print builtin or printf.
|
||||
func_fallback_echo ()
|
||||
{
|
||||
eval 'cat <<_LTECHO_EOF
|
||||
$1
|
||||
_LTECHO_EOF'
|
||||
}
|
||||
ECHO="printf %s\\n"
|
||||
fi
|
||||
|
||||
# Very basic option parsing. These options are (a) specific to
|
||||
# the libtool wrapper, (b) are identical between the wrapper
|
||||
# /script/ and the wrapper /executable/ that is used only on
|
||||
# windows platforms, and (c) all begin with the string --lt-
|
||||
# (application programs are unlikely to have options that match
|
||||
# this pattern).
|
||||
#
|
||||
# There are only two supported options: --lt-debug and
|
||||
# --lt-dump-script. There is, deliberately, no --lt-help.
|
||||
#
|
||||
# The first argument to this parsing function should be the
|
||||
# script's ../../libtool value, followed by no.
|
||||
lt_option_debug=
|
||||
func_parse_lt_options ()
|
||||
{
|
||||
lt_script_arg0=$0
|
||||
shift
|
||||
for lt_opt
|
||||
do
|
||||
case "$lt_opt" in
|
||||
--lt-debug) lt_option_debug=1 ;;
|
||||
--lt-dump-script)
|
||||
lt_dump_D=`$ECHO "X$lt_script_arg0" | sed -e 's/^X//' -e 's%/[^/]*$%%'`
|
||||
test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=.
|
||||
lt_dump_F=`$ECHO "X$lt_script_arg0" | sed -e 's/^X//' -e 's%^.*/%%'`
|
||||
cat "$lt_dump_D/$lt_dump_F"
|
||||
exit 0
|
||||
;;
|
||||
--lt-*)
|
||||
$ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
done
|
||||
|
||||
# Print the debug banner immediately:
|
||||
if test -n "$lt_option_debug"; then
|
||||
echo "benchmark:benchmark:$LINENO: libtool wrapper (GNU libtool) 2.5.3" 1>&2
|
||||
fi
|
||||
}
|
||||
|
||||
# Used when --lt-debug. Prints its arguments to stdout
|
||||
# (redirection is the responsibility of the caller)
|
||||
func_lt_dump_args ()
|
||||
{
|
||||
lt_dump_args_N=1;
|
||||
for lt_arg
|
||||
do
|
||||
$ECHO "benchmark:benchmark:$LINENO: newargv[$lt_dump_args_N]: $lt_arg"
|
||||
lt_dump_args_N=`expr $lt_dump_args_N + 1`
|
||||
done
|
||||
}
|
||||
|
||||
# Core function for launching the target application
|
||||
func_exec_program_core ()
|
||||
{
|
||||
|
||||
if test -n "$lt_option_debug"; then
|
||||
$ECHO "benchmark:benchmark:$LINENO: newargv[0]: $progdir/$program" 1>&2
|
||||
func_lt_dump_args ${1+"$@"} 1>&2
|
||||
fi
|
||||
exec "$progdir/$program" ${1+"$@"}
|
||||
|
||||
$ECHO "$0: cannot exec $program $*" 1>&2
|
||||
exit 1
|
||||
}
|
||||
|
||||
# A function to encapsulate launching the target application
|
||||
# Strips options in the --lt-* namespace from $@ and
|
||||
# launches target application with the remaining arguments.
|
||||
func_exec_program ()
|
||||
{
|
||||
case " $* " in
|
||||
*\ --lt-*)
|
||||
for lt_wr_arg
|
||||
do
|
||||
case $lt_wr_arg in
|
||||
--lt-*) ;;
|
||||
*) set x "$@" "$lt_wr_arg"; shift;;
|
||||
esac
|
||||
shift
|
||||
done ;;
|
||||
esac
|
||||
func_exec_program_core ${1+"$@"}
|
||||
}
|
||||
|
||||
# Parse options
|
||||
func_parse_lt_options "$0" ${1+"$@"}
|
||||
|
||||
# Find the directory that this script lives in.
|
||||
thisdir=`$ECHO "$file" | sed 's%/[^/]*$%%'`
|
||||
test "x$thisdir" = "x$file" && thisdir=.
|
||||
|
||||
# Follow symbolic links until we get to the real thisdir.
|
||||
file=`ls -ld "$file" | sed -n 's/.*-> //p'`
|
||||
while test -n "$file"; do
|
||||
destdir=`$ECHO "$file" | sed 's%/[^/]*$%%'`
|
||||
|
||||
# If there was a directory component, then change thisdir.
|
||||
if test "x$destdir" != "x$file"; then
|
||||
case "$destdir" in
|
||||
[\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;;
|
||||
*) thisdir="$thisdir/$destdir" ;;
|
||||
esac
|
||||
fi
|
||||
|
||||
file=`$ECHO "$file" | sed 's%^.*/%%'`
|
||||
file=`ls -ld "$thisdir/$file" | sed -n 's/.*-> //p'`
|
||||
done
|
||||
|
||||
# Usually 'no', except on cygwin/mingw/windows when embedded into
|
||||
# the cwrapper.
|
||||
WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no
|
||||
if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then
|
||||
# special case for '.'
|
||||
if test "$thisdir" = "."; then
|
||||
thisdir=`pwd`
|
||||
fi
|
||||
# remove .libs from thisdir
|
||||
case "$thisdir" in
|
||||
*[\\/].libs ) thisdir=`$ECHO "$thisdir" | sed 's%[\\/][^\\/]*$%%'` ;;
|
||||
.libs ) thisdir=. ;;
|
||||
esac
|
||||
fi
|
||||
|
||||
# Try to get the absolute directory name.
|
||||
absdir=`cd "$thisdir" && pwd`
|
||||
test -n "$absdir" && thisdir="$absdir"
|
||||
|
||||
program=lt-'benchmark'
|
||||
progdir="$thisdir/.libs"
|
||||
|
||||
if test ! -f "$progdir/$program" ||
|
||||
{ file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | sed 1q`; \
|
||||
test "X$file" != "X$progdir/$program"; }; then
|
||||
|
||||
file="$$-$program"
|
||||
|
||||
if test ! -d "$progdir"; then
|
||||
mkdir "$progdir"
|
||||
else
|
||||
rm -f "$progdir/$file"
|
||||
fi
|
||||
|
||||
# relink executable if necessary
|
||||
if test -n "$relink_command"; then
|
||||
if relink_command_output=`eval $relink_command 2>&1`; then :
|
||||
else
|
||||
$ECHO "$relink_command_output" >&2
|
||||
rm -f "$progdir/$file"
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
|
||||
mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null ||
|
||||
{ rm -f "$progdir/$program";
|
||||
mv -f "$progdir/$file" "$progdir/$program"; }
|
||||
rm -f "$progdir/$file"
|
||||
fi
|
||||
|
||||
if test -f "$progdir/$program"; then
|
||||
if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then
|
||||
# Run the actual program with our arguments.
|
||||
func_exec_program ${1+"$@"}
|
||||
fi
|
||||
else
|
||||
# The program doesn't exist.
|
||||
$ECHO "$0: error: '$progdir/$program' does not exist" 1>&2
|
||||
$ECHO "This script is just a wrapper for $program." 1>&2
|
||||
$ECHO "See the libtool documentation for more information." 1>&2
|
||||
exit 1
|
||||
fi
|
||||
fi
|
Binary file not shown.
|
@ -1,159 +0,0 @@
|
|||
xmlwf-codepage.o: codepage.c \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdc-predef.h \
|
||||
codepage.h ../lib/internal.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include-fixed/limits.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include-fixed/syslimits.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/limits.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/libc-header-start.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/features.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/cdefs.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/wordsize.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/long-double.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/long-double-64.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/gnu/stubs.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/gnu/stubs-64-v1.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/posix1_lim.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/local_lim.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/linux/limits.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/posix2_lim.h \
|
||||
../lib/expat.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdlib.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include/stddef.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/waitflags.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/waitstatus.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn-64.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn-common.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/types.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/timesize.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/typesizes.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/time64.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/clock_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/clockid_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/time_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/timer_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdint-intn.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/endian.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/endian.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/byteswap.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/uintn-identity.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/select.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/select.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/sigset_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__sigset_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_timeval.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_timespec.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/pthreadtypes.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/thread-shared-types.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/pthreadtypes-arch.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/alloca.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdlib-bsearch.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdlib-float.h \
|
||||
../lib/expat_external.h
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdc-predef.h:
|
||||
|
||||
codepage.h:
|
||||
|
||||
../lib/internal.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include-fixed/limits.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include-fixed/syslimits.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/limits.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/libc-header-start.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/features.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/cdefs.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/wordsize.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/long-double.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/long-double-64.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/gnu/stubs.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/gnu/stubs-64-v1.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/posix1_lim.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/local_lim.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/linux/limits.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/posix2_lim.h:
|
||||
|
||||
../lib/expat.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdlib.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include/stddef.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/waitflags.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/waitstatus.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn-64.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn-common.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/types.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/timesize.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/typesizes.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/time64.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/clock_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/clockid_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/time_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/timer_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdint-intn.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/endian.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/endian.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/byteswap.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/uintn-identity.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/select.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/select.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/sigset_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__sigset_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_timeval.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_timespec.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/pthreadtypes.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/thread-shared-types.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/pthreadtypes-arch.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/alloca.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdlib-bsearch.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdlib-float.h:
|
||||
|
||||
../lib/expat_external.h:
|
|
@ -1,239 +0,0 @@
|
|||
xmlwf-unixfilemap.o: unixfilemap.c \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdc-predef.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/types.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/features.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/cdefs.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/wordsize.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/long-double.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/long-double-64.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/gnu/stubs.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/gnu/stubs-64-v1.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/timesize.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/typesizes.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/time64.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/clock_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/clockid_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/time_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/timer_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include/stddef.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdint-intn.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/endian.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/endian.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/byteswap.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/uintn-identity.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/select.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/select.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/sigset_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__sigset_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_timeval.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_timespec.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/pthreadtypes.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/thread-shared-types.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/pthreadtypes-arch.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/mman.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/mman.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/mman-linux.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/mman-shared.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/stat.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stat.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/fcntl.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/fcntl.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/fcntl-linux.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/errno.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/errno.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/linux/errno.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/asm/errno.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/asm-generic/errno.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/asm-generic/errno-base.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/string.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/libc-header-start.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/locale_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__locale_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/strings.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdio.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include/stdarg.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__fpos_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__mbstate_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__fpos64_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__FILE.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/FILE.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_FILE.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdio_lim.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/sys_errlist.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdio.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/unistd.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/posix_opt.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/environments.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/confname.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/getopt_posix.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/getopt_core.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/unistd_ext.h \
|
||||
xmltchar.h ../lib/expat_external.h filemap.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include-fixed/limits.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include-fixed/syslimits.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/limits.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/posix1_lim.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/local_lim.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/linux/limits.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/posix2_lim.h
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdc-predef.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/types.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/features.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/cdefs.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/wordsize.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/long-double.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/long-double-64.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/gnu/stubs.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/gnu/stubs-64-v1.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/timesize.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/typesizes.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/time64.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/clock_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/clockid_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/time_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/timer_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include/stddef.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdint-intn.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/endian.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/endian.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/byteswap.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/uintn-identity.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/select.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/select.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/sigset_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__sigset_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_timeval.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_timespec.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/pthreadtypes.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/thread-shared-types.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/pthreadtypes-arch.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/mman.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/mman.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/mman-linux.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/mman-shared.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/stat.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stat.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/fcntl.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/fcntl.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/fcntl-linux.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/errno.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/errno.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/linux/errno.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/asm/errno.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/asm-generic/errno.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/asm-generic/errno-base.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/string.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/libc-header-start.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/locale_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__locale_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/strings.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdio.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include/stdarg.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__fpos_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__mbstate_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__fpos64_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__FILE.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/FILE.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_FILE.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdio_lim.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/sys_errlist.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdio.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/unistd.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/posix_opt.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/environments.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/confname.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/getopt_posix.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/getopt_core.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/unistd_ext.h:
|
||||
|
||||
xmltchar.h:
|
||||
|
||||
../lib/expat_external.h:
|
||||
|
||||
filemap.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include-fixed/limits.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include-fixed/syslimits.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/limits.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/posix1_lim.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/local_lim.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/linux/limits.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/posix2_lim.h:
|
|
@ -1,247 +0,0 @@
|
|||
xmlwf-xmlfile.o: xmlfile.c \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdc-predef.h \
|
||||
../expat_config.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdio.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/libc-header-start.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/features.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/cdefs.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/wordsize.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/long-double.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/long-double-64.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/gnu/stubs.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/gnu/stubs-64-v1.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include/stddef.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include/stdarg.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/timesize.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/typesizes.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/time64.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__fpos_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__mbstate_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__fpos64_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__FILE.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/FILE.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_FILE.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdio_lim.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/sys_errlist.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdio.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdlib.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/waitflags.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/waitstatus.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn-64.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn-common.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/types.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/clock_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/clockid_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/time_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/timer_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdint-intn.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/endian.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/endian.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/byteswap.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/uintn-identity.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/select.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/select.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/sigset_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__sigset_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_timeval.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_timespec.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/pthreadtypes.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/thread-shared-types.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/pthreadtypes-arch.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/alloca.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdlib-bsearch.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdlib-float.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/string.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/locale_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__locale_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/strings.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/fcntl.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/fcntl.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/fcntl-linux.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stat.h \
|
||||
../lib/expat.h ../lib/expat_external.h ../lib/internal.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include-fixed/limits.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include-fixed/syslimits.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/limits.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/posix1_lim.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/local_lim.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/linux/limits.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/posix2_lim.h \
|
||||
../lib/expat.h xmlfile.h xmltchar.h ../lib/expat_external.h filemap.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/unistd.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/posix_opt.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/environments.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/confname.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/getopt_posix.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/getopt_core.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/unistd_ext.h
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdc-predef.h:
|
||||
|
||||
../expat_config.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdio.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/libc-header-start.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/features.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/cdefs.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/wordsize.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/long-double.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/long-double-64.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/gnu/stubs.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/gnu/stubs-64-v1.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include/stddef.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include/stdarg.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/timesize.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/typesizes.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/time64.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__fpos_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__mbstate_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__fpos64_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__FILE.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/FILE.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_FILE.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdio_lim.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/sys_errlist.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdio.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdlib.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/waitflags.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/waitstatus.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn-64.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn-common.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/types.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/clock_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/clockid_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/time_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/timer_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdint-intn.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/endian.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/endian.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/byteswap.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/uintn-identity.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/select.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/select.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/sigset_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__sigset_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_timeval.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_timespec.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/pthreadtypes.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/thread-shared-types.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/pthreadtypes-arch.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/alloca.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdlib-bsearch.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdlib-float.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/string.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/locale_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__locale_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/strings.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/fcntl.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/fcntl.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/fcntl-linux.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stat.h:
|
||||
|
||||
../lib/expat.h:
|
||||
|
||||
../lib/expat_external.h:
|
||||
|
||||
../lib/internal.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include-fixed/limits.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include-fixed/syslimits.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/limits.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/posix1_lim.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/local_lim.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/linux/limits.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/posix2_lim.h:
|
||||
|
||||
../lib/expat.h:
|
||||
|
||||
xmlfile.h:
|
||||
|
||||
xmltchar.h:
|
||||
|
||||
../lib/expat_external.h:
|
||||
|
||||
filemap.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/unistd.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/posix_opt.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/environments.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/confname.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/getopt_posix.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/getopt_core.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/unistd_ext.h:
|
|
@ -1,262 +0,0 @@
|
|||
xmlwf-xmlwf.o: xmlwf.c \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdc-predef.h \
|
||||
../expat_config.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/assert.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/features.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/cdefs.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/wordsize.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/long-double.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/long-double-64.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/gnu/stubs.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/gnu/stubs-64-v1.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdio.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/libc-header-start.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include/stddef.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include/stdarg.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/timesize.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/typesizes.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/time64.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__fpos_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__mbstate_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__fpos64_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__FILE.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/FILE.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_FILE.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdio_lim.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/sys_errlist.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdio.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdlib.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/waitflags.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/waitstatus.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn-64.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn-common.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/types.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/clock_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/clockid_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/time_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/timer_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdint-intn.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/endian.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/endian.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/byteswap.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/uintn-identity.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/select.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/select.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/sigset_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__sigset_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_timeval.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_timespec.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/pthreadtypes.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/thread-shared-types.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/pthreadtypes-arch.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/alloca.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdlib-bsearch.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdlib-float.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/string.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/locale_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__locale_t.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/strings.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/math.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/math-vector.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/libm-simd-decl-stubs.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/flt-eval-method.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/fp-logb.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/fp-fast.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/mathcalls-helper-functions.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/mathcalls.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/mathinline.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/errno.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/errno.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/linux/errno.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/asm/errno.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/asm-generic/errno.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/asm-generic/errno-base.h \
|
||||
../lib/expat.h ../lib/expat_external.h codepage.h ../lib/internal.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include-fixed/limits.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include-fixed/syslimits.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/limits.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/posix1_lim.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/local_lim.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/linux/limits.h \
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/posix2_lim.h \
|
||||
../lib/expat.h xmlfile.h xmltchar.h ../lib/expat_external.h
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdc-predef.h:
|
||||
|
||||
../expat_config.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/assert.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/features.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/cdefs.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/wordsize.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/long-double.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/long-double-64.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/gnu/stubs.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/gnu/stubs-64-v1.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdio.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/libc-header-start.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include/stddef.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include/stdarg.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/timesize.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/typesizes.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/time64.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__fpos_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__mbstate_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__fpos64_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__FILE.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/FILE.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_FILE.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdio_lim.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/sys_errlist.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdio.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/stdlib.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/waitflags.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/waitstatus.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn-64.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/floatn-common.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/types.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/clock_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/clockid_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/time_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/timer_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdint-intn.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/endian.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/endian.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/byteswap.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/uintn-identity.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/sys/select.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/select.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/sigset_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__sigset_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_timeval.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/struct_timespec.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/pthreadtypes.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/thread-shared-types.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/pthreadtypes-arch.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/alloca.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdlib-bsearch.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/stdlib-float.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/string.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/locale_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/types/__locale_t.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/strings.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/math.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/math-vector.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/libm-simd-decl-stubs.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/flt-eval-method.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/fp-logb.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/fp-fast.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/mathcalls-helper-functions.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/mathcalls.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/mathinline.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/errno.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/errno.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/linux/errno.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/asm/errno.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/asm-generic/errno.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/asm-generic/errno-base.h:
|
||||
|
||||
../lib/expat.h:
|
||||
|
||||
../lib/expat_external.h:
|
||||
|
||||
codepage.h:
|
||||
|
||||
../lib/internal.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include-fixed/limits.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/x86_64-fslsdk-linux/usr/lib/powerpc64-fsl-linux/gcc/powerpc64-fsl-linux/9.2.0/include-fixed/syslimits.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/limits.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/posix1_lim.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/local_lim.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/linux/limits.h:
|
||||
|
||||
/opt/fsl-qoriq/3.0/sysroots/ppc64e6500-fsl-linux/usr/include/bits/posix2_lim.h:
|
||||
|
||||
../lib/expat.h:
|
||||
|
||||
xmlfile.h:
|
||||
|
||||
xmltchar.h:
|
||||
|
||||
../lib/expat_external.h:
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue