Skip to content

Commit 2087d5b

Browse files
Change default build type to RelWithDebugInfo
1 parent d2585f8 commit 2087d5b

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

Makefile

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,15 @@
1515
#
1616
# 'make BUILD_TYPE=debug VERBOSE=1'
1717

18-
#Default build type
19-
# Possible values:
20-
# release_pgo #Perform a 2-stage build with profile-guided compiler optimization
21-
# release #Build with compiler optimization
22-
# debug #Build with debug info and no compiler optimization
23-
# strict #Build VPR with warnings treated as errors
24-
BUILD_TYPE ?= release
18+
# Build type
19+
# Possible values (not case sensitive):
20+
# Release #Build with compiler optimization
21+
# RelWithDebInfo #Build with debug info and compiler optimizations (Default)
22+
# Debug #Build with debug info and no compiler optimization
23+
# Possible suffixes:
24+
# _pgo #Perform a 2-stage build with profile-guided compiler optimization
25+
# _strict #Build VPR with warnings treated as errors
26+
BUILD_TYPE ?= RelWithDebInfo
2527

2628
#Debugging verbosity enable
2729
VERBOSE ?= 0

0 commit comments

Comments
 (0)