BoostはC++でよく用いられるライブラリーで,MPI計算を含むインターネットの利用,フォルダー操作などのファイルシステム,日付・時間やCPUタイム,乱数,行列や複雑形状データなどに不可欠なものです.なかみはここだ
配布パッケージインストール方法
このフォルダーから,適宜新しげなboost-****pkgファイルを開けば良い.osx11.2のものはMacOS M1/Intel 共用のuniversalライブラリです.少々古いのはここにあります.
配布パッケージ利用方法
- プロジェクトの名前を選択し,上の方で【Build Settings】で〔All〕表示
- 【Search Paths】【Header】に /usr/local/
- 【Search Paths】【Library】に /usr/local/
【Linking】【Other Linker Frags】で -lboost_system -lboost_filesystem -lboost_date_time -lboost_program_options -lboost_timer
- こんどは【Build Phases】
- 【Link Binary With】でファイルを追加(+ボタンの次に,【Other Folders】をクリック.なんとかして /usr/local/lib/ の下で, 利用する boost*dylib ライブラリを選択していく)
- 再生ボタンをクリックするとコンパイル完了し,左の一覧の【Product】んとこに実行可能ファイルができる.【Show in Finder】で開いたらよろしい
これでオーケー.
以下は,配布パッケージを作る人向けです.一般人には無用ですね.
配布パッケージ作成方法(1.85.0)台湾積体電路製造
MySQL(というか銀河帝国Oracle)の都合で1.85.0を指定されているので, 我々地の苔は,従うしかない.
X86ビルド
X86ターミナルで実行する.
cd x86_64 tar zxf ../boost_1_85_0.tar.bz2 cd boost_1_85_0 sudo rm -rf /usr/local/include/boost sudo rm -rf /usr/local/lib/libboost* ./bootstrap.sh --prefix=/usr/local # ここで project-config.jam の末尾に using mpi ; を追加. ./b2 -a --prefix=/usr/local cxxflags="-std=c++17"
lipo -info stage/lib/*dylib stage/lib/*a
Non-fat file: stage/lib/libboost_atomic.dylib is architecture: x86_64
Non-fat file: stage/lib/libboost_charconv.dylib is architecture: x86_64
Non-fat file: stage/lib/libboost_chrono.dylib is architecture: x86_64
Non-fat file: stage/lib/libboost_container.dylib is architecture: x86_64
Non-fat file: stage/lib/libboost_context.dylib is architecture: x86_64
Non-fat file: stage/lib/libboost_contract.dylib is architecture: x86_64
Non-fat file: stage/lib/libboost_coroutine.dylib is architecture: x86_64
Non-fat file: stage/lib/libboost_date_time.dylib is architecture: x86_64
Non-fat file: stage/lib/libboost_fiber.dylib is architecture: x86_64
Non-fat file: stage/lib/libboost_filesystem.dylib is architecture: x86_64
Non-fat file: stage/lib/libboost_graph.dylib is architecture: x86_64
Non-fat file: stage/lib/libboost_graph_parallel.dylib is architecture: x86_64
Non-fat file: stage/lib/libboost_iostreams.dylib is architecture: x86_64
Non-fat file: stage/lib/libboost_json.dylib is architecture: x86_64
Non-fat file: stage/lib/libboost_locale.dylib is architecture: x86_64
Non-fat file: stage/lib/libboost_log.dylib is architecture: x86_64
Non-fat file: stage/lib/libboost_log_setup.dylib is architecture: x86_64
Non-fat file: stage/lib/libboost_math_c99.dylib is architecture: x86_64
Non-fat file: stage/lib/libboost_math_c99f.dylib is architecture: x86_64
Non-fat file: stage/lib/libboost_math_c99l.dylib is architecture: x86_64
Non-fat file: stage/lib/libboost_math_tr1.dylib is architecture: x86_64
Non-fat file: stage/lib/libboost_math_tr1f.dylib is architecture: x86_64
Non-fat file: stage/lib/libboost_math_tr1l.dylib is architecture: x86_64
Non-fat file: stage/lib/libboost_mpi.dylib is architecture: x86_64
Non-fat file: stage/lib/libboost_mpi_python311.dylib is architecture: x86_64
Non-fat file: stage/lib/libboost_nowide.dylib is architecture: x86_64
Non-fat file: stage/lib/libboost_prg_exec_monitor.dylib is architecture: x86_64
Non-fat file: stage/lib/libboost_program_options.dylib is architecture: x86_64
Non-fat file: stage/lib/libboost_python311.dylib is architecture: x86_64
Non-fat file: stage/lib/libboost_random.dylib is architecture: x86_64
Non-fat file: stage/lib/libboost_regex.dylib is architecture: x86_64
Non-fat file: stage/lib/libboost_serialization.dylib is architecture: x86_64
Non-fat file: stage/lib/libboost_stacktrace_addr2line.dylib is architecture: x86_64
Non-fat file: stage/lib/libboost_stacktrace_basic.dylib is architecture: x86_64
Non-fat file: stage/lib/libboost_stacktrace_noop.dylib is architecture: x86_64
Non-fat file: stage/lib/libboost_system.dylib is architecture: x86_64
Non-fat file: stage/lib/libboost_thread.dylib is architecture: x86_64
Non-fat file: stage/lib/libboost_timer.dylib is architecture: x86_64
Non-fat file: stage/lib/libboost_type_erasure.dylib is architecture: x86_64
Non-fat file: stage/lib/libboost_unit_test_framework.dylib is architecture: x86_64
Non-fat file: stage/lib/libboost_url.dylib is architecture: x86_64
Non-fat file: stage/lib/libboost_wave.dylib is architecture: x86_64
Non-fat file: stage/lib/libboost_wserialization.dylib is architecture: x86_64
Non-fat file: stage/lib/libboost_atomic.a is architecture: x86_64
Non-fat file: stage/lib/libboost_charconv.a is architecture: x86_64
Non-fat file: stage/lib/libboost_chrono.a is architecture: x86_64
Non-fat file: stage/lib/libboost_container.a is architecture: x86_64
Non-fat file: stage/lib/libboost_context.a is architecture: x86_64
Non-fat file: stage/lib/libboost_contract.a is architecture: x86_64
Non-fat file: stage/lib/libboost_coroutine.a is architecture: x86_64
Non-fat file: stage/lib/libboost_date_time.a is architecture: x86_64
Non-fat file: stage/lib/libboost_exception.a is architecture: x86_64
Non-fat file: stage/lib/libboost_fiber.a is architecture: x86_64
Non-fat file: stage/lib/libboost_filesystem.a is architecture: x86_64
Non-fat file: stage/lib/libboost_graph.a is architecture: x86_64
Non-fat file: stage/lib/libboost_graph_parallel.a is architecture: x86_64
Non-fat file: stage/lib/libboost_iostreams.a is architecture: x86_64
Non-fat file: stage/lib/libboost_json.a is architecture: x86_64
Non-fat file: stage/lib/libboost_locale.a is architecture: x86_64
Non-fat file: stage/lib/libboost_log.a is architecture: x86_64
Non-fat file: stage/lib/libboost_log_setup.a is architecture: x86_64
Non-fat file: stage/lib/libboost_math_c99.a is architecture: x86_64
Non-fat file: stage/lib/libboost_math_c99f.a is architecture: x86_64
Non-fat file: stage/lib/libboost_math_c99l.a is architecture: x86_64
Non-fat file: stage/lib/libboost_math_tr1.a is architecture: x86_64
Non-fat file: stage/lib/libboost_math_tr1f.a is architecture: x86_64
Non-fat file: stage/lib/libboost_math_tr1l.a is architecture: x86_64
Non-fat file: stage/lib/libboost_mpi.a is architecture: x86_64
Non-fat file: stage/lib/libboost_mpi_python311.a is architecture: x86_64
Non-fat file: stage/lib/libboost_nowide.a is architecture: x86_64
Non-fat file: stage/lib/libboost_prg_exec_monitor.a is architecture: x86_64
Non-fat file: stage/lib/libboost_program_options.a is architecture: x86_64
Non-fat file: stage/lib/libboost_python311.a is architecture: x86_64
Non-fat file: stage/lib/libboost_random.a is architecture: x86_64
Non-fat file: stage/lib/libboost_regex.a is architecture: x86_64
Non-fat file: stage/lib/libboost_serialization.a is architecture: x86_64
Non-fat file: stage/lib/libboost_stacktrace_addr2line.a is architecture: x86_64
Non-fat file: stage/lib/libboost_stacktrace_basic.a is architecture: x86_64
Non-fat file: stage/lib/libboost_stacktrace_noop.a is architecture: x86_64
Non-fat file: stage/lib/libboost_system.a is architecture: x86_64
Non-fat file: stage/lib/libboost_test_exec_monitor.a is architecture: x86_64
Non-fat file: stage/lib/libboost_thread.a is architecture: x86_64
Non-fat file: stage/lib/libboost_timer.a is architecture: x86_64
Non-fat file: stage/lib/libboost_type_erasure.a is architecture: x86_64
Non-fat file: stage/lib/libboost_unit_test_framework.a is architecture: x86_64
Non-fat file: stage/lib/libboost_url.a is architecture: x86_64
Non-fat file: stage/lib/libboost_wave.a is architecture: x86_64
Non-fat file: stage/lib/libboost_wserialization.a is architecture: x86_64
これでよっしゃ
というわけで, x86_64_/boost_1_84_0/stage/... に Intel CPUのコードができた.
ARM64ビルド
ARM64ターミナルで実行する
cd arm64 tar zxf ../boost_1_85_0.tar.bz2 cd boost_1_85_0 sudo rm -rf /usr/local/include/boost sudo rm -rf /usr/local/lib/libboost* ./bootstrap.sh --prefix=/usr/local # ここで project-config.jam の末尾に using mpi ;を追加.
./b2 -a --prefix=/usr/local cxxflags="-std=c++17"
lipo -info stage/lib/*dylib stage/lib/*a
Non-fat file: stage/lib/libboost_atomic.dylib is architecture: arm64
Non-fat file: stage/lib/libboost_charconv.dylib is architecture: arm64
Non-fat file: stage/lib/libboost_chrono.dylib is architecture: arm64
Non-fat file: stage/lib/libboost_container.dylib is architecture: arm64
Non-fat file: stage/lib/libboost_context.dylib is architecture: arm64
Non-fat file: stage/lib/libboost_contract.dylib is architecture: arm64
Non-fat file: stage/lib/libboost_coroutine.dylib is architecture: arm64
Non-fat file: stage/lib/libboost_date_time.dylib is architecture: arm64
Non-fat file: stage/lib/libboost_fiber.dylib is architecture: arm64
Non-fat file: stage/lib/libboost_filesystem.dylib is architecture: arm64
Non-fat file: stage/lib/libboost_graph.dylib is architecture: arm64
Non-fat file: stage/lib/libboost_graph_parallel.dylib is architecture: arm64
Non-fat file: stage/lib/libboost_iostreams.dylib is architecture: arm64
Non-fat file: stage/lib/libboost_json.dylib is architecture: arm64
Non-fat file: stage/lib/libboost_locale.dylib is architecture: arm64
Non-fat file: stage/lib/libboost_log.dylib is architecture: arm64
Non-fat file: stage/lib/libboost_log_setup.dylib is architecture: arm64
Non-fat file: stage/lib/libboost_math_c99.dylib is architecture: arm64
Non-fat file: stage/lib/libboost_math_c99f.dylib is architecture: arm64
Non-fat file: stage/lib/libboost_math_c99l.dylib is architecture: arm64
Non-fat file: stage/lib/libboost_math_tr1.dylib is architecture: arm64
Non-fat file: stage/lib/libboost_math_tr1f.dylib is architecture: arm64
Non-fat file: stage/lib/libboost_math_tr1l.dylib is architecture: arm64
Non-fat file: stage/lib/libboost_mpi.dylib is architecture: arm64
Non-fat file: stage/lib/libboost_mpi_python311.dylib is architecture: arm64
Non-fat file: stage/lib/libboost_nowide.dylib is architecture: arm64
Non-fat file: stage/lib/libboost_numpy311.dylib is architecture: arm64
Non-fat file: stage/lib/libboost_prg_exec_monitor.dylib is architecture: arm64
Non-fat file: stage/lib/libboost_program_options.dylib is architecture: arm64
Non-fat file: stage/lib/libboost_python311.dylib is architecture: arm64
Non-fat file: stage/lib/libboost_random.dylib is architecture: arm64
Non-fat file: stage/lib/libboost_regex.dylib is architecture: arm64
Non-fat file: stage/lib/libboost_serialization.dylib is architecture: arm64
Non-fat file: stage/lib/libboost_stacktrace_addr2line.dylib is architecture: arm64
Non-fat file: stage/lib/libboost_stacktrace_basic.dylib is architecture: arm64
Non-fat file: stage/lib/libboost_stacktrace_noop.dylib is architecture: arm64
Non-fat file: stage/lib/libboost_system.dylib is architecture: arm64
Non-fat file: stage/lib/libboost_thread.dylib is architecture: arm64
Non-fat file: stage/lib/libboost_timer.dylib is architecture: arm64
Non-fat file: stage/lib/libboost_type_erasure.dylib is architecture: arm64
Non-fat file: stage/lib/libboost_unit_test_framework.dylib is architecture: arm64
Non-fat file: stage/lib/libboost_url.dylib is architecture: arm64
Non-fat file: stage/lib/libboost_wave.dylib is architecture: arm64
Non-fat file: stage/lib/libboost_wserialization.dylib is architecture: arm64
Non-fat file: stage/lib/libboost_atomic.a is architecture: arm64
Non-fat file: stage/lib/libboost_charconv.a is architecture: arm64
Non-fat file: stage/lib/libboost_chrono.a is architecture: arm64
Non-fat file: stage/lib/libboost_container.a is architecture: arm64
Non-fat file: stage/lib/libboost_context.a is architecture: arm64
Non-fat file: stage/lib/libboost_contract.a is architecture: arm64
Non-fat file: stage/lib/libboost_coroutine.a is architecture: arm64
Non-fat file: stage/lib/libboost_date_time.a is architecture: arm64
Non-fat file: stage/lib/libboost_exception.a is architecture: arm64
Non-fat file: stage/lib/libboost_fiber.a is architecture: arm64
Non-fat file: stage/lib/libboost_filesystem.a is architecture: arm64
Non-fat file: stage/lib/libboost_graph.a is architecture: arm64
Non-fat file: stage/lib/libboost_graph_parallel.a is architecture: arm64
Non-fat file: stage/lib/libboost_iostreams.a is architecture: arm64
Non-fat file: stage/lib/libboost_json.a is architecture: arm64
Non-fat file: stage/lib/libboost_locale.a is architecture: arm64
Non-fat file: stage/lib/libboost_log.a is architecture: arm64
Non-fat file: stage/lib/libboost_log_setup.a is architecture: arm64
Non-fat file: stage/lib/libboost_math_c99.a is architecture: arm64
Non-fat file: stage/lib/libboost_math_c99f.a is architecture: arm64
Non-fat file: stage/lib/libboost_math_c99l.a is architecture: arm64
Non-fat file: stage/lib/libboost_math_tr1.a is architecture: arm64
Non-fat file: stage/lib/libboost_math_tr1f.a is architecture: arm64
Non-fat file: stage/lib/libboost_math_tr1l.a is architecture: arm64
Non-fat file: stage/lib/libboost_mpi.a is architecture: arm64
Non-fat file: stage/lib/libboost_mpi_python311.a is architecture: arm64
Non-fat file: stage/lib/libboost_nowide.a is architecture: arm64
Non-fat file: stage/lib/libboost_numpy311.a is architecture: arm64
Non-fat file: stage/lib/libboost_prg_exec_monitor.a is architecture: arm64
Non-fat file: stage/lib/libboost_program_options.a is architecture: arm64
Non-fat file: stage/lib/libboost_python311.a is architecture: arm64
Non-fat file: stage/lib/libboost_random.a is architecture: arm64
Non-fat file: stage/lib/libboost_regex.a is architecture: arm64
Non-fat file: stage/lib/libboost_serialization.a is architecture: arm64
Non-fat file: stage/lib/libboost_stacktrace_addr2line.a is architecture: arm64
Non-fat file: stage/lib/libboost_stacktrace_basic.a is architecture: arm64
Non-fat file: stage/lib/libboost_stacktrace_noop.a is architecture: arm64
Non-fat file: stage/lib/libboost_system.a is architecture: arm64
Non-fat file: stage/lib/libboost_test_exec_monitor.a is architecture: arm64
Non-fat file: stage/lib/libboost_thread.a is architecture: arm64
Non-fat file: stage/lib/libboost_timer.a is architecture: arm64
Non-fat file: stage/lib/libboost_type_erasure.a is architecture: arm64
Non-fat file: stage/lib/libboost_unit_test_framework.a is architecture: arm64
Non-fat file: stage/lib/libboost_url.a is architecture: arm64
Non-fat file: stage/lib/libboost_wave.a is architecture: arm64
Non-fat file: stage/lib/libboost_wserialization.a is architecture: arm64
でよしっと.ここでインストールしてしまいましょう.
fswatch -x /usr/local > files.log & sudo ./b2 install --prefix=/usr/local
豚ビルド
豚専道具を使う.
rm -rf ../../universal/* fatty_apple.sh ../../x86_64/boost_1_85_0/ ./ ../../univeral stage/lib/*dylib stage/lib/*a
Architectures in the fat file: ../../universal/stage/lib/libboost_atomic.dylib are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_charconv.dylib are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_chrono.dylib are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_container.dylib are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_context.dylib are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_contract.dylib are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_coroutine.dylib are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_date_time.dylib are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_fiber.dylib are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_filesystem.dylib are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_graph.dylib are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_graph_parallel.dylib are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_iostreams.dylib are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_json.dylib are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_locale.dylib are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_log.dylib are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_log_setup.dylib are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_math_c99.dylib are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_math_c99f.dylib are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_math_c99l.dylib are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_math_tr1.dylib are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_math_tr1f.dylib are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_math_tr1l.dylib are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_mpi.dylib are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_mpi_python311.dylib are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_nowide.dylib are: x86_64 arm64
../../x86_64/boost_1_85_0//stage/lib/libboost_numpy311.dylib がねえぞクソが
Non-fat file: ../../universal/stage/lib/libboost_numpy311.dylib is architecture: arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_prg_exec_monitor.dylib are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_program_options.dylib are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_python311.dylib are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_random.dylib are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_regex.dylib are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_serialization.dylib are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_stacktrace_addr2line.dylib are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_stacktrace_basic.dylib are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_stacktrace_noop.dylib are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_system.dylib are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_thread.dylib are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_timer.dylib are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_type_erasure.dylib are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_unit_test_framework.dylib are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_url.dylib are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_wave.dylib are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_wserialization.dylib are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_atomic.a are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_charconv.a are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_chrono.a are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_container.a are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_context.a are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_contract.a are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_coroutine.a are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_date_time.a are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_exception.a are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_fiber.a are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_filesystem.a are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_graph.a are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_graph_parallel.a are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_iostreams.a are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_json.a are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_locale.a are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_log.a are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_log_setup.a are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_math_c99.a are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_math_c99f.a are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_math_c99l.a are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_math_tr1.a are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_math_tr1f.a are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_math_tr1l.a are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_mpi.a are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_mpi_python311.a are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_nowide.a are: x86_64 arm64
../../x86_64/boost_1_85_0//stage/lib/libboost_numpy311.a がねえぞクソが
Non-fat file: ../../universal/stage/lib/libboost_numpy311.a is architecture: arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_prg_exec_monitor.a are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_program_options.a are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_python311.a are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_random.a are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_regex.a are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_serialization.a are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_stacktrace_addr2line.a are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_stacktrace_basic.a are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_stacktrace_noop.a are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_system.a are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_test_exec_monitor.a are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_thread.a are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_timer.a are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_type_erasure.a are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_unit_test_framework.a are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_url.a are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_wave.a are: x86_64 arm64
Architectures in the fat file: ../../universal/stage/lib/libboost_wserialization.a are: x86_64 arm64
lipo -info /Library/Frameworks/Python.framework/Versions/3.11//lib/python3.11/site-packages/numpy/.dylibs/libgcc_s.1.1.dylib
Architectures in the fat file: /Library/Frameworks/Python.framework/Versions/3.11//lib/python3.11/site-packages/numpy/.dylibs/libgcc_s.1.1.dylib are: arm64
ほらな.ここらへんが問題なのだろうけど,直す方法がわからん.直す気もない・・・
sudo cp ../../universal/stage/lib/libboost_* /usr/local/lib/
よっしゃ.パッケージするかー
fswatch_analyze.sh -c _binary files.log pkgbuild --identifier boost --root _binary boost_1_85_0-osx15.3.2.pkg
配布パッケージ作成方法(1.84.0)台湾積体電路製造
MySQL(というか銀河帝国Oracle)の都合で1.84.0を指定されているので, 我々地の苔は,従うしかない.なお, 2026年以降は計算機クラスターがCentOS Stream10になる予定であり,そこでは 1.83.0 である.近いから,まあ,良いのではないか.
X86ビルド
X86ターミナルで実行する.
cd x86_64 tar zxf ../boost_1_84_0.tar.bz2 cd boost_1_84_0 sudo rm -rf /usr/local/include/boost sudo rm -rf /usr/local/lib/libboost* ./bootstrap.sh --prefix=/usr/local # ここで project-config.jam の末尾に using mpi ; を追加. ./b2 -a --prefix=/usr/local cxxflags="-std=c++17" lipo -info stage/lib/*dylib stage/lib/*a Non-fat file: stage/lib/libboost_atomic.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_chrono.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_container.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_context.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_contract.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_coroutine.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_date_time.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_fiber.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_filesystem.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_graph.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_graph_parallel.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_iostreams.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_json.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_locale.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_log.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_log_setup.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_math_c99.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_math_c99f.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_math_c99l.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_math_tr1.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_math_tr1f.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_math_tr1l.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_mpi.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_mpi_python311.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_nowide.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_prg_exec_monitor.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_program_options.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_python311.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_random.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_regex.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_serialization.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_stacktrace_addr2line.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_stacktrace_basic.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_stacktrace_noop.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_system.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_thread.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_timer.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_type_erasure.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_unit_test_framework.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_url.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_wave.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_wserialization.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_atomic.a is architecture: x86_64 Non-fat file: stage/lib/libboost_chrono.a is architecture: x86_64 Non-fat file: stage/lib/libboost_container.a is architecture: x86_64 Non-fat file: stage/lib/libboost_context.a is architecture: x86_64 Non-fat file: stage/lib/libboost_contract.a is architecture: x86_64 Non-fat file: stage/lib/libboost_coroutine.a is architecture: x86_64 Non-fat file: stage/lib/libboost_date_time.a is architecture: x86_64 Non-fat file: stage/lib/libboost_exception.a is architecture: x86_64 Non-fat file: stage/lib/libboost_fiber.a is architecture: x86_64 Non-fat file: stage/lib/libboost_filesystem.a is architecture: x86_64 Non-fat file: stage/lib/libboost_graph.a is architecture: x86_64 Non-fat file: stage/lib/libboost_graph_parallel.a is architecture: x86_64 Non-fat file: stage/lib/libboost_iostreams.a is architecture: x86_64 Non-fat file: stage/lib/libboost_json.a is architecture: x86_64 Non-fat file: stage/lib/libboost_locale.a is architecture: x86_64 Non-fat file: stage/lib/libboost_log.a is architecture: x86_64 Non-fat file: stage/lib/libboost_log_setup.a is architecture: x86_64 Non-fat file: stage/lib/libboost_math_c99.a is architecture: x86_64 Non-fat file: stage/lib/libboost_math_c99f.a is architecture: x86_64 Non-fat file: stage/lib/libboost_math_c99l.a is architecture: x86_64 Non-fat file: stage/lib/libboost_math_tr1.a is architecture: x86_64 Non-fat file: stage/lib/libboost_math_tr1f.a is architecture: x86_64 Non-fat file: stage/lib/libboost_math_tr1l.a is architecture: x86_64 Non-fat file: stage/lib/libboost_mpi.a is architecture: x86_64 Non-fat file: stage/lib/libboost_mpi_python311.a is architecture: x86_64 Non-fat file: stage/lib/libboost_nowide.a is architecture: x86_64 Non-fat file: stage/lib/libboost_prg_exec_monitor.a is architecture: x86_64 Non-fat file: stage/lib/libboost_program_options.a is architecture: x86_64 Non-fat file: stage/lib/libboost_python311.a is architecture: x86_64 Non-fat file: stage/lib/libboost_random.a is architecture: x86_64 Non-fat file: stage/lib/libboost_regex.a is architecture: x86_64 Non-fat file: stage/lib/libboost_serialization.a is architecture: x86_64 Non-fat file: stage/lib/libboost_stacktrace_addr2line.a is architecture: x86_64 Non-fat file: stage/lib/libboost_stacktrace_basic.a is architecture: x86_64 Non-fat file: stage/lib/libboost_stacktrace_noop.a is architecture: x86_64 Non-fat file: stage/lib/libboost_system.a is architecture: x86_64 Non-fat file: stage/lib/libboost_test_exec_monitor.a is architecture: x86_64 Non-fat file: stage/lib/libboost_thread.a is architecture: x86_64 Non-fat file: stage/lib/libboost_timer.a is architecture: x86_64 Non-fat file: stage/lib/libboost_type_erasure.a is architecture: x86_64 Non-fat file: stage/lib/libboost_unit_test_framework.a is architecture: x86_64 Non-fat file: stage/lib/libboost_url.a is architecture: x86_64 Non-fat file: stage/lib/libboost_wave.a is architecture: x86_64 Non-fat file: stage/lib/libboost_wserialization.a is architecture: x86_64
というわけで, x86_64_/boost_1_84_0/stage/... に Intel CPUのコードができた.
ARM64ビルド
ARM64ターミナルで実行する
cd arm64 tar zxf ../boost_1_84_0.tar.bz2 cd boost_1_84_0 sudo rm -rf /usr/local/include/boost sudo rm -rf /usr/local/lib/libboost* ./bootstrap.sh --prefix=/usr/local # ここで project-config.jam の末尾に using mpi ; を追加. ./b2 -a --prefix=/usr/local cxxflags="-std=c++17" lipo -info stage/lib/*dylib stage/lib/*a Non-fat file: stage/lib/libboost_atomic.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_chrono.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_container.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_context.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_contract.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_coroutine.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_date_time.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_fiber.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_filesystem.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_graph.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_graph_parallel.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_iostreams.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_json.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_locale.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_log.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_log_setup.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_math_c99.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_math_c99f.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_math_c99l.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_math_tr1.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_math_tr1f.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_math_tr1l.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_mpi.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_mpi_python311.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_nowide.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_numpy311.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_prg_exec_monitor.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_program_options.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_python311.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_random.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_regex.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_serialization.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_stacktrace_addr2line.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_stacktrace_basic.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_stacktrace_noop.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_system.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_thread.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_timer.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_type_erasure.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_unit_test_framework.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_url.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_wave.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_wserialization.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_atomic.a is architecture: arm64 Non-fat file: stage/lib/libboost_chrono.a is architecture: arm64 Non-fat file: stage/lib/libboost_container.a is architecture: arm64 Non-fat file: stage/lib/libboost_context.a is architecture: arm64 Non-fat file: stage/lib/libboost_contract.a is architecture: arm64 Non-fat file: stage/lib/libboost_coroutine.a is architecture: arm64 Non-fat file: stage/lib/libboost_date_time.a is architecture: arm64 Non-fat file: stage/lib/libboost_exception.a is architecture: arm64 Non-fat file: stage/lib/libboost_fiber.a is architecture: arm64 Non-fat file: stage/lib/libboost_filesystem.a is architecture: arm64 Non-fat file: stage/lib/libboost_graph.a is architecture: arm64 Non-fat file: stage/lib/libboost_graph_parallel.a is architecture: arm64 Non-fat file: stage/lib/libboost_iostreams.a is architecture: arm64 Non-fat file: stage/lib/libboost_json.a is architecture: arm64 Non-fat file: stage/lib/libboost_locale.a is architecture: arm64 Non-fat file: stage/lib/libboost_log.a is architecture: arm64 Non-fat file: stage/lib/libboost_log_setup.a is architecture: arm64 Non-fat file: stage/lib/libboost_math_c99.a is architecture: arm64 Non-fat file: stage/lib/libboost_math_c99f.a is architecture: arm64 Non-fat file: stage/lib/libboost_math_c99l.a is architecture: arm64 Non-fat file: stage/lib/libboost_math_tr1.a is architecture: arm64 Non-fat file: stage/lib/libboost_math_tr1f.a is architecture: arm64 Non-fat file: stage/lib/libboost_math_tr1l.a is architecture: arm64 Non-fat file: stage/lib/libboost_mpi.a is architecture: arm64 Non-fat file: stage/lib/libboost_mpi_python311.a is architecture: arm64 Non-fat file: stage/lib/libboost_nowide.a is architecture: arm64 Non-fat file: stage/lib/libboost_numpy311.a is architecture: arm64 Non-fat file: stage/lib/libboost_prg_exec_monitor.a is architecture: arm64 Non-fat file: stage/lib/libboost_program_options.a is architecture: arm64 Non-fat file: stage/lib/libboost_python311.a is architecture: arm64 Non-fat file: stage/lib/libboost_random.a is architecture: arm64 Non-fat file: stage/lib/libboost_regex.a is architecture: arm64 Non-fat file: stage/lib/libboost_serialization.a is architecture: arm64 Non-fat file: stage/lib/libboost_stacktrace_addr2line.a is architecture: arm64 Non-fat file: stage/lib/libboost_stacktrace_basic.a is architecture: arm64 Non-fat file: stage/lib/libboost_stacktrace_noop.a is architecture: arm64 Non-fat file: stage/lib/libboost_system.a is architecture: arm64 Non-fat file: stage/lib/libboost_test_exec_monitor.a is architecture: arm64 Non-fat file: stage/lib/libboost_thread.a is architecture: arm64 Non-fat file: stage/lib/libboost_timer.a is architecture: arm64 Non-fat file: stage/lib/libboost_type_erasure.a is architecture: arm64 Non-fat file: stage/lib/libboost_unit_test_framework.a is architecture: arm64 Non-fat file: stage/lib/libboost_url.a is architecture: arm64 Non-fat file: stage/lib/libboost_wave.a is architecture: arm64 Non-fat file: stage/lib/libboost_wserialization.a is architecture: arm64
でよしっと.ここでインストールしてしまいましょう.
fswatch -x /usr/local > files.log & sudo ./b2 install --prefix=/usr/local
豚ビルド
豚専道具を使う.
rm -rf ../../universal/* fatty_apple.sh ../../x86_64/boost_1_84_0/ ./ ../../universal stage/lib/*dylib stage/lib/*a Architectures in the fat file: ../../universal/stage/lib/libboost_atomic.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_chrono.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_container.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_context.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_contract.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_coroutine.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_date_time.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_fiber.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_filesystem.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_graph.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_graph_parallel.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_iostreams.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_json.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_locale.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_log.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_log_setup.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_math_c99.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_math_c99f.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_math_c99l.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_math_tr1.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_math_tr1f.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_math_tr1l.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_mpi.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_mpi_python311.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_nowide.dylib are: x86_64 arm64 ../../x86_64/boost_1_84_0//stage/lib/libboost_numpy311.dylib がねえぞクソが Non-fat file: ../../universal/stage/lib/libboost_numpy311.dylib is architecture: arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_prg_exec_monitor.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_program_options.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_python311.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_random.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_regex.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_serialization.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_stacktrace_addr2line.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_stacktrace_basic.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_stacktrace_noop.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_system.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_thread.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_timer.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_type_erasure.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_unit_test_framework.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_url.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_wave.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_wserialization.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_atomic.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_chrono.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_container.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_context.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_contract.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_coroutine.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_date_time.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_exception.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_fiber.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_filesystem.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_graph.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_graph_parallel.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_iostreams.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_json.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_locale.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_log.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_log_setup.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_math_c99.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_math_c99f.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_math_c99l.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_math_tr1.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_math_tr1f.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_math_tr1l.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_mpi.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_mpi_python311.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_nowide.a are: x86_64 arm64 ../../x86_64/boost_1_84_0//stage/lib/libboost_numpy311.a がねえぞクソが Non-fat file: ../../universal/stage/lib/libboost_numpy311.a is architecture: arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_prg_exec_monitor.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_program_options.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_python311.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_random.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_regex.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_serialization.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_stacktrace_addr2line.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_stacktrace_basic.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_stacktrace_noop.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_system.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_test_exec_monitor.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_thread.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_timer.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_type_erasure.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_unit_test_framework.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_url.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_wave.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_wserialization.a are: x86_64 arm64
ん?なんかPython/Numpyあたりでエラーしてるが,まあええか.おれがpython3.11をARMにしかインストールしてないから,こうなったのかなあ.
lipo -info /Library/Frameworks/Python.framework/Versions/3.11//lib/python3.11/site-packages/numpy/.dylibs/libgcc_s.1.1.dylib
Architectures in the fat file: /Library/Frameworks/Python.framework/Versions/3.11//lib/python3.11/site-packages/numpy/.dylibs/libgcc_s.1.1.dylib are: arm64
ほらな.ここらへんが問題なのだろうけど,直す方法がわからん.直す気もない・・・
sudo cp ../../universal/stage/lib/libboost_* /usr/local/lib/
よっしゃ.パッケージするかー
fswatch_analyze.sh -c _binary files.log pkgbuild --identifier boost --root _binary boost_1_84_0-osx14.6.pkg
配布パッケージ作成方法(1.73.0)台湾積体電路製造
MySQL(というか銀河帝国Oracle)の都合で1.73.0が必要になった.cmake/boost.cmakeいわく
# We want boost 1.73.0 in order to build our boost/geometry code. # The boost tarball is fairly big, and takes several minutes # to download. So we recommend downloading/unpacking it # only once, in a place visible from any git sandbox. # We use only header files, so there should be no binary dependencies.
最近のバージョンではboost-1.73.0がソースコードに混ぜ込みになっているという噂も聞くので,状況は違うかもしれない.
X86ビルド
X86ターミナルで実行する.
cd x86_64 tar zxf ../boost_1_73_0.tar.bz2 cd boost_1_73_0 sudo rm -rf /usr/local/include/boost sudo rm -rf /usr/local/lib/libboost* ./bootstrap.sh --prefix=/usr/local # ここで project-config.jam の末尾に using mpi ; を追加. ./b2 -a --prefix=/usr/local cxxflags="-std=c++17" lipo -info stage/lib/*dylib stage/lib/*a Non-fat file: stage/lib/libboost_atomic.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_chrono.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_container.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_context.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_contract.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_coroutine.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_date_time.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_fiber.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_filesystem.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_graph.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_graph_parallel.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_iostreams.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_locale.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_log.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_log_setup.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_math_c99.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_math_c99f.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_math_c99l.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_math_tr1.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_math_tr1f.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_math_tr1l.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_mpi.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_mpi_python27.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_nowide.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_numpy27.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_prg_exec_monitor.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_program_options.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_python27.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_random.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_regex.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_serialization.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_stacktrace_addr2line.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_stacktrace_basic.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_stacktrace_noop.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_system.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_thread.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_timer.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_type_erasure.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_unit_test_framework.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_wave.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_wserialization.dylib is architecture: x86_64 Non-fat file: stage/lib/libboost_atomic.a is architecture: x86_64 Non-fat file: stage/lib/libboost_chrono.a is architecture: x86_64 Non-fat file: stage/lib/libboost_container.a is architecture: x86_64 Non-fat file: stage/lib/libboost_context.a is architecture: x86_64 Non-fat file: stage/lib/libboost_contract.a is architecture: x86_64 Non-fat file: stage/lib/libboost_coroutine.a is architecture: x86_64 Non-fat file: stage/lib/libboost_date_time.a is architecture: x86_64 Non-fat file: stage/lib/libboost_exception.a is architecture: x86_64 Non-fat file: stage/lib/libboost_fiber.a is architecture: x86_64 Non-fat file: stage/lib/libboost_filesystem.a is architecture: x86_64 Non-fat file: stage/lib/libboost_graph.a is architecture: x86_64 Non-fat file: stage/lib/libboost_graph_parallel.a is architecture: x86_64 Non-fat file: stage/lib/libboost_iostreams.a is architecture: x86_64 Non-fat file: stage/lib/libboost_locale.a is architecture: x86_64 Non-fat file: stage/lib/libboost_log.a is architecture: x86_64 Non-fat file: stage/lib/libboost_log_setup.a is architecture: x86_64 Non-fat file: stage/lib/libboost_math_c99.a is architecture: x86_64 Non-fat file: stage/lib/libboost_math_c99f.a is architecture: x86_64 Non-fat file: stage/lib/libboost_math_c99l.a is architecture: x86_64 Non-fat file: stage/lib/libboost_math_tr1.a is architecture: x86_64 Non-fat file: stage/lib/libboost_math_tr1f.a is architecture: x86_64 Non-fat file: stage/lib/libboost_math_tr1l.a is architecture: x86_64 Non-fat file: stage/lib/libboost_mpi.a is architecture: x86_64 Non-fat file: stage/lib/libboost_mpi_python27.a is architecture: x86_64 Non-fat file: stage/lib/libboost_nowide.a is architecture: x86_64 Non-fat file: stage/lib/libboost_numpy27.a is architecture: x86_64 Non-fat file: stage/lib/libboost_prg_exec_monitor.a is architecture: x86_64 Non-fat file: stage/lib/libboost_program_options.a is architecture: x86_64 Non-fat file: stage/lib/libboost_python27.a is architecture: x86_64 Non-fat file: stage/lib/libboost_random.a is architecture: x86_64 Non-fat file: stage/lib/libboost_regex.a is architecture: x86_64 Non-fat file: stage/lib/libboost_serialization.a is architecture: x86_64 Non-fat file: stage/lib/libboost_stacktrace_addr2line.a is architecture: x86_64 Non-fat file: stage/lib/libboost_stacktrace_basic.a is architecture: x86_64 Non-fat file: stage/lib/libboost_stacktrace_noop.a is architecture: x86_64 Non-fat file: stage/lib/libboost_system.a is architecture: x86_64 Non-fat file: stage/lib/libboost_test_exec_monitor.a is architecture: x86_64 Non-fat file: stage/lib/libboost_thread.a is architecture: x86_64 Non-fat file: stage/lib/libboost_timer.a is architecture: x86_64 Non-fat file: stage/lib/libboost_type_erasure.a is architecture: x86_64 Non-fat file: stage/lib/libboost_unit_test_framework.a is architecture: x86_64 Non-fat file: stage/lib/libboost_wave.a is architecture: x86_64 Non-fat file: stage/lib/libboost_wserialization.a is architecture: x86_64
ARM64ビルド
ARM64ターミナルで実行する
cd arm64 tar zxf ../boost_1_73_0.tar.bz2 cd boost_1_73_0 sudo rm -rf /usr/local/include/boost sudo rm -rf /usr/local/lib/libboost* ./bootstrap.sh --prefix=/usr/local # ここで project-config.jam の末尾に using mpi ; を追加. ./b2 -a --prefix=/usr/local cxxflags="-std=c++17" lipo -info stage/lib/*dylib stage/lib/*a Non-fat file: stage/lib/libboost_atomic.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_chrono.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_container.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_context.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_contract.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_coroutine.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_date_time.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_fiber.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_filesystem.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_graph.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_graph_parallel.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_iostreams.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_locale.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_log.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_log_setup.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_math_c99.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_math_c99f.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_math_c99l.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_math_tr1.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_math_tr1f.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_math_tr1l.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_mpi.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_mpi_python27.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_nowide.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_numpy27.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_prg_exec_monitor.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_program_options.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_python27.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_random.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_regex.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_serialization.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_stacktrace_addr2line.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_stacktrace_basic.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_stacktrace_noop.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_system.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_thread.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_timer.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_type_erasure.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_unit_test_framework.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_wave.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_wserialization.dylib is architecture: arm64 Non-fat file: stage/lib/libboost_atomic.a is architecture: arm64 Non-fat file: stage/lib/libboost_chrono.a is architecture: arm64 Non-fat file: stage/lib/libboost_container.a is architecture: arm64 Non-fat file: stage/lib/libboost_context.a is architecture: arm64 Non-fat file: stage/lib/libboost_contract.a is architecture: arm64 Non-fat file: stage/lib/libboost_coroutine.a is architecture: arm64 Non-fat file: stage/lib/libboost_date_time.a is architecture: arm64 Non-fat file: stage/lib/libboost_exception.a is architecture: arm64 Non-fat file: stage/lib/libboost_fiber.a is architecture: arm64 Non-fat file: stage/lib/libboost_filesystem.a is architecture: arm64 Non-fat file: stage/lib/libboost_graph.a is architecture: arm64 Non-fat file: stage/lib/libboost_graph_parallel.a is architecture: arm64 Non-fat file: stage/lib/libboost_iostreams.a is architecture: arm64 Non-fat file: stage/lib/libboost_locale.a is architecture: arm64 Non-fat file: stage/lib/libboost_log.a is architecture: arm64 Non-fat file: stage/lib/libboost_log_setup.a is architecture: arm64 Non-fat file: stage/lib/libboost_math_c99.a is architecture: arm64 Non-fat file: stage/lib/libboost_math_c99f.a is architecture: arm64 Non-fat file: stage/lib/libboost_math_c99l.a is architecture: arm64 Non-fat file: stage/lib/libboost_math_tr1.a is architecture: arm64 Non-fat file: stage/lib/libboost_math_tr1f.a is architecture: arm64 Non-fat file: stage/lib/libboost_math_tr1l.a is architecture: arm64 Non-fat file: stage/lib/libboost_mpi.a is architecture: arm64 Non-fat file: stage/lib/libboost_mpi_python27.a is architecture: arm64 Non-fat file: stage/lib/libboost_nowide.a is architecture: arm64 Non-fat file: stage/lib/libboost_numpy27.a is architecture: arm64 Non-fat file: stage/lib/libboost_prg_exec_monitor.a is architecture: arm64 Non-fat file: stage/lib/libboost_program_options.a is architecture: arm64 Non-fat file: stage/lib/libboost_python27.a is architecture: arm64 Non-fat file: stage/lib/libboost_random.a is architecture: arm64 Non-fat file: stage/lib/libboost_regex.a is architecture: arm64 Non-fat file: stage/lib/libboost_serialization.a is architecture: arm64 Non-fat file: stage/lib/libboost_stacktrace_addr2line.a is architecture: arm64 Non-fat file: stage/lib/libboost_stacktrace_basic.a is architecture: arm64 Non-fat file: stage/lib/libboost_stacktrace_noop.a is architecture: arm64 Non-fat file: stage/lib/libboost_system.a is architecture: arm64 Non-fat file: stage/lib/libboost_test_exec_monitor.a is architecture: arm64 Non-fat file: stage/lib/libboost_thread.a is architecture: arm64 Non-fat file: stage/lib/libboost_timer.a is architecture: arm64 Non-fat file: stage/lib/libboost_type_erasure.a is architecture: arm64 Non-fat file: stage/lib/libboost_unit_test_framework.a is architecture: arm64 Non-fat file: stage/lib/libboost_wave.a is architecture: arm64 Non-fat file: stage/lib/libboost_wserialization.a is architecture: arm64
これでよしっと.ここでインストールしてしまいましょう.
fswatch -x /usr/local > files.log & sudo ./b2 install --prefix=/usr/local
豚ビルド
豚専道具を使う.
fatty_apple.sh ../../x86_64/boost_1_73_0/ ./ ../../universal stage/lib/*dylib stage/lib/*a Architectures in the fat file: ../../universal/stage/lib/libboost_atomic.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_chrono.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_container.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_context.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_contract.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_coroutine.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_date_time.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_fiber.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_filesystem.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_graph.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_graph_parallel.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_iostreams.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_locale.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_log.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_log_setup.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_math_c99.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_math_c99f.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_math_c99l.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_math_tr1.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_math_tr1f.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_math_tr1l.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_mpi.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_mpi_python27.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_nowide.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_numpy27.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_prg_exec_monitor.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_program_options.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_python27.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_random.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_regex.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_serialization.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_stacktrace_addr2line.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_stacktrace_basic.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_stacktrace_noop.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_system.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_thread.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_timer.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_type_erasure.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_unit_test_framework.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_wave.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_wserialization.dylib are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_atomic.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_chrono.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_container.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_context.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_contract.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_coroutine.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_date_time.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_exception.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_fiber.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_filesystem.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_graph.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_graph_parallel.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_iostreams.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_locale.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_log.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_log_setup.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_math_c99.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_math_c99f.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_math_c99l.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_math_tr1.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_math_tr1f.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_math_tr1l.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_mpi.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_mpi_python27.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_nowide.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_numpy27.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_prg_exec_monitor.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_program_options.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_python27.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_random.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_regex.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_serialization.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_stacktrace_addr2line.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_stacktrace_basic.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_stacktrace_noop.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_system.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_test_exec_monitor.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_thread.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_timer.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_type_erasure.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_unit_test_framework.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_wave.a are: x86_64 arm64 Architectures in the fat file: ../../universal/stage/lib/libboost_wserialization.a are: x86_64 arm64 sudo cp ../../universal/stage/lib/libboost_* /usr/local/lib/
よっしゃ.パッケージするかー
fswatch_analyze.sh -c _binary files.log pkgbuild --identifier boost --root _binary boost_1_73_0-osx11.2.pkg
配布パッケージ作成方法(1.74.0)台湾積体電路製造
いろいろ試しているが, どうもまだ完全ではないが・・・
- デフォルトの toolset=clang では, クロスコンパイルできない.toolset=darwin を使え
- clangは,まあclangでビルドする
- darwinは, gcc のことらしいが?
- --without-context --without-coroutine --without-fiber これらのライブラリーはアセンブラーを使う.2021年4月段階ではクロスコンパイルできない
- Boostビルドする前にXZビルドした方が良い
- Boostビルドする前にOpenMPIビルドした方が良い
この辺りがどうも怪しげなんだよね.仕方がないので, RosettaでTerminalを起動でx86_64にしてビルドする.
#----------------- # X86_64版をビルド #----------------- x86_64 $ mkdir x86_64 cd x86_64 cd boost_1_74_0 # remove older version # remove older version sudo rm -rf /usr/local/include/boost sudo rm -rf /usr/local/lib/libboost* ./bootstrap.sh --prefix=/usr/local # ここで project-config.jam の末尾に using mpi ; を追加. ./b2 -a --prefix=/usr/local cxxflags="-std=c++17" # この段階で, x86_64/boost_1_74_0/stage/lib/ に x86_64 ライブラリーができる
ほんでarm64のターミナルを起動
#------------------ # arm64版をビルド #------------------ arm64 $ mkdir arm64 cd arm64 cd boost_1_74_0 ./bootstrap.sh --prefix=/usr/local # ここで project-config.jam の末尾に using mpi ; を追加. ./b2 -a --prefix=/usr/local cxxflags="-std=c++17" # この段階で, arm64/boost_1_74_0/stage/lib/ に arm64 ライブラリーができる
エラーがいっぱい出るが...
- openMPIのarm64ネーティブが存在しないのでMPIは失敗ですよ,らしい
- これはOpenMPIの豚ビルドで解決
- liblzma.dylibのarm64ネーティブが存在しない
- これはxzを豚更新で解決
ここで豚を育成:
#------------------ # 豚にする #------------------ mkdir universal X86=../../x86_64/boost_1_74_0/stage/lib ARM=../../arm64/boost_1_74_0/stage/lib for file in $X86/lib* do lipo -create -arch x86_64 $X86/$(basename $file) \ -arch arm64 $ARM/$(basename $file) \ -output universal/$(basename $file) done lipo -info universal/* Architectures in the fat file: universal/libboost_atomic.a are: x86_64 arm64 Architectures in the fat file: universal/libboost_atomic.dylib are: x86_64 arm64 Architectures in the fat file: universal/libboost_chrono.a are: x86_64 arm64 Architectures in the fat file: universal/libboost_chrono.dylib are: x86_64 arm64 Architectures in the fat file: universal/libboost_container.a are: x86_64 arm64 Architectures in the fat file: universal/libboost_container.dylib are: x86_64 arm64 Architectures in the fat file: universal/libboost_context.a are: x86_64 arm64 Architectures in the fat file: universal/libboost_context.dylib are: x86_64 arm64 Architectures in the fat file: universal/libboost_contract.a are: x86_64 arm64 Architectures in the fat file: universal/libboost_contract.dylib are: x86_64 arm64 Architectures in the fat file: universal/libboost_coroutine.a are: x86_64 arm64 Architectures in the fat file: universal/libboost_coroutine.dylib are: x86_64 arm64 Architectures in the fat file: universal/libboost_date_time.a are: x86_64 arm64 Architectures in the fat file: universal/libboost_date_time.dylib are: x86_64 arm64 Architectures in the fat file: universal/libboost_exception.a are: x86_64 arm64 Architectures in the fat file: universal/libboost_fiber.a are: x86_64 arm64 Architectures in the fat file: universal/libboost_fiber.dylib are: x86_64 arm64 Architectures in the fat file: universal/libboost_filesystem.a are: x86_64 arm64 Architectures in the fat file: universal/libboost_filesystem.dylib are: x86_64 arm64 Architectures in the fat file: universal/libboost_graph.a are: x86_64 arm64 Architectures in the fat file: universal/libboost_graph.dylib are: x86_64 arm64 Architectures in the fat file: universal/libboost_graph_parallel.a are: x86_64 arm64 Architectures in the fat file: universal/libboost_graph_parallel.dylib are: x86_64 arm64 Architectures in the fat file: universal/libboost_iostreams.a are: x86_64 arm64 Architectures in the fat file: universal/libboost_iostreams.dylib are: x86_64 arm64 Architectures in the fat file: universal/libboost_locale.a are: x86_64 arm64 Architectures in the fat file: universal/libboost_locale.dylib are: x86_64 arm64 Architectures in the fat file: universal/libboost_log.a are: x86_64 arm64 Architectures in the fat file: universal/libboost_log.dylib are: x86_64 arm64 Architectures in the fat file: universal/libboost_log_setup.a are: x86_64 arm64 Architectures in the fat file: universal/libboost_log_setup.dylib are: x86_64 arm64 Architectures in the fat file: universal/libboost_math_c99.a are: x86_64 arm64 Architectures in the fat file: universal/libboost_math_c99.dylib are: x86_64 arm64 Architectures in the fat file: universal/libboost_math_c99f.a are: x86_64 arm64 Architectures in the fat file: universal/libboost_math_c99f.dylib are: x86_64 arm64 Architectures in the fat file: universal/libboost_math_c99l.a are: x86_64 arm64 Architectures in the fat file: universal/libboost_math_c99l.dylib are: x86_64 arm64 Architectures in the fat file: universal/libboost_math_tr1.a are: x86_64 arm64 Architectures in the fat file: universal/libboost_math_tr1.dylib are: x86_64 arm64 Architectures in the fat file: universal/libboost_math_tr1f.a are: x86_64 arm64 Architectures in the fat file: universal/libboost_math_tr1f.dylib are: x86_64 arm64 Architectures in the fat file: universal/libboost_math_tr1l.a are: x86_64 arm64 Architectures in the fat file: universal/libboost_math_tr1l.dylib are: x86_64 arm64 Architectures in the fat file: universal/libboost_mpi.a are: x86_64 arm64 Architectures in the fat file: universal/libboost_mpi.dylib are: x86_64 arm64 Architectures in the fat file: universal/libboost_mpi_python38.a are: x86_64 arm64 Architectures in the fat file: universal/libboost_mpi_python38.dylib are: x86_64 arm64 Architectures in the fat file: universal/libboost_nowide.a are: x86_64 arm64 Architectures in the fat file: universal/libboost_nowide.dylib are: x86_64 arm64 Architectures in the fat file: universal/libboost_numpy38.a are: x86_64 arm64 Architectures in the fat file: universal/libboost_numpy38.dylib are: x86_64 arm64 Architectures in the fat file: universal/libboost_prg_exec_monitor.a are: x86_64 arm64 Architectures in the fat file: universal/libboost_prg_exec_monitor.dylib are: x86_64 arm64 Architectures in the fat file: universal/libboost_program_options.a are: x86_64 arm64 Architectures in the fat file: universal/libboost_program_options.dylib are: x86_64 arm64 Architectures in the fat file: universal/libboost_python38.a are: x86_64 arm64 Architectures in the fat file: universal/libboost_python38.dylib are: x86_64 arm64 Architectures in the fat file: universal/libboost_random.a are: x86_64 arm64 Architectures in the fat file: universal/libboost_random.dylib are: x86_64 arm64 Architectures in the fat file: universal/libboost_regex.a are: x86_64 arm64 Architectures in the fat file: universal/libboost_regex.dylib are: x86_64 arm64 Architectures in the fat file: universal/libboost_serialization.a are: x86_64 arm64 Architectures in the fat file: universal/libboost_serialization.dylib are: x86_64 arm64 Architectures in the fat file: universal/libboost_stacktrace_addr2line.a are: x86_64 arm64 Architectures in the fat file: universal/libboost_stacktrace_addr2line.dylib are: x86_64 arm64 Architectures in the fat file: universal/libboost_stacktrace_basic.a are: x86_64 arm64 Architectures in the fat file: universal/libboost_stacktrace_basic.dylib are: x86_64 arm64 Architectures in the fat file: universal/libboost_stacktrace_noop.a are: x86_64 arm64 Architectures in the fat file: universal/libboost_stacktrace_noop.dylib are: x86_64 arm64 Architectures in the fat file: universal/libboost_system.a are: x86_64 arm64 Architectures in the fat file: universal/libboost_system.dylib are: x86_64 arm64 Architectures in the fat file: universal/libboost_test_exec_monitor.a are: x86_64 arm64 Architectures in the fat file: universal/libboost_thread.a are: x86_64 arm64 Architectures in the fat file: universal/libboost_thread.dylib are: x86_64 arm64 Architectures in the fat file: universal/libboost_timer.a are: x86_64 arm64 Architectures in the fat file: universal/libboost_timer.dylib are: x86_64 arm64 Architectures in the fat file: universal/libboost_type_erasure.a are: x86_64 arm64 Architectures in the fat file: universal/libboost_type_erasure.dylib are: x86_64 arm64 Architectures in the fat file: universal/libboost_unit_test_framework.a are: x86_64 arm64 Architectures in the fat file: universal/libboost_unit_test_framework.dylib are: x86_64 arm64 Architectures in the fat file: universal/libboost_wave.a are: x86_64 arm64 Architectures in the fat file: universal/libboost_wave.dylib are: x86_64 arm64 Architectures in the fat file: universal/libboost_wserialization.a are: x86_64 arm64 Architectures in the fat file: universal/libboost_wserialization.dylib are: x86_64 arm64
インストール
#------------------ # インストール #------------------ fswatch -x /usr/local/ > files.log & sudo ./b2 install --prefix=/usr/local/
この段階では, XCodeは
- Ignoring file /usr/local/lib/libboost_filesystem.dylib, building for macOS-x86_64 but attempting to link with file built for macOS-arm64
- Undefined symbol: boost::filesystem::path::replace_extension(boost::filesystem::path const&)
などなどエラーを吐き, 動作しない. x86_64 ではなくピュアarm64バージョンがインストールされているからね.
sudo cp universal/libboost_* /usr/local/lib
これで,少なくともBoostだけを使う場合にはビルドできた.
さらにビルドできない連中は,これはもしかして, 問題があるのは,BOOSTではなく,GMPかMPFRの方なのかな?
配布パッケージ作成方法(1.74.0)
WebSocket対応するには1.73.0以降が必要である.
cd boost_1_74_0 # remove older version # remove older version sudo rm -rf /usr/local/include/boost sudo rm -rf /usr/local/lib/libboost* ./bootstrap.sh --prefix=/usr/local # ここで project-config.jam の末尾に using mpi ; を追加. fswatch -x /usr/local > files.log & sudo ./b2 install --prefix=/usr/local
配布パッケージ作成方法(1.71.0)
ネットワーク通信が大幅改訂されてしまった1.71である. 古いソフトが対応しないかも!
cd boost_1_69_0 # remove older version # remove older version sudo rm -rf /usr/local/include/boost sudo rm -rf /usr/local/lib/libboost* ./bootstrap.sh --prefix=/usr/local project-config.jam の末尾に using mpi ; を追加. fswatch -x /usr/local > files.log & # Build BOOST sudo ./b2 install --prefix=/usr/local # Make binary package
配布パッケージ作成方法(1.69.0)
いろいろトラブっていたのは, OpenMPIがダメだった可能性がある. OpenMPI-4.0.0に交換して, BOOSTを作成してみる.
cd boost_1_69_0 # remove older version sudo rm -rf /usr/local/include/boost sudo rm -rf /usr/local/lib/libboost* ./bootstrap.sh --prefix=/usr/local project-config.jam の末尾に using mpi ; を追加. fswatch -x /usr/local > files.log & # Build BOOST sudo ./b2 install --prefix=/usr/local # Make binary package kill %1 fswatch_analyze.sh -c _binary files.log pkgbuild --identifier boost --root _binary boost_1_69_0-osx10.14.pkg
これでMPIまでできてしまうし, 正常に動く.
添付 | サイズ |
---|---|
boost_1_74_0-osx11.2.1.pkg | 20 MB |
boost_1_74_0-osx11.2.2.pkg | 8.37 MB |