-
Notifications
You must be signed in to change notification settings - Fork 148
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
I keep getting this message #185
Comments
This is saying you don't have MCS (the Mono C# compiler) available. Can you double-check your Mono install? |
I just did an auto-remove and reinstall and it is still giveing me the same error? the output of mono --version is: Mono JIT compiler version 4.2.1 (Debian 4.2.1.102+dfsg2-7ubuntu4) |
Not sure. @eatdrinksleepcode Any idea what's going on here? You set up the bootstrap script. |
Might be NAnt related. Can't recall if it setup for that version of
mono....
Thanks,
Ryan
…On Jan 24, 2018 10:50 AM, "masonwheeler" ***@***.***> wrote:
Not sure.
@eatdrinksleepcode <https://github.com/eatdrinksleepcode> Any idea what's
going on here? You set up the bootstrap script.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#185 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/AAWbdJsma6v1-3BYlKpSCP-u_Xcn3qkjks5tN3tbgaJpZM4RruOQ>
.
|
@Braber01 are you running on a Mac? can you post the output of the following commands?
|
which mono: /usr/bin mono the last three give me no such file or directory |
I'm a dummy I didnt install mono correctly ..... |
Did you get it working then? :) |
Nope I didn't apprently there isn't a Libary directory under my root folder :( |
@Braber01 can you confirm my previous question:
If you don't have a /Library folder then I'm guessing not. The bootstrap script works on the Travis build, which is Linux, but I haven't tested it generally on any non-Mac environments. |
ah the probmem would be Iḿ running Linux Mint Sylvia, Please update me if you guys can figure out how to get it to work there |
mkdir -p bootstrap
cp -R lib/ bootstrap/lib
Mono loads log4net before privatebinpath is set-up, so we need this in the same directory
as NAnt.exe
cp lib/common/neutral/log4net.dll bootstrap
cp src/NAnt.Console/App.config bootstrap/NAnt.exe.config
/Library/Frameworks/Mono.framework/Versions/Current/bin/mcs -target:exe -define:MONO,NET_1_0,NET_1_1,NET_2_0,ONLY_2_0 -out:bootstrap/NAnt.exe -r:bootstrap/log4net.dll
-r:System.Configuration.dll -recurse:src/NAnt.Console/*.cs src/CommonAssemblyInfo.cs
/bin/sh: 1: /Library/Frameworks/Mono.framework/Versions/Current/bin/mcs: not found
Makefile:98: recipe for target 'bootstrap/NAnt.exe' failed
make: *** [bootstrap/NAnt.exe] Error 127
The text was updated successfully, but these errors were encountered: