Skip to content

Commit

Permalink
Fixed build
Browse files Browse the repository at this point in the history
  • Loading branch information
deathkiller committed Feb 21, 2024
1 parent 12a3656 commit ab941ae
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
mkdir Libs
cd Libs
#Invoke-WebRequest -uri "https://github.com/Chuyu-Team/VC-LTL5/releases/download/v5.0.5/VC-LTL-5.0.5-Binary.7z" -Method "GET" -Outfile "VC-LTL-Binary.7z"
#Invoke-WebRequest -uri "https://github.com/Chuyu-Team/VC-LTL5/releases/download/v5.0.9/VC-LTL-5.0.9-Binary.7z" -Method "GET" -Outfile "VC-LTL-Binary.7z"
Invoke-WebRequest -uri "https://github.com/Chuyu-Team/VC-LTL/releases/download/v4.1.3/VC-LTL-4.1.3-Binary-VS2019.7z" -Method "GET" -Outfile "VC-LTL-Binary.7z"
7z x ".\VC-LTL-Binary.7z" -o"VC-LTL"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows_clang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
mkdir Libs
cd Libs
Invoke-WebRequest -uri "https://github.com/Chuyu-Team/VC-LTL5/releases/download/v5.0.6-Beta3/VC-LTL-5.0.6-Beta3-Binary.7z" -Method "GET" -Outfile "VC-LTL-Binary.7z"
Invoke-WebRequest -uri "https://github.com/Chuyu-Team/VC-LTL5/releases/download/v5.0.9/VC-LTL-5.0.9-Binary.7z" -Method "GET" -Outfile "VC-LTL-Binary.7z"
7z x ".\VC-LTL-Binary.7z" -o"VC-LTL"
- name: 'Configure CMake'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows_v143.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
mkdir Libs
cd Libs
Invoke-WebRequest -uri "https://github.com/Chuyu-Team/VC-LTL5/releases/download/v5.0.6-Beta3/VC-LTL-5.0.6-Beta3-Binary.7z" -Method "GET" -Outfile "VC-LTL-Binary.7z"
Invoke-WebRequest -uri "https://github.com/Chuyu-Team/VC-LTL5/releases/download/v5.0.9/VC-LTL-5.0.9-Binary.7z" -Method "GET" -Outfile "VC-LTL-Binary.7z"
7z x ".\VC-LTL-Binary.7z" -o"VC-LTL"
- name: 'Configure CMake'
Expand Down
7 changes: 5 additions & 2 deletions Sources/backward/backward.h
Original file line number Diff line number Diff line change
Expand Up @@ -297,8 +297,11 @@ typedef SSIZE_T ssize_t;
#endif

#include <CommonWindows.h>
#include <Containers/StringStl.h>
#include <Utf8.h>

#if !defined(DEATH_TARGET_32BIT)
# include <Containers/StringStl.h>
# include <Utf8.h>
#endif

#include <psapi.h>
#include <signal.h>
Expand Down

0 comments on commit ab941ae

Please sign in to comment.