侯体宗的博客
  • 首页
  • Hyperf版
  • beego仿版
  • 人生(杂谈)
  • 技术
  • 关于我
  • 更多分类
    • 文件下载
    • 文字修仙
    • 中国象棋ai
    • 群聊
    • 九宫格抽奖
    • 拼图
    • 消消乐
    • 相册

ubuntu13.10编译安装mono环境(一)

linux  /  管理员 发布于 5年前   317

准备工作

一个全新安装的ubuntu13.10系统

下载Mono源代码并编译

nike@NIKE-PC:~$ lsDesktop Downloads Music Public VideosDocuments examples.desktop Pictures Templatesnike@NIKE-PC:~$ mkdir srcnike@NIKE-PC:~$ cd srcnike@NIKE-PC:~/src$ wget http://download.mono-project.com/sources/mono/mono-3.2.8.tar.bz2--2014-03-27 21:24:30-- http://download.mono-project.com/sources/mono/mono-3.2.8.tar.bz2Resolving download.mono-project.com (download.mono-project.com)... 54.240.168.102, 54.230.156.158, 54.230.157.116, ...Connecting to download.mono-project.com (download.mono-project.com)|54.240.168.102|:80... connected.HTTP request sent, awaiting response... 200 OKLength: 77515552 (74M) [application/x-bzip2]Saving to: ‘mono-3.2.8.tar.bz2'100%[======================================>] 77,515,552 189K/s in 10m 50snike@NIKE-PC:~/src$ lsmono-3.2.8.tar.bz2nike@NIKE-PC:~/src$ tar -xjf mono-3.2.8.tar.bz2nike@NIKE-PC:~/src$ cd mono-3.2.8/nike@NIKE-PC:~/src/mono-3.2.8$ ./configure --prefix=/opt/mono-3.2.8checking build system type... i686-pc-linux-gnuchecking host system type... i686-pc-linux-gnuchecking target system type... i686-pc-linux-gnuchecking for a BSD-compatible install... /usr/bin/install -cchecking whether build environment is sane... yeschecking for a thread-safe mkdir -p... /bin/mkdir -pchecking for gawk... nochecking for mawk... mawkchecking whether make sets $(MAKE)... yeschecking how to create a ustar tar archive... gnutarchecking whether to enable maintainer-specific portions of Makefiles... nochecking whether ln -s works... yeschecking whether make supports nested variables... yeschecking host platform characteristics... okchecking for gcc... gccchecking for gcc... (cached) gccchecking whether the C compiler works... yeschecking for C compiler default output file name... a.outchecking for suffix of executables...checking whether we are cross compiling... nochecking for suffix of object files... ochecking whether we are using the GNU C compiler... yeschecking whether gcc accepts -g... yeschecking for gcc option to accept ISO C89... none neededchecking for style of include used by make... GNUchecking dependency style of gcc... gcc3checking for g++... nochecking whether we are using the GNU C++ compiler... nochecking whether g++ accepts -g... nochecking dependency style of g++... nonechecking dependency style of gcc... gcc3checking for gawk... (cached) mawkchecking whether gcc and cc understand -c and -o together... yesconfigure: error: You need to install g++

因为没有安装g++而无法继续:

nike@NIKE-PC:~/src/mono-3.2.8$ sudo apt-get install g++[sudo] password for nike:Reading package lists... DoneBuilding dependency treeReading state information... DoneThe following extra packages will be installed:cpp-4.8 g++-4.8 gcc-4.8 gcc-4.8-base libasan0 libatomic1 libgcc-4.8-devlibgcc1 libgomp1 libitm1 libquadmath0 libstdc++-4.8-dev libstdc++6Suggested packages:gcc-4.8-locales g++-multilib g++-4.8-multilib gcc-4.8-doc libstdc++6-4.8-dbggcc-4.8-multilib libmudflap0-4.8-dev libgcc1-dbg libgomp1-dbg libitm1-dbglibatomic1-dbg libasan0-dbg libtsan0-dbg libbacktrace1-dbg libquadmath0-dbglibmudflap0-dbg libstdc++-4.8-docThe following NEW packages will be installed:g++ g++-4.8 libstdc++-4.8-devThe following packages will be upgraded:cpp-4.8 gcc-4.8 gcc-4.8-base libasan0 libatomic1 libgcc-4.8-dev libgcc1libgomp1 libitm1 libquadmath0 libstdc++611 upgraded, 3 newly installed, 0 to remove and 275 not upgraded.Need to get 25.9 MB of archives.After this operation, 28.2 MB of additional disk space will be used.Do you want to continue [Y/n]?==============>省略了很多<==============

重新初始化mono安装配置文件:

nike@NIKE-PC:~/src/mono-3.2.8$ ./configure --prefix=/opt/mono-3.2.8==============>省略了很多<==============Engine:GC: sgen and bundled Boehm GC with typed GC and parallel markTLS: __threadSIGALTSTACK: yesEngine: Building and using the JIToprofile: noBigArrays: noDTrace: noLLVM Back End: no (dynamically loaded: no) Libraries:.NET 2.0/3.5: yes.NET 4.0: yes.NET 4.5: yesMonoDroid: noMonoTouch: noJNI support: IKVM Nativelibgdiplus: assumed to be installedzlib:nike@NIKE-PC:~/src/mono-3.2.8$

./configure通过。

编译Mono源代码

nike@NIKE-PC:~/src/mono-3.2.8$ make==============>漫长的编译~<==============nike@NIKE-PC:~/src/mono-3.2.8$ sudo make install==============>省略了很多<==============

安装成功。

设置PATH环境变量

nike@NIKE-PC:~/src/mono-3.2.8$ cd ~nike@NIKE-PC:~$ vim .bashrc

在该文件末尾追加以下语句:

if [ -d /opt/mono-3.2.8/bin ]; thenexport PATH=/opt/mono-3.2.8/bin:$PATHfi

然后:

nike@NIKE-PC:~$ . .bashrcnike@NIKE-PC:~$ echo $PATH/opt/mono-3.2.8/bin:/usr/lib/lightdm/lightdm:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/gamesnike@NIKE-PC:~$

验证Mono是否安装正确

nike@NIKE-PC:~$ mono --versionMono JIT compiler version 3.2.8 (tarball 2014年 03月 27日 星期四 21:55:30 CST)Copyright (C) 2002-2014 Novell, Inc, Xamarin Inc and Contributors. www.mono-project.comTLS: __threadSIGSEGV: altstackNotifications: epollArchitecture: x86Disabled: noneMisc: softdebugLLVM: supported, not enabled.GC: sgennike@NIKE-PC:~$ dmcs --versionMono C# compiler version 3.2.8.0nike@NIKE-PC:~$

安装成功。


  • 上一条:
    ubuntu 13.10编译安装mono环境(二)
    下一条:
    在Ubuntu或Debian系统的服务器上卸载MySQL的方法
  • 昵称:

    邮箱:

    0条评论 (评论内容有缓存机制,请悉知!)
    最新最热
    • 分类目录
    • 人生(杂谈)
    • 技术
    • linux
    • Java
    • php
    • 框架(架构)
    • 前端
    • ThinkPHP
    • 数据库
    • 微信(小程序)
    • Laravel
    • Redis
    • Docker
    • Go
    • swoole
    • Windows
    • Python
    • 苹果(mac/ios)
    • 相关文章
    • 在Linux系统中使用Iptables实现流量转发功能流程步骤(0个评论)
    • vim学习笔记-入门级需要了解的一些快捷键(0个评论)
    • 在centos7系统中实现分区并格式化挂载一块硬盘到/data目录流程步骤(0个评论)
    • 在Linux系统种查看某一个进程所占用的内存命令(0个评论)
    • Linux中grep命令中的10种高级用法浅析(0个评论)
    • 近期文章
    • 智能合约Solidity学习CryptoZombie第三课:组建僵尸军队(高级Solidity理论)(0个评论)
    • 智能合约Solidity学习CryptoZombie第二课:让你的僵尸猎食(0个评论)
    • 智能合约Solidity学习CryptoZombie第一课:生成一只你的僵尸(0个评论)
    • 在go中实现一个常用的先进先出的缓存淘汰算法示例代码(0个评论)
    • 在go+gin中使用"github.com/skip2/go-qrcode"实现url转二维码功能(0个评论)
    • 在go语言中使用api.geonames.org接口实现根据国际邮政编码获取地址信息功能(1个评论)
    • 在go语言中使用github.com/signintech/gopdf实现生成pdf分页文件功能(0个评论)
    • gmail发邮件报错:534 5.7.9 Application-specific password required...解决方案(0个评论)
    • 欧盟关于强迫劳动的规定的官方举报渠道及官方举报网站(0个评论)
    • 在go语言中使用github.com/signintech/gopdf实现生成pdf文件功能(0个评论)
    • 近期评论
    • 122 在

      学历:一种延缓就业设计,生活需求下的权衡之选中评论 工作几年后,报名考研了,到现在还没认真学习备考,迷茫中。作为一名北漂互联网打工人..
    • 123 在

      Clash for Windows作者删库跑路了,github已404中评论 按理说只要你在国内,所有的流量进出都在监控范围内,不管你怎么隐藏也没用,想搞你分..
    • 原梓番博客 在

      在Laravel框架中使用模型Model分表最简单的方法中评论 好久好久都没看友情链接申请了,今天刚看,已经添加。..
    • 博主 在

      佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 @1111老铁这个不行了,可以看看近期评论的其他文章..
    • 1111 在

      佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 网站不能打开,博主百忙中能否发个APP下载链接,佛跳墙或极光..
    • 2016-11
    • 2017-07
    • 2017-10
    • 2017-11
    • 2018-01
    • 2018-02
    • 2020-03
    • 2020-04
    • 2020-05
    • 2020-06
    • 2021-02
    • 2021-03
    • 2021-04
    • 2021-06
    • 2021-07
    • 2021-08
    • 2021-09
    • 2021-10
    • 2021-11
    • 2021-12
    • 2022-01
    • 2022-03
    • 2022-04
    • 2022-08
    • 2022-11
    • 2022-12
    • 2023-01
    • 2023-02
    • 2023-03
    • 2023-06
    • 2023-07
    • 2023-10
    • 2023-12
    • 2024-01
    • 2024-04
    Top

    Copyright·© 2019 侯体宗版权所有· 粤ICP备20027696号 PHP交流群

    侯体宗的博客