Skip to content

Improve comments in Makefile #3097

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 3, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 9 additions & 7 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#This is a simple wrapper which hides cmake (for convenience, and from non-expert end users).
# This is a simple wrapper which hides cmake (for convenience, and from non-expert end users).
#
# It supports the targets:
# 'make' - builds everything (all libaries/executables)
@@ -15,12 +15,14 @@
#
# 'make BUILD_TYPE=debug VERBOSE=1'

#Default build type
# Possible values:
# release_pgo #Perform a 2-stage build with profile-guided compiler optimization
# release #Build with compiler optimization
# debug #Build with debug info and no compiler optimization
# strict #Build VPR with warnings treated as errors
# Build type
# Possible values (not case sensitive):
# release #Build with compiler optimization (Default)
# RelWithDebInfo #Build with debug info and compiler optimizations
# debug #Build with debug info and no compiler optimization
# Possible suffixes:
# _pgo #Perform a 2-stage build with profile-guided compiler optimization
# _strict #Build VPR with warnings treated as errors
BUILD_TYPE ?= release

#Debugging verbosity enable