Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Windows cross build documentation #2736

Closed
Changes from 1 commit
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
scripts/Windows/README.adoc: fixed build command.
Signed-off-by: RikyPlaza <158032745+RikyPlaza@users.noreply.github.com>
  • Loading branch information
RikyPlaza committed Dec 20, 2024

Verified

This commit was signed with the committer’s verified signature.
marc-aurele-besner Marc-Aurele Besner
commit 5d08e8493c4dc3eb65f8f774015d190491089daf
6 changes: 3 additions & 3 deletions scripts/Windows/README.adoc
Original file line number Diff line number Diff line change
@@ -770,11 +770,11 @@ or, depending on the build environment(s) you have prepared,
This is also automated for common NUT CI build script, calling it like this:
------
# Try to guess bitness based on ARCH or CFLAGS:
BUILD_TYPE=cross-windows-mingw ./ci_build.sh
BUILD_TYPE=cross-windows-mingw ./ci_build.sh --prefix=$PREFIX $HOST_FLAG

# Or specifically:
BUILD_TYPE=cross-windows-mingw-32 ./ci_build.sh
BUILD_TYPE=cross-windows-mingw-64 ./ci_build.sh
BUILD_TYPE=cross-windows-mingw-32 ./ci_build.sh --prefix=$PREFIX $HOST_FLAG
BUILD_TYPE=cross-windows-mingw-64 ./ci_build.sh --prefix=$PREFIX $HOST_FLAG
------
======