Skip to content

Instantly share code, notes, and snippets.

@rsobik
Created November 17, 2013 13:20
Show Gist options
  • Star 85 You must be signed in to star a gist
  • Fork 40 You must be signed in to fork a gist
  • Save rsobik/7513324 to your computer and use it in GitHub Desktop.
Save rsobik/7513324 to your computer and use it in GitHub Desktop.
Build Boost 1.55.0 for iOS 7 and OS X including 64 Bit
#===============================================================================
# Filename: boost.sh
# Author: Pete Goodliffe
# Copyright: (c) Copyright 2009 Pete Goodliffe
# Licence: Please feel free to use this, with attribution
# Modified version
#===============================================================================
#
# Builds a Boost framework for the iPhone.
# Creates a set of universal libraries that can be used on an iPhone and in the
# iPhone simulator. Then creates a pseudo-framework to make using boost in Xcode
# less painful.
#
# To configure the script, define:
# BOOST_LIBS: which libraries to build
# IPHONE_SDKVERSION: iPhone SDK version (e.g. 5.1)
#
# Then go get the source tar.bz of the boost you want to build, shove it in the
# same directory as this script, and run "./boost.sh". Grab a cuppa. And voila.
#===============================================================================
: ${BOOST_LIBS:="random regex graph random chrono thread signals filesystem system date_time"}
: ${IPHONE_SDKVERSION:=`xcodebuild -showsdks | grep iphoneos | egrep "[[:digit:]]+\.[[:digit:]]+" -o | tail -1`}
: ${OSX_SDKVERSION:=10.8}
: ${XCODE_ROOT:=`xcode-select -print-path`}
: ${EXTRA_CPPFLAGS:="-DBOOST_AC_USE_PTHREADS -DBOOST_SP_USE_PTHREADS -std=c++11 -stdlib=libc++"}
# The EXTRA_CPPFLAGS definition works around a thread race issue in
# shared_ptr. I encountered this historically and have not verified that
# the fix is no longer required. Without using the posix thread primitives
# an invalid compare-and-swap ARM instruction (non-thread-safe) was used for the
# shared_ptr use count causing nasty and subtle bugs.
#
# Should perhaps also consider/use instead: -BOOST_SP_USE_PTHREADS
: ${TARBALLDIR:=`pwd`}
: ${SRCDIR:=`pwd`/src}
: ${IOSBUILDDIR:=`pwd`/ios/build}
: ${OSXBUILDDIR:=`pwd`/osx/build}
: ${PREFIXDIR:=`pwd`/ios/prefix}
: ${IOSFRAMEWORKDIR:=`pwd`/ios/framework}
: ${OSXFRAMEWORKDIR:=`pwd`/osx/framework}
: ${COMPILER:="clang++"}
: ${BOOST_VERSION:=1.55.0}
: ${BOOST_VERSION2:=1_55_0}
BOOST_TARBALL=$TARBALLDIR/boost_$BOOST_VERSION2.tar.bz2
BOOST_SRC=$SRCDIR/boost_${BOOST_VERSION2}
#===============================================================================
ARM_DEV_CMD="xcrun --sdk iphoneos"
SIM_DEV_CMD="xcrun --sdk iphonesimulator"
OSX_DEV_CMD="xcrun --sdk macosx"
ARM_COMBINED_LIB=$IOSBUILDDIR/lib_boost_arm.a
SIM_COMBINED_LIB=$IOSBUILDDIR/lib_boost_x86.a
#===============================================================================
#===============================================================================
# Functions
#===============================================================================
abort()
{
echo
echo "Aborted: $@"
exit 1
}
doneSection()
{
echo
echo "================================================================="
echo "Done"
echo
}
#===============================================================================
cleanEverythingReadyToStart()
{
echo Cleaning everything before we start to build...
rm -rf iphone-build iphonesim-build osx-build
rm -rf $IOSBUILDDIR
rm -rf $OSXBUILDDIR
rm -rf $PREFIXDIR
rm -rf $IOSFRAMEWORKDIR/$FRAMEWORK_NAME.framework
rm -rf $OSXFRAMEWORKDIR/$FRAMEWORK_NAME.framework
doneSection
}
#===============================================================================
downloadBoost()
{
if [ ! -s $TARBALLDIR/boost_${BOOST_VERSION2}.tar.bz2 ]; then
echo "Downloading boost ${BOOST_VERSION}"
curl -L -o $TARBALLDIR/boost_${BOOST_VERSION2}.tar.bz2 http://sourceforge.net/projects/boost/files/boost/${BOOST_VERSION}/boost_${BOOST_VERSION2}.tar.bz2/download
fi
doneSection
}
#===============================================================================
unpackBoost()
{
[ -f "$BOOST_TARBALL" ] || abort "Source tarball missing."
echo Unpacking boost into $SRCDIR...
[ -d $SRCDIR ] || mkdir -p $SRCDIR
[ -d $BOOST_SRC ] || ( cd $SRCDIR; tar xfj $BOOST_TARBALL )
[ -d $BOOST_SRC ] && echo " ...unpacked as $BOOST_SRC"
doneSection
}
#===============================================================================
restoreBoost()
{
cp $BOOST_SRC/tools/build/v2/user-config.jam-bk $BOOST_SRC/tools/build/v2/user-config.jam
}
#===============================================================================
updateBoost()
{
echo Updating boost into $BOOST_SRC...
cp $BOOST_SRC/tools/build/v2/user-config.jam $BOOST_SRC/tools/build/v2/user-config.jam-bk
cat >> $BOOST_SRC/tools/build/v2/user-config.jam <<EOF
using darwin : ${IPHONE_SDKVERSION}~iphone
: $XCODE_ROOT/Toolchains/XcodeDefault.xctoolchain/usr/bin/$COMPILER -arch armv6 -arch armv7 -arch armv7s -arch arm64 -fvisibility=hidden -fvisibility-inlines-hidden $EXTRA_CPPFLAGS
: <striper> <root>$XCODE_ROOT/Platforms/iPhoneOS.platform/Developer
: <architecture>arm <target-os>iphone
;
using darwin : ${IPHONE_SDKVERSION}~iphonesim
: $XCODE_ROOT/Toolchains/XcodeDefault.xctoolchain/usr/bin/$COMPILER -arch i386 -arch x86_64 -fvisibility=hidden -fvisibility-inlines-hidden $EXTRA_CPPFLAGS
: <striper> <root>$XCODE_ROOT/Platforms/iPhoneSimulator.platform/Developer
: <architecture>x86 <target-os>iphone
;
EOF
doneSection
}
#===============================================================================
inventMissingHeaders()
{
# These files are missing in the ARM iPhoneOS SDK, but they are in the simulator.
# They are supported on the device, so we copy them from x86 SDK to a staging area
# to use them on ARM, too.
echo Invent missing headers
cp $XCODE_ROOT/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator${IPHONE_SDKVERSION}.sdk/usr/include/{crt_externs,bzlib}.h $BOOST_SRC
}
#===============================================================================
bootstrapBoost()
{
cd $BOOST_SRC
BOOST_LIBS_COMMA=$(echo $BOOST_LIBS | sed -e "s/ /,/g")
echo "Bootstrapping (with libs $BOOST_LIBS_COMMA)"
./bootstrap.sh --with-libraries=$BOOST_LIBS_COMMA
doneSection
}
#===============================================================================
buildBoostForIPhoneOS()
{
cd $BOOST_SRC
# Install this one so we can copy the includes for the frameworks...
./bjam -j16 --build-dir=iphone-build --stagedir=iphone-build/stage --prefix=$PREFIXDIR toolset=darwin architecture=arm target-os=iphone macosx-version=iphone-${IPHONE_SDKVERSION} define=_LITTLE_ENDIAN link=static stage
./bjam -j16 --build-dir=iphone-build --stagedir=iphone-build/stage --prefix=$PREFIXDIR toolset=darwin architecture=arm target-os=iphone macosx-version=iphone-${IPHONE_SDKVERSION} define=_LITTLE_ENDIAN link=static install
doneSection
./bjam -j16 --build-dir=iphonesim-build --stagedir=iphonesim-build/stage --toolset=darwin-${IPHONE_SDKVERSION}~iphonesim architecture=x86 target-os=iphone macosx-version=iphonesim-${IPHONE_SDKVERSION} link=static stage
doneSection
./b2 -j16 --build-dir=osx-build --stagedir=osx-build/stage toolset=clang cxxflags="-std=c++11 -stdlib=libc++ -arch i386 -arch x86_64" linkflags="-stdlib=libc++" link=static threading=multi stage
doneSection
}
#===============================================================================
scrunchAllLibsTogetherInOneLibPerPlatform()
{
cd $BOOST_SRC
mkdir -p $IOSBUILDDIR/armv6/obj
mkdir -p $IOSBUILDDIR/armv7/obj
mkdir -p $IOSBUILDDIR/armv7s/obj
mkdir -p $IOSBUILDDIR/arm64/obj
mkdir -p $IOSBUILDDIR/i386/obj
mkdir -p $IOSBUILDDIR/x86_64/obj
mkdir -p $OSXBUILDDIR/i386/obj
mkdir -p $OSXBUILDDIR/x86_64/obj
ALL_LIBS=""
echo Splitting all existing fat binaries...
for NAME in $BOOST_LIBS; do
ALL_LIBS="$ALL_LIBS libboost_$NAME.a"
$ARM_DEV_CMD lipo "iphone-build/stage/lib/libboost_$NAME.a" -thin armv6 -o $IOSBUILDDIR/armv6/libboost_$NAME.a
$ARM_DEV_CMD lipo "iphone-build/stage/lib/libboost_$NAME.a" -thin armv7 -o $IOSBUILDDIR/armv7/libboost_$NAME.a
$ARM_DEV_CMD lipo "iphone-build/stage/lib/libboost_$NAME.a" -thin armv7s -o $IOSBUILDDIR/armv7s/libboost_$NAME.a
$ARM_DEV_CMD lipo "iphone-build/stage/lib/libboost_$NAME.a" -thin arm64 -o $IOSBUILDDIR/arm64/libboost_$NAME.a
$ARM_DEV_CMD lipo "iphonesim-build/stage/lib/libboost_$NAME.a" -thin i386 -o $IOSBUILDDIR/i386/libboost_$NAME.a
$ARM_DEV_CMD lipo "iphonesim-build/stage/lib/libboost_$NAME.a" -thin x86_64 -o $IOSBUILDDIR/x86_64/libboost_$NAME.a
$ARM_DEV_CMD lipo "osx-build/stage/lib/libboost_$NAME.a" -thin i386 -o $OSXBUILDDIR/i386/libboost_$NAME.a
$ARM_DEV_CMD lipo "osx-build/stage/lib/libboost_$NAME.a" -thin x86_64 -o $OSXBUILDDIR/x86_64/libboost_$NAME.a
done
echo "Decomposing each architecture's .a files"
for NAME in $ALL_LIBS; do
echo Decomposing $NAME...
(cd $IOSBUILDDIR/armv6/obj; ar -x ../$NAME );
(cd $IOSBUILDDIR/armv7/obj; ar -x ../$NAME );
(cd $IOSBUILDDIR/armv7s/obj; ar -x ../$NAME );
(cd $IOSBUILDDIR/arm64/obj; ar -x ../$NAME );
(cd $IOSBUILDDIR/i386/obj; ar -x ../$NAME );
(cd $IOSBUILDDIR/x86_64/obj; ar -x ../$NAME );
(cd $OSXBUILDDIR/i386/obj; ar -x ../$NAME );
(cd $OSXBUILDDIR/x86_64/obj; ar -x ../$NAME );
done
echo "Linking each architecture into an uberlib ($ALL_LIBS => libboost.a )"
rm $IOSBUILDDIR/*/libboost.a
echo ...armv6
(cd $IOSBUILDDIR/armv6; $ARM_DEV_CMD ar crus libboost.a obj/*.o; )
echo ...armv7
(cd $IOSBUILDDIR/armv7; $ARM_DEV_CMD ar crus libboost.a obj/*.o; )
echo ...armv7s
(cd $IOSBUILDDIR/armv7s; $ARM_DEV_CMD ar crus libboost.a obj/*.o; )
echo ...arm64
(cd $IOSBUILDDIR/arm64; $ARM_DEV_CMD ar crus libboost.a obj/*.o; )
echo ...i386
(cd $IOSBUILDDIR/i386; $SIM_DEV_CMD ar crus libboost.a obj/*.o; )
echo ...x86_64
(cd $IOSBUILDDIR/x86_64; $SIM_DEV_CMD ar crus libboost.a obj/*.o; )
rm $OSXBUILDDIR/*/libboost.a
echo ...osx-i386
(cd $OSXBUILDDIR/i386; $SIM_DEV_CMD ar crus libboost.a obj/*.o; )
echo ...x86_64
(cd $OSXBUILDDIR/x86_64; $SIM_DEV_CMD ar crus libboost.a obj/*.o; )
}
#===============================================================================
buildFramework()
{
: ${1:?}
FRAMEWORKDIR=$1
BUILDDIR=$2
VERSION_TYPE=Alpha
FRAMEWORK_NAME=boost
FRAMEWORK_VERSION=A
FRAMEWORK_CURRENT_VERSION=$BOOST_VERSION
FRAMEWORK_COMPATIBILITY_VERSION=$BOOST_VERSION
FRAMEWORK_BUNDLE=$FRAMEWORKDIR/$FRAMEWORK_NAME.framework
echo "Framework: Building $FRAMEWORK_BUNDLE from $BUILDDIR..."
rm -rf $FRAMEWORK_BUNDLE
echo "Framework: Setting up directories..."
mkdir -p $FRAMEWORK_BUNDLE
mkdir -p $FRAMEWORK_BUNDLE/Versions
mkdir -p $FRAMEWORK_BUNDLE/Versions/$FRAMEWORK_VERSION
mkdir -p $FRAMEWORK_BUNDLE/Versions/$FRAMEWORK_VERSION/Resources
mkdir -p $FRAMEWORK_BUNDLE/Versions/$FRAMEWORK_VERSION/Headers
mkdir -p $FRAMEWORK_BUNDLE/Versions/$FRAMEWORK_VERSION/Documentation
echo "Framework: Creating symlinks..."
ln -s $FRAMEWORK_VERSION $FRAMEWORK_BUNDLE/Versions/Current
ln -s Versions/Current/Headers $FRAMEWORK_BUNDLE/Headers
ln -s Versions/Current/Resources $FRAMEWORK_BUNDLE/Resources
ln -s Versions/Current/Documentation $FRAMEWORK_BUNDLE/Documentation
ln -s Versions/Current/$FRAMEWORK_NAME $FRAMEWORK_BUNDLE/$FRAMEWORK_NAME
FRAMEWORK_INSTALL_NAME=$FRAMEWORK_BUNDLE/Versions/$FRAMEWORK_VERSION/$FRAMEWORK_NAME
echo "Lipoing library into $FRAMEWORK_INSTALL_NAME..."
$ARM_DEV_CMD lipo -create $BUILDDIR/*/libboost.a -o "$FRAMEWORK_INSTALL_NAME" || abort "Lipo $1 failed"
echo "Framework: Copying includes..."
cp -r $PREFIXDIR/include/boost/* $FRAMEWORK_BUNDLE/Headers/
echo "Framework: Creating plist..."
cat > $FRAMEWORK_BUNDLE/Resources/Info.plist <<EOF
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleExecutable</key>
<string>${FRAMEWORK_NAME}</string>
<key>CFBundleIdentifier</key>
<string>org.boost</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>${FRAMEWORK_CURRENT_VERSION}</string>
</dict>
</plist>
EOF
doneSection
}
#===============================================================================
# Execution starts here
#===============================================================================
mkdir -p $IOSBUILDDIR
cleanEverythingReadyToStart #may want to comment if repeatedly running during dev
restoreBoost
echo "BOOST_VERSION: $BOOST_VERSION"
echo "BOOST_LIBS: $BOOST_LIBS"
echo "BOOST_SRC: $BOOST_SRC"
echo "IOSBUILDDIR: $IOSBUILDDIR"
echo "OSXBUILDDIR: $OSXBUILDDIR"
echo "PREFIXDIR: $PREFIXDIR"
echo "IOSFRAMEWORKDIR: $IOSFRAMEWORKDIR"
echo "OSXFRAMEWORKDIR: $OSXFRAMEWORKDIR"
echo "IPHONE_SDKVERSION: $IPHONE_SDKVERSION"
echo "XCODE_ROOT: $XCODE_ROOT"
echo "COMPILER: $COMPILER"
echo
downloadBoost
unpackBoost
#inventMissingHeaders
bootstrapBoost
updateBoost
buildBoostForIPhoneOS
scrunchAllLibsTogetherInOneLibPerPlatform
buildFramework $IOSFRAMEWORKDIR $IOSBUILDDIR
buildFramework $OSXFRAMEWORKDIR $OSXBUILDDIR
restoreBoost
echo "Completed successfully"
#===============================================================================
@Aciid
Copy link

Aciid commented Mar 29, 2014

Thanks =)

@elephanter
Copy link

thank you

@vbbjq
Copy link

vbbjq commented Apr 23, 2014

great, thanks

@jmowla
Copy link

jmowla commented May 7, 2014

Thanks, Great job!

I have a question here, I want to put all sources within the project and build them as an iOS archive. any idea?

@ivan-ushakov
Copy link

Thank you for this script, it helps a lot. The only thing is for some reason it doesn't build thread library for i386 (simulator). All other architectures are fine. Could you please help with this issue?

@Tyzual
Copy link

Tyzual commented Jun 19, 2014

thanks a lot.

@faithfracture
Copy link

I was unable to build for the iPhoneSimulator using this script. I kept getting an error saying:

-ftemplate-depth-128 command not found

After MUCH trial and error, I finally discovered that the problem was the user-config.jam that is generated in the updateBoost() method. The fix for me was to change the configuration for the simulator from this:

using darwin : ${IPHONE_SDKVERSION}~iphonesim
: $XCODE_ROOT/Toolchains/XcodeDefault.xctoolchain/usr/bin/$COMPILER -arch i386 -arch x86_64 -fvisibility=hidden -fvisibility-inlines-hidden $EXTRA_CPPFLAGS
: $XCODE_ROOT/Platforms/iPhoneSimulator.platform/Developer
: x86 iphone

to this:

using darwin : ${IPHONE_SDKVERSION}~iphonesim
: g++ -arch i386 -arch x86_64 -fvisibility=hidden -fvisibility-inlines-hidden $EXTRA_CPPFLAGS
: $XCODE_ROOT/Platforms/iPhoneSimulator.platform/Developer
: x86 iphone

Here's why this works (at least on my system).

clang++ --version outputs the following:
Apple LLVM version 5.1 (clang-503.0.40) (based on LLVM 3.4svn)
Target: x86_64-apple-darwin13.2.0
Thread model: posix

while g++ --version gives this:
Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/usr/include/c++/4.2.1
Apple LLVM version 5.1 (clang-503.0.40) (based on LLVM 3.4svn)
Target: x86_64-apple-darwin13.2.0
Thread model: posix

Seems that in order to build for the simulator, that --with-gxx-include-dir flag is important.

There's probably a different way to go about that, but this is what I did to get it working, at least on my system.

@faithfracture
Copy link

Since this is obviously not getting updated, here's a link to a gist I created that actually DOES build boost for all current versions iOS, iOS Simulator, and OSX:
https://gist.github.com/faithfracture/c629ae4c7168216a9856

@wlrwxer
Copy link

wlrwxer commented Nov 21, 2014

thank you for the great job.

@starfalling
Copy link

Woo, just what we need. Thanks for sharing

@avtomaton
Copy link

Thanks you, very helpful!

@mamunabcoder
Copy link

mamunabcoder commented Feb 18, 2022

Can you update the boost.sh file for latest Xcode? I want to build 1.76.0 version and also I want to use it into mlpack library.

When build this boost for version 1.76.0 found some errors:

sh ./boost.sh
Cleaning everything before we start to build...

=================================================================
Done

cp: /Users/bjit/Work/JASMY/Framework/mlpack-ios/boostmake/src/boost_1_76_0/tools/build/v2/user-config.jam-bk: No such file or directory
BOOST_VERSION: 1.76.0
BOOST_LIBS: program_options random test math
BOOST_SRC: /Users/bjit/Work/JASMY/Framework/mlpack-ios/boostmake/src/boost_1_76_0
IOSBUILDDIR: /Users/bjit/Work/JASMY/Framework/mlpack-ios/boostmake/ios/build
OSXBUILDDIR: /Users/bjit/Work/JASMY/Framework/mlpack-ios/boostmake/osx/build
PREFIXDIR: /Users/bjit/Work/JASMY/Framework/mlpack-ios/boostmake/ios/prefix
IOSFRAMEWORKDIR: /Users/bjit/Work/JASMY/Framework/mlpack-ios/boostmake/ios/framework
OSXFRAMEWORKDIR: /Users/bjit/Work/JASMY/Framework/mlpack-ios/boostmake/osx/framework
IPHONE_SDKVERSION: 13.1
XCODE_ROOT: /Applications/Xcode.app/Contents/Developer
COMPILER: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++

Downloading boost 1.76.0
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 162 100 162 0 0 216 0 --:--:-- --:--:-- --:--:-- 216
100 623 100 623 0 0 285 0 0:00:02 0:00:02 --:--:-- 2781
100 349 100 349 0 0 82 0 0:00:04 0:00:04 --:--:-- 285
100 104M 100 104M 0 0 497k 0 0:03:35 0:03:35 --:--:-- 589k

=================================================================
Done

Unpacking boost into /Users/bjit/Work/JASMY/Framework/mlpack-ios/boostmake/src...
...unpacked as /Users/bjit/Work/JASMY/Framework/mlpack-ios/boostmake/src/boost_1_76_0

=================================================================
Done

Bootstrapping (with libs program_options,random,test,math)
Building B2 engine..

Using 'clang' toolset.

Apple clang version 13.0.0 (clang-1300.0.29.3)
Target: arm64-apple-darwin21.2.0
Thread model: posix
InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin

clang++ -x c++ -std=c++11 -O3 -s -DNDEBUG builtins.cpp class.cpp command.cpp compile.cpp constants.cpp cwd.cpp debug.cpp debugger.cpp execcmd.cpp execnt.cpp execunix.cpp filesys.cpp filent.cpp fileunix.cpp frames.cpp function.cpp glob.cpp hash.cpp hcache.cpp hdrmacro.cpp headers.cpp jam_strings.cpp jam.cpp jamgram.cpp lists.cpp make.cpp make1.cpp md5.cpp mem.cpp modules.cpp native.cpp object.cpp option.cpp output.cpp parse.cpp pathnt.cpp pathsys.cpp pathunix.cpp regexp.cpp rules.cpp scan.cpp search.cpp startup.cpp subst.cpp sysinfo.cpp timestamp.cpp variable.cpp w32_getreg.cpp modules/order.cpp modules/path.cpp modules/property-set.cpp modules/regex.cpp modules/sequence.cpp modules/set.cpp -o b2
ld: warning: option -s is obsolete and being ignored
cp b2 bjam
tools/build/src/engine/b2
Unicode/ICU support for Boost.Regex?... not found.
Generating B2 configuration in project-config.jam for clang...

Bootstrapping is done. To build, run:

./b2

To generate header files, run:

./b2 headers

The configuration generated uses clang to build by default. If that is
unintended either use the --with-toolset option or adjust configuration, by
editing 'project-config.jam'.

Further information:

=================================================================
Done

Updating boost into /Users/bjit/Work/JASMY/Framework/mlpack-ios/boostmake/src/boost_1_76_0...
cp: /Users/bjit/Work/JASMY/Framework/mlpack-ios/boostmake/src/boost_1_76_0/tools/build/v2/user-config.jam: No such file or directory
./boost.sh: line 139: /Users/bjit/Work/JASMY/Framework/mlpack-ios/boostmake/src/boost_1_76_0/tools/build/v2/user-config.jam: No such file or directory

=================================================================
Done

./boost.sh: line 187: ./bjam: No such file or directory
./boost.sh: line 188: ./bjam: No such file or directory

=================================================================
Done

./boost.sh: line 191: ./bjam: No such file or directory

=================================================================
Done

Performing configuration checks

- default address-model    : none [1]
- default architecture     : x86 [1]
- gcc visibility           : yes [2]
- cxx11_noexcept           : yes [2]
- cxx11_rvalue_references  : yes [2]
- sfinae_expr              : yes [2]
- cxx11_auto_declarations  : yes [2]
- cxx11_lambdas            : yes [2]
- cxx11_unified_initialization_syntax : yes [2]
- cxx11_hdr_tuple          : yes [2]
- cxx11_hdr_initializer_list : yes [2]
- cxx11_hdr_chrono         : yes [2]
- cxx11_thread_local       : yes [2]
- cxx11_constexpr          : yes [2]
- cxx11_nullptr            : yes [2]
- cxx11_numeric_limits     : yes [2]
- cxx11_decltype           : yes [2]
- cxx11_hdr_array          : yes [2]
- cxx11_hdr_atomic         : yes [2]
- cxx11_hdr_type_traits    : yes [2]
- cxx11_allocator          : yes [2]
- cxx11_explicit_conversion_operators : yes [2]
- long double support      : yes [2]
- BOOST_COMP_GNUC >= 4.3.0 : no [2]

[1] clang-13.0
[2] clang-darwin-13.0/release/link-static/python-2.7/threadapi-pthread/threading-multi/visibility-hidden

Component configuration:

- atomic                   : not building
- chrono                   : not building
- container                : not building
- context                  : not building
- contract                 : not building
- coroutine                : not building
- date_time                : not building
- exception                : not building
- fiber                    : not building
- filesystem               : not building
- graph                    : not building
- graph_parallel           : not building
- headers                  : not building
- iostreams                : not building
- json                     : not building
- locale                   : not building
- log                      : not building
- math                     : building
- mpi                      : not building
- nowide                   : not building
- program_options          : building
- python                   : not building
- random                   : building
- regex                    : not building
- serialization            : not building
- stacktrace               : not building
- system                   : not building
- test                     : building
- thread                   : not building
- timer                    : not building
- type_erasure             : not building
- wave                     : not building

...patience...
...found 2714 targets...
...updating 328 targets...
boost-install.generate-cmake-config- osx-build/boost/bin.v2/libs/math/build/stage/boost_math_c99-config.cmake
boost-install.generate-cmake-config-version- osx-build/boost/bin.v2/libs/math/build/stage/boost_math_c99-config-version.cmake
boost-install.generate-cmake-config- osx-build/boost/bin.v2/libs/math/build/stage/boost_math_c99f-config.cmake
boost-install.generate-cmake-config-version- osx-build/boost/bin.v2/libs/math/build/stage/boost_math_c99f-config-version.cmake
boost-install.generate-cmake-config- osx-build/boost/bin.v2/libs/math/build/stage/boost_math_c99l-config.cmake
boost-install.generate-cmake-config-version- osx-build/boost/bin.v2/libs/math/build/stage/boost_math_c99l-config-version.cmake
boost-install.generate-cmake-config- osx-build/boost/bin.v2/libs/math/build/stage/boost_math_tr1-config.cmake
boost-install.generate-cmake-config-version- osx-build/boost/bin.v2/libs/math/build/stage/boost_math_tr1-config-version.cmake
boost-install.generate-cmake-config- osx-build/boost/bin.v2/libs/math/build/stage/boost_math_tr1f-config.cmake
boost-install.generate-cmake-config-version- osx-build/boost/bin.v2/libs/math/build/stage/boost_math_tr1f-config-version.cmake
boost-install.generate-cmake-config- osx-build/boost/bin.v2/libs/random/build/stage/boost_random-config.cmake
boost-install.generate-cmake-config-version- osx-build/boost/bin.v2/libs/random/build/stage/boost_random-config-version.cmake
boost-install.generate-cmake-config- osx-build/boost/bin.v2/libs/test/build/stage/boost_prg_exec_monitor-config.cmake
boost-install.generate-cmake-config- osx-build/boost/bin.v2/libs/program_options/build/stage/boost_program_options-config.cmake
boost-install.generate-cmake-config-version- osx-build/boost/bin.v2/libs/program_options/build/stage/boost_program_options-config-version.cmake
common.copy /Users/bjit/Work/JASMY/Framework/mlpack-ios/boostmake/src/boost_1_76_0/osx-build/stage/lib/cmake/boost_math_c99f-1.76.0/boost_math_c99f-config.cmake
boost-install.generate-cmake-config- osx-build/boost/bin.v2/libs/headers/build/stage/boost_headers-config.cmake
boost-install.generate-cmake-config-version- osx-build/boost/bin.v2/libs/headers/build/stage/boost_headers-config-version.cmake
common.copy /Users/bjit/Work/JASMY/Framework/mlpack-ios/boostmake/src/boost_1_76_0/osx-build/stage/lib/cmake/BoostDetectToolset-1.76.0.cmake
common.copy /Users/bjit/Work/JASMY/Framework/mlpack-ios/boostmake/src/boost_1_76_0/osx-build/stage/lib/cmake/boost_math_tr1f-1.76.0/boost_math_tr1f-config.cmake
common.copy /Users/bjit/Work/JASMY/Framework/mlpack-ios/boostmake/src/boost_1_76_0/osx-build/stage/lib/cmake/boost_math_tr1f-1.76.0/boost_math_tr1f-config-version.cmake
common.copy /Users/bjit/Work/JASMY/Framework/mlpack-ios/boostmake/src/boost_1_76_0/osx-build/stage/lib/cmake/boost_math_tr1-1.76.0/boost_math_tr1-config.cmake
common.copy /Users/bjit/Work/JASMY/Framework/mlpack-ios/boostmake/src/boost_1_76_0/osx-build/stage/lib/cmake/Boost-1.76.0/BoostConfig.cmake
common.copy /Users/bjit/Work/JASMY/Framework/mlpack-ios/boostmake/src/boost_1_76_0/osx-build/stage/lib/cmake/boost_math_tr1-1.76.0/boost_math_tr1-config-version.cmake
common.copy /Users/bjit/Work/JASMY/Framework/mlpack-ios/boostmake/src/boost_1_76_0/osx-build/stage/lib/cmake/boost_math_c99f-1.76.0/boost_math_c99f-config-version.cmake
common.copy /Users/bjit/Work/JASMY/Framework/mlpack-ios/boostmake/src/boost_1_76_0/osx-build/stage/lib/cmake/boost_prg_exec_monitor-1.76.0/boost_prg_exec_monitor-config.cmake
common.copy /Users/bjit/Work/JASMY/Framework/mlpack-ios/boostmake/src/boost_1_76_0/osx-build/stage/lib/cmake/boost_random-1.76.0/boost_random-config.cmake
common.copy /Users/bjit/Work/JASMY/Framework/mlpack-ios/boostmake/src/boost_1_76_0/osx-build/stage/lib/cmake/boost_random-1.76.0/boost_random-config-version.cmake
common.copy /Users/bjit/Work/JASMY/Framework/mlpack-ios/boostmake/src/boost_1_76_0/osx-build/stage/lib/cmake/boost_program_options-1.76.0/boost_program_options-config.cmake
common.copy /Users/bjit/Work/JASMY/Framework/mlpack-ios/boostmake/src/boost_1_76_0/osx-build/stage/lib/cmake/boost_math_c99l-1.76.0/boost_math_c99l-config.cmake
common.copy /Users/bjit/Work/JASMY/Framework/mlpack-ios/boostmake/src/boost_1_76_0/osx-build/stage/lib/cmake/boost_math_c99l-1.76.0/boost_math_c99l-config-version.cmake
boost-install.generate-cmake-config-version- osx-build/boost/bin.v2/libs/test/build/stage/boost_prg_exec_monitor-config-version.cmake
boost-install.generate-cmake-config- osx-build/boost/bin.v2/libs/test/build/stage/boost_test_exec_monitor-config.cmake
boost-install.generate-cmake-config-version- osx-build/boost/bin.v2/libs/test/build/stage/boost_test_exec_monitor-config-version.cmake
boost-install.generate-cmake-config- osx-build/boost/bin.v2/libs/test/build/stage/boost_unit_test_framework-config.cmake
common.copy /Users/bjit/Work/JASMY/Framework/mlpack-ios/boostmake/src/boost_1_76_0/osx-build/stage/lib/cmake/boost_program_options-1.76.0/boost_program_options-config-version.cmake
common.copy /Users/bjit/Work/JASMY/Framework/mlpack-ios/boostmake/src/boost_1_76_0/osx-build/stage/lib/cmake/boost_headers-1.76.0/boost_headers-config.cmake
common.copy /Users/bjit/Work/JASMY/Framework/mlpack-ios/boostmake/src/boost_1_76_0/osx-build/stage/lib/cmake/boost_headers-1.76.0/boost_headers-config-version.cmake
...on 100th target...
common.copy /Users/bjit/Work/JASMY/Framework/mlpack-ios/boostmake/src/boost_1_76_0/osx-build/stage/lib/cmake/boost_prg_exec_monitor-1.76.0/boost_prg_exec_monitor-config-version.cmake
common.copy /Users/bjit/Work/JASMY/Framework/mlpack-ios/boostmake/src/boost_1_76_0/osx-build/stage/lib/cmake/boost_test_exec_monitor-1.76.0/boost_test_exec_monitor-config.cmake
common.copy /Users/bjit/Work/JASMY/Framework/mlpack-ios/boostmake/src/boost_1_76_0/osx-build/stage/lib/cmake/boost_test_exec_monitor-1.76.0/boost_test_exec_monitor-config-version.cmake
common.copy /Users/bjit/Work/JASMY/Framework/mlpack-ios/boostmake/src/boost_1_76_0/osx-build/stage/lib/cmake/boost_unit_test_framework-1.76.0/boost_unit_test_framework-config.cmake
boost-install.generate-cmake-config-version- osx-build/boost/bin.v2/libs/test/build/stage/boost_unit_test_framework-config-version.cmake
boost-install.generate-cmake-config-version- osx-build/boost/bin.v2/tools/boost_install/BoostConfigVersion.cmake
common.copy /Users/bjit/Work/JASMY/Framework/mlpack-ios/boostmake/src/boost_1_76_0/osx-build/stage/lib/cmake/boost_math_c99-1.76.0/boost_math_c99-config-version.cmake
common.copy /Users/bjit/Work/JASMY/Framework/mlpack-ios/boostmake/src/boost_1_76_0/osx-build/stage/lib/cmake/boost_unit_test_framework-1.76.0/boost_unit_test_framework-config-version.cmake
common.copy /Users/bjit/Work/JASMY/Framework/mlpack-ios/boostmake/src/boost_1_76_0/osx-build/stage/lib/cmake/Boost-1.76.0/BoostConfigVersion.cmake
clang-darwin.compile.c++ osx-build/boost/bin.v2/libs/program_options/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden/positional_options.o
clang-darwin.compile.c++ osx-build/boost/bin.v2/libs/program_options/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden/utf8_codecvt_facet.o
clang-darwin.compile.c++ osx-build/boost/bin.v2/libs/test/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden/debug.o
clang-darwin.compile.c++ osx-build/boost/bin.v2/libs/random/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden/random_device.o
clang-darwin.compile.c++ osx-build/boost/bin.v2/libs/test/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden/cpp_main.o
clang-darwin.compile.c++ osx-build/boost/bin.v2/libs/program_options/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden/convert.o
In file included from libs/program_options/src/convert.cpp:22:
./boost/bind.hpp:36:1: warning: The practice of declaring the Bind placeholders (_1, _2, ...) in the global namespace is deprecated. Please use <boost/bind/bind.hpp> + using namespace boost::placeholders, or define BOOST_BIND_GLOBAL_PLACEHOLDERS to retain the current behavior. [-W#pragma-messages]
BOOST_PRAGMA_MESSAGE(
^
./boost/config/pragma_message.hpp:24:34: note: expanded from macro 'BOOST_PRAGMA_MESSAGE'

define BOOST_PRAGMA_MESSAGE(x) _Pragma(BOOST_STRINGIZE(message(x)))

                             ^

:280:2: note: expanded from here
message("The practice of declaring the Bind placeholders (_1, _2, ...) " "in the global namespace is deprecated. Please use " "<boost/bind/bind.hpp> + using namespace boost::placeholders, " "or define BOOST_BIND_GLOBAL_PLACEHOLDERS to retain the current behavior.")
^
1 warning generated.
In file included from libs/program_options/src/convert.cpp:22:
./boost/bind.hpp:36:1: warning: The practice of declaring the Bind placeholders (_1, _2, ...) in the global namespace is deprecated. Please use <boost/bind/bind.hpp> + using namespace boost::placeholders, or define BOOST_BIND_GLOBAL_PLACEHOLDERS to retain the current behavior. [-W#pragma-messages]
BOOST_PRAGMA_MESSAGE(
^
./boost/config/pragma_message.hpp:24:34: note: expanded from macro 'BOOST_PRAGMA_MESSAGE'

define BOOST_PRAGMA_MESSAGE(x) _Pragma(BOOST_STRINGIZE(message(x)))

                             ^

:280:2: note: expanded from here
message("The practice of declaring the Bind placeholders (_1, _2, ...) " "in the global namespace is deprecated. Please use " "<boost/bind/bind.hpp> + using namespace boost::placeholders, " "or define BOOST_BIND_GLOBAL_PLACEHOLDERS to retain the current behavior.")
^
1 warning generated.
clang-darwin.archive osx-build/boost/bin.v2/libs/random/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden/libboost_random.a
common.copy /Users/bjit/Work/JASMY/Framework/mlpack-ios/boostmake/src/boost_1_76_0/osx-build/stage/lib/libboost_random.a
boost-install.generate-cmake-variant- osx-build/boost/bin.v2/libs/random/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden/libboost_random-variant-static.cmake
common.copy /Users/bjit/Work/JASMY/Framework/mlpack-ios/boostmake/src/boost_1_76_0/osx-build/stage/lib/cmake/boost_random-1.76.0/libboost_random-variant-static.cmake
clang-darwin.compile.c++ osx-build/boost/bin.v2/libs/program_options/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden/winmain.o
clang-darwin.compile.c++ osx-build/boost/bin.v2/libs/test/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden/compiler_log_formatter.o
clang-darwin.compile.c++ osx-build/boost/bin.v2/libs/test/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden/execution_monitor.o
clang-darwin.compile.c++ osx-build/boost/bin.v2/libs/test/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden/test_framework_init_observer.o
clang-darwin.archive osx-build/boost/bin.v2/libs/test/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden/libboost_prg_exec_monitor.a
common.copy /Users/bjit/Work/JASMY/Framework/mlpack-ios/boostmake/src/boost_1_76_0/osx-build/stage/lib/libboost_prg_exec_monitor.a
clang-darwin.compile.c++ osx-build/boost/bin.v2/libs/program_options/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden/config_file.o
clang-darwin.compile.c++ osx-build/boost/bin.v2/libs/program_options/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden/split.o
clang-darwin.compile.c++ osx-build/boost/bin.v2/libs/test/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden/results_reporter.o
clang-darwin.compile.c++ osx-build/boost/bin.v2/libs/test/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden/plain_report_formatter.o
clang-darwin.compile.c++ osx-build/boost/bin.v2/libs/test/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden/results_collector.o
clang-darwin.compile.c++ osx-build/boost/bin.v2/libs/test/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden/progress_monitor.o
clang-darwin.compile.c++ osx-build/boost/bin.v2/libs/test/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden/decorator.o
clang-darwin.compile.c++ osx-build/boost/bin.v2/libs/program_options/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden/variables_map.o
boost-install.generate-cmake-variant- osx-build/boost/bin.v2/libs/test/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden/libboost_prg_exec_monitor-variant-static.cmake
common.copy /Users/bjit/Work/JASMY/Framework/mlpack-ios/boostmake/src/boost_1_76_0/osx-build/stage/lib/cmake/boost_prg_exec_monitor-1.76.0/libboost_prg_exec_monitor-variant-static.cmake
common.copy /Users/bjit/Work/JASMY/Framework/mlpack-ios/boostmake/src/boost_1_76_0/osx-build/stage/lib/cmake/boost_math_c99-1.76.0/boost_math_c99-config.cmake
boost-install.generate-cmake-config- osx-build/boost/bin.v2/libs/math/build/stage/boost_math_tr1l-config.cmake
common.copy /Users/bjit/Work/JASMY/Framework/mlpack-ios/boostmake/src/boost_1_76_0/osx-build/stage/lib/cmake/boost_math_tr1l-1.76.0/boost_math_tr1l-config.cmake
boost-install.generate-cmake-config-version- osx-build/boost/bin.v2/libs/math/build/stage/boost_math_tr1l-config-version.cmake
common.copy /Users/bjit/Work/JASMY/Framework/mlpack-ios/boostmake/src/boost_1_76_0/osx-build/stage/lib/cmake/boost_math_tr1l-1.76.0/boost_math_tr1l-config-version.cmake
clang-darwin.compile.c++.pch osx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden/../src/tr1/pch.hpp.pch
clang: error: cannot use 'precompiled-header' output with multiple -arch options

"clang++" -c -x c++-header -fvisibility-inlines-hidden -O3 -Wall -fvisibility=hidden -Wno-inline -std=c++11 -stdlib=libc++ -arch i386 -arch x86_64 -DBOOST_ALL_NO_LIB=1 -DBOOST_BUILD_PCH_ENABLED -DNDEBUG -I"." -I"libs/math/src/tr1" -o "osx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden/../src/tr1/pch.hpp.pch" "libs/math/build/../src/tr1/pch.hpp"

...failed clang-darwin.compile.c++.pch osx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden/../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>acosh.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>asinh.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>atanh.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>cbrt.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>copysign.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>erfc.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>erf.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>expm1.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>fmax.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>fmin.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>fpclassify.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>hypot.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>lgamma.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>llround.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>log1p.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>lround.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>nextafter.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>nexttoward.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>round.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>tgamma.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>trunc.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>libboost_math_c99.a(clean) for lack of <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>acosh.o...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>libboost_math_c99.a for lack of <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>acosh.o...
...skipped <p/Users/bjit/Work/JASMY/Framework/mlpack-ios/boostmake/src/boost_1_76_0/osx-build/stage/lib>libboost_math_c99.a for lack of <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>libboost_math_c99.a...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>acoshf.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>asinhf.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>atanhf.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>cbrtf.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>copysignf.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>erfcf.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>erff.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>expm1f.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>fmaxf.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>fminf.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>fpclassifyf.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>hypotf.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>lgammaf.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>llroundf.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>log1pf.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>lroundf.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>nextafterf.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>nexttowardf.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>roundf.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>tgammaf.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>truncf.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>libboost_math_c99f.a(clean) for lack of <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>acoshf.o...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>libboost_math_c99f.a for lack of <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>acoshf.o...
...skipped <p/Users/bjit/Work/JASMY/Framework/mlpack-ios/boostmake/src/boost_1_76_0/osx-build/stage/lib>libboost_math_c99f.a for lack of <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>libboost_math_c99f.a...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>acoshl.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>asinhl.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>atanhl.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>cbrtl.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>copysignl.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>erfcl.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>erfl.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>expm1l.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>fmaxl.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>fminl.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>fpclassifyl.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>hypotl.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>lgammal.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>llroundl.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>log1pl.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>lroundl.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>nextafterl.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>nexttowardl.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>roundl.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>tgammal.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>truncl.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>libboost_math_c99l.a(clean) for lack of <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>acoshl.o...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>libboost_math_c99l.a for lack of <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>acoshl.o...
...skipped <p/Users/bjit/Work/JASMY/Framework/mlpack-ios/boostmake/src/boost_1_76_0/osx-build/stage/lib>libboost_math_c99l.a for lack of <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>libboost_math_c99l.a...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>assoc_laguerre.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>assoc_legendre.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>beta.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>comp_ellint_1.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>comp_ellint_2.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>comp_ellint_3.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>cyl_bessel_i.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>cyl_bessel_j.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>cyl_bessel_k.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>cyl_neumann.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>ellint_1.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>ellint_2.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>ellint_3.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>expint.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>hermite.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>laguerre.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>legendre.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>riemann_zeta.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>sph_bessel.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>sph_legendre.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>sph_neumann.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>libboost_math_tr1.a(clean) for lack of <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>assoc_laguerre.o...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>libboost_math_tr1.a for lack of <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>assoc_laguerre.o...
...skipped <p/Users/bjit/Work/JASMY/Framework/mlpack-ios/boostmake/src/boost_1_76_0/osx-build/stage/lib>libboost_math_tr1.a for lack of <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>libboost_math_tr1.a...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>assoc_laguerref.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>assoc_legendref.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>betaf.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>comp_ellint_1f.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>comp_ellint_2f.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>comp_ellint_3f.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>cyl_bessel_if.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>cyl_bessel_jf.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>cyl_bessel_kf.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>cyl_neumannf.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>ellint_1f.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>ellint_2f.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>ellint_3f.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>expintf.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>hermitef.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>laguerref.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>legendref.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>riemann_zetaf.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>sph_besself.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>sph_legendref.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>sph_neumannf.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>libboost_math_tr1f.a(clean) for lack of <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>assoc_laguerref.o...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>libboost_math_tr1f.a for lack of <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>assoc_laguerref.o...
...skipped <p/Users/bjit/Work/JASMY/Framework/mlpack-ios/boostmake/src/boost_1_76_0/osx-build/stage/lib>libboost_math_tr1f.a for lack of <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>libboost_math_tr1f.a...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>assoc_laguerrel.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>assoc_legendrel.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>betal.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>comp_ellint_1l.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>comp_ellint_2l.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>comp_ellint_3l.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>cyl_bessel_il.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>cyl_bessel_jl.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>cyl_bessel_kl.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>cyl_neumannl.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>ellint_1l.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>ellint_2l.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>ellint_3l.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>expintl.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>hermitel.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>laguerrel.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>legendrel.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>riemann_zetal.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>sph_bessell.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>sph_legendrel.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>sph_neumannl.o for lack of <posx-build/boost/bin.v2/libs/math/build/pch/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>../src/tr1/pch.hpp.pch...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>libboost_math_tr1l.a(clean) for lack of <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>assoc_laguerrel.o...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>libboost_math_tr1l.a for lack of <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>assoc_laguerrel.o...
...skipped <p/Users/bjit/Work/JASMY/Framework/mlpack-ios/boostmake/src/boost_1_76_0/osx-build/stage/lib>libboost_math_tr1l.a for lack of <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>libboost_math_tr1l.a...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>libboost_math_c99-variant-static.cmake for lack of <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>libboost_math_c99.a...
...skipped <p/Users/bjit/Work/JASMY/Framework/mlpack-ios/boostmake/src/boost_1_76_0/osx-build/stage/lib/cmake/boost_math_c99-1.76.0>libboost_math_c99-variant-static.cmake for lack of <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>libboost_math_c99-variant-static.cmake...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>libboost_math_c99f-variant-static.cmake for lack of <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>libboost_math_c99f.a...
...skipped <p/Users/bjit/Work/JASMY/Framework/mlpack-ios/boostmake/src/boost_1_76_0/osx-build/stage/lib/cmake/boost_math_c99f-1.76.0>libboost_math_c99f-variant-static.cmake for lack of <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>libboost_math_c99f-variant-static.cmake...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>libboost_math_c99l-variant-static.cmake for lack of <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>libboost_math_c99l.a...
...skipped <p/Users/bjit/Work/JASMY/Framework/mlpack-ios/boostmake/src/boost_1_76_0/osx-build/stage/lib/cmake/boost_math_c99l-1.76.0>libboost_math_c99l-variant-static.cmake for lack of <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>libboost_math_c99l-variant-static.cmake...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>libboost_math_tr1-variant-static.cmake for lack of <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>libboost_math_tr1.a...
...skipped <p/Users/bjit/Work/JASMY/Framework/mlpack-ios/boostmake/src/boost_1_76_0/osx-build/stage/lib/cmake/boost_math_tr1-1.76.0>libboost_math_tr1-variant-static.cmake for lack of <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>libboost_math_tr1-variant-static.cmake...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>libboost_math_tr1f-variant-static.cmake for lack of <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>libboost_math_tr1f.a...
...skipped <p/Users/bjit/Work/JASMY/Framework/mlpack-ios/boostmake/src/boost_1_76_0/osx-build/stage/lib/cmake/boost_math_tr1f-1.76.0>libboost_math_tr1f-variant-static.cmake for lack of <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>libboost_math_tr1f-variant-static.cmake...
...skipped <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>libboost_math_tr1l-variant-static.cmake for lack of <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>libboost_math_tr1l.a...
...skipped <p/Users/bjit/Work/JASMY/Framework/mlpack-ios/boostmake/src/boost_1_76_0/osx-build/stage/lib/cmake/boost_math_tr1l-1.76.0>libboost_math_tr1l-variant-static.cmake for lack of <posx-build/boost/bin.v2/libs/math/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden>libboost_math_tr1l-variant-static.cmake...
clang-darwin.compile.c++ osx-build/boost/bin.v2/libs/test/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden/test_main.o
clang-darwin.compile.c++ osx-build/boost/bin.v2/libs/program_options/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden/value_semantic.o
clang-darwin.compile.c++ osx-build/boost/bin.v2/libs/program_options/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden/cmdline.o
In file included from libs/program_options/src/cmdline.cpp:18:
./boost/bind.hpp:36:1: warning: The practice of declaring the Bind placeholders (_1, _2, ...) in the global namespace is deprecated. Please use <boost/bind/bind.hpp> + using namespace boost::placeholders, or define BOOST_BIND_GLOBAL_PLACEHOLDERS to retain the current behavior. [-W#pragma-messages]
BOOST_PRAGMA_MESSAGE(
^
./boost/config/pragma_message.hpp:24:34: note: expanded from macro 'BOOST_PRAGMA_MESSAGE'

define BOOST_PRAGMA_MESSAGE(x) _Pragma(BOOST_STRINGIZE(message(x)))

                             ^

:342:2: note: expanded from here
message("The practice of declaring the Bind placeholders (_1, _2, ...) " "in the global namespace is deprecated. Please use " "<boost/bind/bind.hpp> + using namespace boost::placeholders, " "or define BOOST_BIND_GLOBAL_PLACEHOLDERS to retain the current behavior.")
^
1 warning generated.
In file included from libs/program_options/src/cmdline.cpp:18:
./boost/bind.hpp:36:1: warning: The practice of declaring the Bind placeholders (_1, _2, ...) in the global namespace is deprecated. Please use <boost/bind/bind.hpp> + using namespace boost::placeholders, or define BOOST_BIND_GLOBAL_PLACEHOLDERS to retain the current behavior. [-W#pragma-messages]
BOOST_PRAGMA_MESSAGE(
^
./boost/config/pragma_message.hpp:24:34: note: expanded from macro 'BOOST_PRAGMA_MESSAGE'

define BOOST_PRAGMA_MESSAGE(x) _Pragma(BOOST_STRINGIZE(message(x)))

                             ^

:342:2: note: expanded from here
message("The practice of declaring the Bind placeholders (_1, _2, ...) " "in the global namespace is deprecated. Please use " "<boost/bind/bind.hpp> + using namespace boost::placeholders, " "or define BOOST_BIND_GLOBAL_PLACEHOLDERS to retain the current behavior.")
^
1 warning generated.
clang-darwin.compile.c++ osx-build/boost/bin.v2/libs/program_options/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden/parsers.o
In file included from libs/program_options/src/parsers.cpp:19:
./boost/bind.hpp:36:1: warning: The practice of declaring the Bind placeholders (_1, _2, ...) in the global namespace is deprecated. Please use <boost/bind/bind.hpp> + using namespace boost::placeholders, or define BOOST_BIND_GLOBAL_PLACEHOLDERS to retain the current behavior. [-W#pragma-messages]
BOOST_PRAGMA_MESSAGE(
^
./boost/config/pragma_message.hpp:24:34: note: expanded from macro 'BOOST_PRAGMA_MESSAGE'

define BOOST_PRAGMA_MESSAGE(x) _Pragma(BOOST_STRINGIZE(message(x)))

                             ^

:348:2: note: expanded from here
message("The practice of declaring the Bind placeholders (_1, _2, ...) " "in the global namespace is deprecated. Please use " "<boost/bind/bind.hpp> + using namespace boost::placeholders, " "or define BOOST_BIND_GLOBAL_PLACEHOLDERS to retain the current behavior.")
^
1 warning generated.
In file included from libs/program_options/src/parsers.cpp:19:
./boost/bind.hpp:36:1: warning: The practice of declaring the Bind placeholders (_1, _2, ...) in the global namespace is deprecated. Please use <boost/bind/bind.hpp> + using namespace boost::placeholders, or define BOOST_BIND_GLOBAL_PLACEHOLDERS to retain the current behavior. [-W#pragma-messages]
BOOST_PRAGMA_MESSAGE(
^
./boost/config/pragma_message.hpp:24:34: note: expanded from macro 'BOOST_PRAGMA_MESSAGE'

define BOOST_PRAGMA_MESSAGE(x) _Pragma(BOOST_STRINGIZE(message(x)))

                             ^

:348:2: note: expanded from here
message("The practice of declaring the Bind placeholders (_1, _2, ...) " "in the global namespace is deprecated. Please use " "<boost/bind/bind.hpp> + using namespace boost::placeholders, " "or define BOOST_BIND_GLOBAL_PLACEHOLDERS to retain the current behavior.")
^
1 warning generated.
clang-darwin.compile.c++ osx-build/boost/bin.v2/libs/test/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden/unit_test_monitor.o
clang-darwin.compile.c++ osx-build/boost/bin.v2/libs/test/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden/xml_report_formatter.o
clang-darwin.compile.c++ osx-build/boost/bin.v2/libs/program_options/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden/options_description.o
clang-darwin.compile.c++ osx-build/boost/bin.v2/libs/test/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden/xml_log_formatter.o
clang-darwin.archive osx-build/boost/bin.v2/libs/program_options/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden/libboost_program_options.a
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: for architecture: i386 file: osx-build/boost/bin.v2/libs/program_options/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden/libboost_program_options.a(winmain.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: for architecture: x86_64 file: osx-build/boost/bin.v2/libs/program_options/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden/libboost_program_options.a(winmain.o) has no symbols
boost-install.generate-cmake-variant- osx-build/boost/bin.v2/libs/program_options/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden/libboost_program_options-variant-static.cmake
common.copy /Users/bjit/Work/JASMY/Framework/mlpack-ios/boostmake/src/boost_1_76_0/osx-build/stage/lib/libboost_program_options.a
common.copy /Users/bjit/Work/JASMY/Framework/mlpack-ios/boostmake/src/boost_1_76_0/osx-build/stage/lib/cmake/boost_program_options-1.76.0/libboost_program_options-variant-static.cmake
clang-darwin.compile.c++ osx-build/boost/bin.v2/libs/test/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden/unit_test_main.o
clang-darwin.compile.c++ osx-build/boost/bin.v2/libs/test/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden/test_tools.o
clang-darwin.compile.c++ osx-build/boost/bin.v2/libs/test/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden/unit_test_log.o
clang-darwin.compile.c++ osx-build/boost/bin.v2/libs/test/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden/test_tree.o
clang-darwin.compile.c++ osx-build/boost/bin.v2/libs/test/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden/junit_log_formatter.o
clang-darwin.compile.c++ osx-build/boost/bin.v2/libs/test/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden/framework.o
clang-darwin.compile.c++ osx-build/boost/bin.v2/libs/test/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden/unit_test_parameters.o
clang-darwin.archive osx-build/boost/bin.v2/libs/test/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden/libboost_test_exec_monitor.a
clang-darwin.archive osx-build/boost/bin.v2/libs/test/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden/libboost_unit_test_framework.a
boost-install.generate-cmake-variant- osx-build/boost/bin.v2/libs/test/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden/libboost_test_exec_monitor-variant-static.cmake
boost-install.generate-cmake-variant- osx-build/boost/bin.v2/libs/test/build/clang-darwin-13.0/release/link-static/threading-multi/visibility-hidden/libboost_unit_test_framework-variant-static.cmake
common.copy /Users/bjit/Work/JASMY/Framework/mlpack-ios/boostmake/src/boost_1_76_0/osx-build/stage/lib/libboost_test_exec_monitor.a
common.copy /Users/bjit/Work/JASMY/Framework/mlpack-ios/boostmake/src/boost_1_76_0/osx-build/stage/lib/libboost_unit_test_framework.a
common.copy /Users/bjit/Work/JASMY/Framework/mlpack-ios/boostmake/src/boost_1_76_0/osx-build/stage/lib/cmake/boost_test_exec_monitor-1.76.0/libboost_test_exec_monitor-variant-static.cmake
common.copy /Users/bjit/Work/JASMY/Framework/mlpack-ios/boostmake/src/boost_1_76_0/osx-build/stage/lib/cmake/boost_unit_test_framework-1.76.0/libboost_unit_test_framework-variant-static.cmake
...failed updating 1 target...
...skipped 156 targets...
...updated 171 targets...

=================================================================
Done

Splitting all existing fat binaries...
fatal error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo: can't open input file: iphone-build/stage/lib/libboost_program_options.a (No such file or directory)
fatal error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo: can't open input file: iphone-build/stage/lib/libboost_program_options.a (No such file or directory)
fatal error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo: can't open input file: iphone-build/stage/lib/libboost_program_options.a (No such file or directory)
fatal error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo: can't open input file: iphone-build/stage/lib/libboost_program_options.a (No such file or directory)
fatal error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo: can't open input file: iphonesim-build/stage/lib/libboost_program_options.a (No such file or directory)
fatal error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo: can't open input file: iphonesim-build/stage/lib/libboost_program_options.a (No such file or directory)
fatal error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo: can't open input file: iphone-build/stage/lib/libboost_random.a (No such file or directory)
fatal error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo: can't open input file: iphone-build/stage/lib/libboost_random.a (No such file or directory)
fatal error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo: can't open input file: iphone-build/stage/lib/libboost_random.a (No such file or directory)
fatal error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo: can't open input file: iphone-build/stage/lib/libboost_random.a (No such file or directory)
fatal error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo: can't open input file: iphonesim-build/stage/lib/libboost_random.a (No such file or directory)
fatal error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo: can't open input file: iphonesim-build/stage/lib/libboost_random.a (No such file or directory)
fatal error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo: can't open input file: iphone-build/stage/lib/libboost_test.a (No such file or directory)
fatal error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo: can't open input file: iphone-build/stage/lib/libboost_test.a (No such file or directory)
fatal error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo: can't open input file: iphone-build/stage/lib/libboost_test.a (No such file or directory)
fatal error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo: can't open input file: iphone-build/stage/lib/libboost_test.a (No such file or directory)
fatal error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo: can't open input file: iphonesim-build/stage/lib/libboost_test.a (No such file or directory)
fatal error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo: can't open input file: iphonesim-build/stage/lib/libboost_test.a (No such file or directory)
fatal error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo: can't open input file: osx-build/stage/lib/libboost_test.a (No such file or directory)
fatal error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo: can't open input file: osx-build/stage/lib/libboost_test.a (No such file or directory)
fatal error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo: can't open input file: iphone-build/stage/lib/libboost_math.a (No such file or directory)
fatal error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo: can't open input file: iphone-build/stage/lib/libboost_math.a (No such file or directory)
fatal error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo: can't open input file: iphone-build/stage/lib/libboost_math.a (No such file or directory)
fatal error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo: can't open input file: iphone-build/stage/lib/libboost_math.a (No such file or directory)
fatal error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo: can't open input file: iphonesim-build/stage/lib/libboost_math.a (No such file or directory)
fatal error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo: can't open input file: iphonesim-build/stage/lib/libboost_math.a (No such file or directory)
fatal error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo: can't open input file: osx-build/stage/lib/libboost_math.a (No such file or directory)
fatal error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo: can't open input file: osx-build/stage/lib/libboost_math.a (No such file or directory)
Decomposing each architecture's .a files
Decomposing libboost_program_options.a...
ar: ../libboost_program_options.a: No such file or directory
ar: ../libboost_program_options.a: No such file or directory
ar: ../libboost_program_options.a: No such file or directory
ar: ../libboost_program_options.a: No such file or directory
ar: ../libboost_program_options.a: No such file or directory
ar: ../libboost_program_options.a: No such file or directory
Decomposing libboost_random.a...
ar: ../libboost_random.a: No such file or directory
ar: ../libboost_random.a: No such file or directory
ar: ../libboost_random.a: No such file or directory
ar: ../libboost_random.a: No such file or directory
ar: ../libboost_random.a: No such file or directory
ar: ../libboost_random.a: No such file or directory
Decomposing libboost_test.a...
ar: ../libboost_test.a: No such file or directory
ar: ../libboost_test.a: No such file or directory
ar: ../libboost_test.a: No such file or directory
ar: ../libboost_test.a: No such file or directory
ar: ../libboost_test.a: No such file or directory
ar: ../libboost_test.a: No such file or directory
ar: ../libboost_test.a: No such file or directory
ar: ../libboost_test.a: No such file or directory
Decomposing libboost_math.a...
ar: ../libboost_math.a: No such file or directory
ar: ../libboost_math.a: No such file or directory
ar: ../libboost_math.a: No such file or directory
ar: ../libboost_math.a: No such file or directory
ar: ../libboost_math.a: No such file or directory
ar: ../libboost_math.a: No such file or directory
ar: ../libboost_math.a: No such file or directory
ar: ../libboost_math.a: No such file or directory
Linking each architecture into an uberlib ( libboost_program_options.a libboost_random.a libboost_test.a libboost_math.a => libboost.a )
rm: /Users/bjit/Work/JASMY/Framework/mlpack-ios/boostmake/ios/build//libboost.a: No such file or directory
...armv6
ar: obj/
.o: No such file or directory
...armv7
ar: obj/.o: No such file or directory
...armv7s
ar: obj/
.o: No such file or directory
...arm64
ar: obj/.o: No such file or directory
...i386
ar: obj/
.o: No such file or directory
...x86_64
ar: obj/.o: No such file or directory
rm: /Users/bjit/Work/JASMY/Framework/mlpack-ios/boostmake/osx/build/
/libboost.a: No such file or directory
...osx-i386
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: libboost.a(winmain.o) has no symbols
...x86_64
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: libboost.a(winmain.o) has no symbols
Framework: Building /Users/bjit/Work/JASMY/Framework/mlpack-ios/boostmake/ios/framework/boost.framework from /Users/bjit/Work/JASMY/Framework/mlpack-ios/boostmake/ios/build...
Framework: Setting up directories...
Framework: Creating symlinks...
Lipoing library into /Users/bjit/Work/JASMY/Framework/mlpack-ios/boostmake/ios/framework/boost.framework/Versions/A/boost...
fatal error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo: empty archive with no architecture specification: /Users/bjit/Work/JASMY/Framework/mlpack-ios/boostmake/ios/build/arm64/libboost.a (can't determine architecture for it)

Aborted: Lipo /Users/bjit/Work/JASMY/Framework/mlpack-ios/boostmake/ios/framework failed

@rsobik
Copy link
Author

rsobik commented Feb 21, 2022

I haven't used boost in a while and don't have the capacity at the moment to update the script. There has been an oldish comment referencing another script that is working so might have more luck with that: https://gist.github.com/rsobik/7513324?permalink_comment_id=1272149#gistcomment-1272149

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment