Skip to content

Commit

Permalink
Configure build with debug flags.
Browse files Browse the repository at this point in the history
Modified the build script to include debug flags, enabling better debugging capabilities. This change sets the CFLAGS to "-g -O0" during the configure step to provide more detailed debugging information. This will help in identifying and resolving issues more effectively during development.
  • Loading branch information
koriym committed Dec 7, 2024
1 parent d0a05a0 commit 7bffe61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ clean() {
prepare() {
echo "Preparing..."
phpize
./configure
./configure CFLAGS="-g -O0"
}

build() {
Expand Down

0 comments on commit 7bffe61

Please sign in to comment.