From owner-freebsd-ports@FreeBSD.ORG Wed May 20 03:33:21 2015 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C1C46B6 for ; Wed, 20 May 2015 03:33:21 +0000 (UTC) Received: from mail-qc0-x229.google.com (mail-qc0-x229.google.com [IPv6:2607:f8b0:400d:c01::229]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8436912F7 for ; Wed, 20 May 2015 03:33:21 +0000 (UTC) Received: by qctt3 with SMTP id t3so17691353qct.1 for ; Tue, 19 May 2015 20:33:20 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=subject:from:to:in-reply-to:references:disposition-notification-to :content-type:date:message-id:mime-version; bh=4inKOIW6Rg4TGiC7ZQWov014926wKI+Gt0PTEzwYWS4=; b=e0bVCj9gqm0qV/tLGqmvz9bG1EwOSWBXdZiuit0MZvJqRgVRKDGyCfYxZFERupGSqL NDwLKrrdSEwVaJ3el7NTaAsGQx190kIlnn0AfyywZ7cTgZNjHrOPXyFBa3lDUCP/EWT1 CMLBnSYUN9qe+qy1WXnErfTeMOlPzB/OmGa3WQ+ZaCC1Lxo2Lb6bl7324jUe4HkD1aZ5 YEYNR7d4oFh9agROzwAqFUM+f1H/RycjZT8TfcI7VIyUCaeiGCB1kIghZdHTILwCU1IW AIwr41wgGoOzkgPPFyS9bzZeI2Zz1lLWfiGIfr6C76fiqFrinSwYFPFxGyR46i6R4iLS qUhw== X-Received: by 10.140.94.175 with SMTP id g44mr28492212qge.2.1432092800656; Tue, 19 May 2015 20:33:20 -0700 (PDT) Received: from [192.168.6.123] ([179.184.51.72]) by mx.google.com with ESMTPSA id i106sm10418637qgi.30.2015.05.19.20.33.19 for (version=SSLv3 cipher=RC4-SHA bits=128/128); Tue, 19 May 2015 20:33:19 -0700 (PDT) Subject: Mono does not build on freeBSD 10.1 (i386) From: sergio de Almeida Lenzi To: freebsd-ports@freebsd.org In-Reply-To: <002701d092a0$24d81cf0$6e8856d0$@quicknet.nl> References: <002701d092a0$24d81cf0$6e8856d0$@quicknet.nl> Date: Wed, 20 May 2015 00:33:16 -0300 Message-ID: <1432092796.55418.39.camel@lenzinote.lenzicasa> Mime-Version: 1.0 X-Mailer: Evolution 2.32.1 FreeBSD GNOME Team Port Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 May 2015 03:33:21 -0000 Hello I try to build mono on freeBSD 10.1 (i386) in the ports, mono version 4.0.1.28 it stops the build with the message that cannot execute mcs if I try to execute mcs (from the wrapper....) /usr/ports/lang/mono]# work/mono-4.0.1/runtime/_tmpinst/bin/mcs result in error....n (cannot find mscorlib.dll) The assembly mscorlib.dll was not found or could not be loaded. It should have been installed in the `/usr/local/lib/mono/4.5/mscorlib.dll' directory. there exists... find work -name mscorlib.dll work/mono-4.0.1/mcs/class/lib/monolite/mscorlib.dll work/mono-4.0.1/external/binary-reference-assemblies/v4.0/mscorlib.dll work/mono-4.0.1/external/binary-reference-assemblies/v2.0/mscorlib.dll But does not build version 4.5 of mscorlib.dll ________________________________________________________________________ 2502 cp mono-wrapper _tmpinst/bin/mono 2503 echo '#! /bin/sh' > _tmpinst/bin/ilasm ; \ 2504 r=`pwd`; m=`cd /usr/ports/lang/mono/work/mono-4.0.1/mcs && pwd`; \ 2505 echo 'exec "'"$r/_tmpinst/bin/mono"'" "'"$m/ilasm/ilasm.exe"'" "$@"' >> _tmpinst/bin/ilasm ; \ 2506 chmod +x _tmpinst/bin/ilasm 2507 echo '#! /bin/sh' > _tmpinst/bin/mcs ; \ 2508 r=`pwd`; m=`cd /usr/ports/lang/mono/work/mono-4.0.1/mcs && pwd`; \ 2509 echo 'exec "'"$r/_tmpinst/bin/mono"'" "'"$m/class/lib/build/mcs.exe"'" "$@"' >> _tmpinst/bin/mcs ; \ 2510 chmod +x _tmpinst/bin/mcs 2511 echo '#! /bin/sh' > _tmpinst/bin/dmcs ; \ 2512 r=`pwd`; m=`cd /usr/ports/lang/mono/work/mono-4.0.1/mcs && pwd`; \ 2513 echo 'exec "'"$r/_tmpinst/bin/mono"'" "'"$m/class/lib/build/mcs.exe -sdk:4"'" "$@"' >> _tmpinst/bin/dmcs ; \ 2514 chmod +x _tmpinst/bin/dmcs 2515 echo '#! /bin/sh' > _tmpinst/bin/al2 ; \ 2516 r=`pwd`; m=`cd /usr/ports/lang/mono/work/mono-4.0.1/mcs && pwd`; \ 2517 echo 'exec "'"$r/_tmpinst/bin/mono"'" "'"$m/class/lib/net_2_0/al.exe"'" "$@"' >> _tmpinst/bin/al2 ; \ 2518 chmod +x _tmpinst/bin/al2 2519 echo '#! /bin/sh' > _tmpinst/bin/al ; \ 2520 r=`pwd`; m=`cd /usr/ports/lang/mono/work/mono-4.0.1/mcs && pwd`; \ 2521 echo 'exec "'"$r/_tmpinst/bin/mono"'" "'"$m/class/lib/net_4_5/al.exe"'" "$@"' >> _tmpinst/bin/al ; \ 2522 chmod +x _tmpinst/bin/al 2523 if test -w /usr/ports/lang/mono/work/mono-4.0.1/mcs; then :; else chmod -R +w /usr/ports/lang/mono/work/mono-4.0 .1/mcs; fi 2524 cd /usr/ports/lang/mono/work/mono-4.0.1/mcs && gmake --no-print-directory -s NO_DIR_CHECK=1 PROFILES='binary_ref erence_assemblies net_4_5 xbuild_12 xbuild_14 ' CC='cc' all-profiles 2525 mkdir -p -- build/deps 2526 gmake[7]: mcs: Command not found 2527 build/profiles/basic.make:93: recipe for target 'build/deps/basic-profile-check.exe' failed 2528 gmake[7]: *** [build/deps/basic-profile-check.exe] Error 127 2529 *** The compiler 'mcs' doesn't appear to be usable.