Skip to content

Commit

Permalink
wut v1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
fincs committed Aug 7, 2022
1 parent 733d500 commit a8ae667
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 2 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
#### wut 1.1.1
###### Important changes
- Changed license to zlib to avoiding licensing issues when linking against wut in non-GPL projects. (#257)

###### Important bug fixes
- Fixed stack alignment to match PPC EABI requirements and avoid undefined behaviour (#248)
- Fixed lseek implementation which caused undefined behaviour on SEEK_CUR (#253)
- Added fix to prevent file-offset overflow in seek implementation (#254)
- Fixed lseek implementation to work correctly on files opend with O_APPEND (#256)
- Fixed and improved usage of atomics (#258)

###### New features
- Added a trapword to the crt in case a debugger is initalized to allow debugging .rpx compiled with wut (#249)
- Added support for the O_EXCL fopen flag and the following flag combinations: `O_WRONLY | O_CREAT`, `O_WRONLY | O_APPEND` and `O_WRONLY | O_TRUNC` (#250)

###### CafeOS related changes
- Fixed invalid ACPInitialize function declaration (#247)
- Fixed order of arguments for FSOpenFileExAsync (#260)

Thanks to @exjam, @fincs, @GaryOderNichts and @Maschell for their contributions to this release.

#### wut 1.1.0
###### Important bug fixes
- Added wut_load_bounds section to prevent loader bug (thanks @GaryOderNichts)
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ include $(TOPDIR)/share/wut_rules

export WUT_MAJOR := 1
export WUT_MINOR := 1
export WUT_PATCH := 0
export WUT_PATCH := 1

VERSION := $(WUT_MAJOR).$(WUT_MINOR).$(WUT_PATCH)

Expand Down
2 changes: 1 addition & 1 deletion docs/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ if(DOXYGEN_FOUND)
set(DOXYGEN_OUT ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile)

set(DOXYGEN_PROJECT_NAME "wut")
set(DOXYGEN_PROJECT_NUMBER "1.1.0")
set(DOXYGEN_PROJECT_NUMBER "1.1.1")
set(DOXYGEN_PROJECT_BRIEF "Wii U Toolchain")

set(DOXYGEN_GENERATE_HTML YES)
Expand Down

0 comments on commit a8ae667

Please sign in to comment.