Skip to content

Commit

Permalink
Fix MSYS64 bin path
Browse files Browse the repository at this point in the history
  • Loading branch information
multiplemonomials committed Oct 15, 2023
1 parent 490485f commit 2ca8239
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/compile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
pacman --noconfirm -Sy mingw-w64-ucrt-x86_64-libusb mingw-w64-ucrt-x86_64-gcc ninja
- name: Compile project
run: |
$env:PATH = "C:\msys64\usr\bin;C:\msys64\ucrt64\usr\bin;$env:PATH"
$env:PATH = "C:\msys64\ucrt64\bin;C:\msys64\usr\bin;$env:PATH"
mkdir build
cd build
cmake .. -GNinja -DUSE_WERROR=TRUE -DCMAKE_C_COMPILER=mingw-w64-ucrt-x86_64-gcc -DCMAKE_CXX_COMPILER=mingw-w64-ucrt-x86_64-g++
Expand Down
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,11 @@
# fxload-win32
# FXLoad

## What is FXLoad?

## License & History

## Installation

## Usage

A Win32 + libusb-1.0 API port of fxload, programming tool for Cypress EZ-USB series.

0 comments on commit 2ca8239

Please sign in to comment.