Skip to content

Commit

Permalink
Updated version number to 200.36.0.
Browse files Browse the repository at this point in the history
Changed optimization for debug builds from -Og back to -O0.
  • Loading branch information
fpjohnston committed May 29, 2023
1 parent 429147b commit 2c5d085
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions etc/build/init.mk
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ endif

ifdef gdb # Enable use of gdb

CFLAGS += -g -Og
LINKOPTS += -g -Og
CFLAGS += -g -O0
LINKOPTS += -g -O0

else ifdef gprof # Enable use of gprof

Expand Down
4 changes: 2 additions & 2 deletions include/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
enum release_version ///< TECO release version numbers
{
major_version = 200,
minor_version = 35,
patch_version = 1
minor_version = 36,
patch_version = 0
};

#endif // !defined(_VERSION_H)

0 comments on commit 2c5d085

Please sign in to comment.