mirror of
https://github.com/hirschmann/nbfc.git
synced 2026-04-25 16:45:53 +03:00
[GH-ISSUE #176] ./build.sh builds executable for the wrong architecture #159
Labels
No labels
Stale
bug
config
discussion
duplicate
enhancement
experimental
feature
help-wanted
info
invalid
invalid
pull-request
question
up-for-grabs
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/nbfc-hirschmann#159
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @regular on GitHub (Jan 25, 2017).
Original GitHub issue: https://github.com/hirschmann/nbfc/issues/176
I followed your build instructions for Linux on a 64bit machine running Arch Linux.
The resulting executable in Linux/bin/ReleaseLinux however fails to run:
@hirschmann commented on GitHub (Jan 25, 2017):
The resulting assembly is architecture independent CIL code. Your problem is, that the Linux kernel on your system doesn't know how to handle .net/mono binaries.
The solution: call nbfc like this:
mono nbfc.exeYou could also register .exe files as a non-native binary, see http://www.mono-project.com/archived/guiderunning_mono_applications/
@regular commented on GitHub (Feb 4, 2017):
Ah, I see! Thanks!