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

fix: Fixes for Cross-Compilation Issues #272

Open
wants to merge 8 commits into
base: main
Choose a base branch
from
Prev Previous commit
fix: Oops
  • Loading branch information
Losses authored Sep 16, 2024
commit fbe5d92863a371ce6fccb9dfdff9e4b20b81ab14
2 changes: 1 addition & 1 deletion lib/elinux_build_target.dart
Original file line number Diff line number Diff line change
Expand Up @@ -384,6 +384,7 @@ class NativeBundle {
eLinuxDir.path,
],
workingDirectory: outputDir.path,
environment: _buildCMakeEnvironment(targetToolchain),
);
if (result.exitCode != 0) {
throwToolExit('Failed to cmake:\n$result');
Expand All @@ -402,7 +403,6 @@ class NativeBundle {
numProc,
],
workingDirectory: outputDir.path,
environment: _buildCMakeEnvironment(targetToolchain),
);
if (result.exitCode != 0) {
throwToolExit('Failed to cmake build:\n$result');
Expand Down
Loading