Skip to content

Commit 5423f49

Browse files
committed
workaround for issue wih gdb/mingw
With new sdk-build docker used for llvm builds, building gdb fails for gnu toolchains, go back to old versions of mingw toolchains when build gnu toolchain for now. Signed-off-by: Anas Nashif <[email protected]>
1 parent 4bc588a commit 5423f49

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -492,8 +492,11 @@ jobs:
492492
# Install dependencies for cross compilation
493493
if [ "${{ matrix.host.name }}" == "windows-x86_64" ]; then
494494
# Make MinGW-w64 win32 cross toolchain available in PATH
495-
echo "/opt/mingw-w64-win32/bin" >> $GITHUB_PATH
496-
export PATH="/opt/mingw-w64-win32/bin:$PATH"
495+
#echo "/opt/mingw-w64-win32/bin" >> $GITHUB_PATH
496+
#export PATH="/opt/mingw-w64-win32/bin:$PATH"
497+
# Install MinGW-w64 cross toolchain
498+
sudo apt-get install -y binutils-mingw-w64 gcc-mingw-w64 \
499+
g++-mingw-w64
497500
498501
# Build and install libboost-regex for MinGW-w64 host
499502
## Check out Boost library source code

0 commit comments

Comments
 (0)