chore: 不要なビルドシステム残骸(common/Makefile・include/Makefile・bootstrap_tbb.sh)を削除する - #106
Merged
Conversation
CMake 一本化後に残った、使われていないビルドシステム残骸ファイルを削除する。
- common/Makefile: CMake 移行前の残骸。CMake ビルドから参照されない。
- include/Makefile: 同上。
- build_tools/bootstrap_tbb.sh: 前提とする third_party/tbb は .gitmodules
に submodule 登録すらされておらず dead な bootstrap スクリプト。
CMakeLists.txt / cmake/*.cmake / .github/workflows/* / build_tools/* から
これら 3 ファイルへの参照がないことを grep で確認済み。
あわせて docs/build_{ja,en}.md から bootstrap_tbb.sh への言及を削除する。
Closes #87
This was referenced May 15, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
背景
CMake 一本化後に残った、使われていないビルドシステム残骸ファイルを削除する。
親イシュー #29 / 旧 #36 をコンテキスト分割したうちの 1 つ (#87)。
変更内容
以下 3 ファイルを
git rmで削除:common/Makefile— CMake 移行前の残骸。CMake ビルドから参照されない。include/Makefile— 同上。build_tools/bootstrap_tbb.sh— 前提とするthird_party/tbbは.gitmodulesに submodule 登録すらされておらず dead な bootstrap スクリプト。あわせて
docs/build_{ja,en}.mdからbootstrap_tbb.shへの言及を削除(_ja/_enペア更新)。確認
CMakeLists.txt/cmake/*.cmake/.github/workflows/*/build_tools/*からこれら 3 ファイルへの参照がないことを grep で確認済み。cmake -S . -B build(configure)が成功することを確認済み。instruction/Makefileの../common/Makefileinclude は [P7] instruction/ マイクロベンチの扱いを決める #85 のスコープのため本 PR では touch しない(instruction/自体が CMake ビルド対象外の未使用 legacy で実害なし)。Closes #87