Skip to content

Commit

Permalink
build: Remove unnecessary -j option in makefile debug command (#11587)
Browse files Browse the repository at this point in the history
Summary:
The `build` target will use `-j` option, so we do not need it in the `debug` target.

Pull Request resolved: #11587

Reviewed By: pedroerp

Differential Revision: D69804377

Pulled By: mbasmanova

fbshipit-source-id: bc357ba5f3f77fc9fa422631f02856298ff35102
  • Loading branch information
wecharyu authored and facebook-github-bot committed Feb 19, 2025
1 parent 46c5fbd commit b9ade92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ build: #: Build the software based in BUILD_DIR and BUILD_TYPE variables

debug: #: Build with debugging symbols
$(MAKE) cmake BUILD_DIR=debug BUILD_TYPE=Debug
$(MAKE) build BUILD_DIR=debug -j ${NUM_THREADS}
$(MAKE) build BUILD_DIR=debug

release: #: Build the release version
$(MAKE) cmake BUILD_DIR=release BUILD_TYPE=Release && \
Expand Down

0 comments on commit b9ade92

Please sign in to comment.