最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

ubuntu13.10編譯安裝mono環(huán)境(一)

 更新時(shí)間:2014年07月17日 16:31:25   投稿:hebedich  
Mono是一個(gè)自由開放源代碼項(xiàng)目。該項(xiàng)目的目標(biāo)是創(chuàng)建一系列符合ECMA標(biāo)準(zhǔn)的.NET工具,包括C#編譯器和通用語言架構(gòu)。Mono項(xiàng)目不僅可以運(yùn)行于Windows系統(tǒng)上,還可以運(yùn)行于Linux,F(xiàn)reeBSD,Unix,OS X和Solaris,甚至一些游戲平臺(tái),例如:Playstation 3,Wii或XBox 360。

準(zhǔn)備工作

一個(gè)全新安裝的ubuntu13.10系統(tǒng)

下載Mono源代碼并編譯

nike@NIKE-PC:~$ ls
Desktop Downloads Music Public Videos
Documents examples.desktop Pictures Templates
nike@NIKE-PC:~$ mkdir src
nike@NIKE-PC:~$ cd src
nike@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.bz2
Resolving 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 OK
Length: 77515552 (74M) [application/x-bzip2]
Saving to: ‘mono-3.2.8.tar.bz2'

100%[======================================>] 77,515,552 189K/s in 10m 50s

nike@NIKE-PC:~/src$ ls
mono-3.2.8.tar.bz2
nike@NIKE-PC:~/src$ tar -xjf mono-3.2.8.tar.bz2
nike@NIKE-PC:~/src$ cd mono-3.2.8/
nike@NIKE-PC:~/src/mono-3.2.8$ ./configure --prefix=/opt/mono-3.2.8
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking target system type... i686-pc-linux-gnu
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking how to create a ustar tar archive... gnutar
checking whether to enable maintainer-specific portions of Makefiles... no
checking whether ln -s works... yes
checking whether make supports nested variables... yes
checking host platform characteristics... ok
checking for gcc... gcc
checking for gcc... (cached) gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking for style of include used by make... GNU
checking dependency style of gcc... gcc3
checking for g++... no
checking whether we are using the GNU C++ compiler... no
checking whether g++ accepts -g... no
checking dependency style of g++... none
checking dependency style of gcc... gcc3
checking for gawk... (cached) mawk
checking whether gcc and cc understand -c and -o together... yes
configure: error: You need to install g++

因?yàn)闆]有安裝g++而無法繼續(xù):

nike@NIKE-PC:~/src/mono-3.2.8$ sudo apt-get install g++
[sudo] password for nike:
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following extra packages will be installed:
cpp-4.8 g++-4.8 gcc-4.8 gcc-4.8-base libasan0 libatomic1 libgcc-4.8-dev
libgcc1 libgomp1 libitm1 libquadmath0 libstdc++-4.8-dev libstdc++6
Suggested packages:
gcc-4.8-locales g++-multilib g++-4.8-multilib gcc-4.8-doc libstdc++6-4.8-dbg
gcc-4.8-multilib libmudflap0-4.8-dev libgcc1-dbg libgomp1-dbg libitm1-dbg
libatomic1-dbg libasan0-dbg libtsan0-dbg libbacktrace1-dbg libquadmath0-dbg
libmudflap0-dbg libstdc++-4.8-doc
The following NEW packages will be installed:
g++ g++-4.8 libstdc++-4.8-dev
The following packages will be upgraded:
cpp-4.8 gcc-4.8 gcc-4.8-base libasan0 libatomic1 libgcc-4.8-dev libgcc1
libgomp1 libitm1 libquadmath0 libstdc++6
11 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 mark
TLS: __thread
SIGALTSTACK: yes
Engine: Building and using the JIT
oprofile: no
BigArrays: no
DTrace: no
LLVM Back End: no (dynamically loaded: no)
 
Libraries:
.NET 2.0/3.5: yes
.NET 4.0: yes
.NET 4.5: yes
MonoDroid: no
MonoTouch: no
JNI support: IKVM Native
libgdiplus: assumed to be installed
zlib:
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
==============>省略了很多<==============

安裝成功。

設(shè)置PATH環(huán)境變量

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

在該文件末尾追加以下語句:

if [ -d /opt/mono-3.2.8/bin ]; then
export PATH=/opt/mono-3.2.8/bin:$PATH
fi

然后:

nike@NIKE-PC:~$ . .bashrc
nike@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/games
nike@NIKE-PC:~$

驗(yàn)證Mono是否安裝正確

nike@NIKE-PC:~$ mono --version
Mono 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.com
TLS: __thread
SIGSEGV: altstack
Notifications: epoll
Architecture: x86
Disabled: none
Misc: softdebug
LLVM: supported, not enabled.
GC: sgen
nike@NIKE-PC:~$ dmcs --version
Mono C# compiler version 3.2.8.0
nike@NIKE-PC:~$

安裝成功。

相關(guān)文章

  • linux sudo命令詳解

    linux sudo命令詳解

    本篇文章主要介紹了linux sudo命令,sudo 是一種權(quán)限管理機(jī)制,管理員可以授權(quán)于一些普通用戶去執(zhí)行一些 root 執(zhí)行的操作,而不需要知道 root 的密碼。
    2017-01-01
  • shiro會(huì)話管理示例代碼

    shiro會(huì)話管理示例代碼

    Shiro提供了完整的企業(yè)級會(huì)話管理功能,不依賴于底層容器(如web容器tomcat),直接使用Shiro的會(huì)話管理可以直接替換如Web容器的會(huì)話管理
    2017-09-09
  • 關(guān)于g++和gcc的相同點(diǎn)和區(qū)別詳解

    關(guān)于g++和gcc的相同點(diǎn)和區(qū)別詳解

    下面小編就為大家?guī)硪黄P(guān)于g++和gcc的相同點(diǎn)和區(qū)別詳解。小編覺得挺不錯(cuò)的,現(xiàn)在就分享給大家,也給大家做個(gè)參考。一起跟隨小編過來看看吧
    2017-01-01
  • Ubuntu安裝Matlab2020b詳細(xì)教程和資源

    Ubuntu安裝Matlab2020b詳細(xì)教程和資源

    大家好,本篇文章主要講的是Ubuntu安裝Matlab2020詳細(xì)教程和資源,感興趣的同學(xué)趕快來看一看吧,希望對你有幫助
    2021-11-11
  • 101個(gè)腳本之建立linux回收站的腳本

    101個(gè)腳本之建立linux回收站的腳本

    眾所周知,linux是沒有回收站的,一些人很害怕刪錯(cuò)東西(有經(jīng)驗(yàn)的linux管理員極少范這錯(cuò)誤),個(gè)人不建議回收站,而應(yīng)該是培養(yǎng)個(gè)人的安全意識。有點(diǎn)小跑題
    2016-08-08
  • 解決Centos7安裝nginx后提示“Welcome to nginx on Fedora!”,conf.d目錄下無default.conf文件

    解決Centos7安裝nginx后提示“Welcome to nginx on Fedora!”,conf.d目錄下無d

    這篇文章主要介紹了Centos7安裝nginx后提示“Welcome to nginx on Fedora!”,conf.d目錄下無default.conf文件 ,本文給出了問題原因解析及解決方法,需要的朋友可以參考下
    2019-07-07
  • 如何在 CentOS/RHEL 系統(tǒng)中使用帶 VLAN 標(biāo)記的以太網(wǎng)卡

    如何在 CentOS/RHEL 系統(tǒng)中使用帶 VLAN 標(biāo)記的以太網(wǎng)卡

    這篇文章主要介紹了如何在 CentOS/RHEL 系統(tǒng)中使用帶 VLAN 標(biāo)記的以太網(wǎng)卡,有對這方面感興趣的同學(xué),可以跟隨小編一起來研究學(xué)習(xí)下吧
    2020-12-12
  • Cpanel下Cron Jobs定時(shí)執(zhí)行PHP的方法

    Cpanel下Cron Jobs定時(shí)執(zhí)行PHP的方法

    PHP代碼需要定時(shí)執(zhí)行,如果你有Linux或unix系統(tǒng)權(quán)限或網(wǎng)站使用的是Cpanel后臺(tái),那么可以使用Cron JOBS來完成PHP的定時(shí)執(zhí)行功能。飄易簡單介紹一下cpanel下的使用方法
    2021-07-07
  • Linux命令下crontab命令

    Linux命令下crontab命令

    crontab是一個(gè)用來設(shè)置、刪除或顯示供守護(hù)進(jìn)程cron執(zhí)行的定時(shí)任務(wù)的命令。下面給大家介紹linux命令下crontab命令,需要的朋友一起看看吧
    2016-11-11
  • shell編程之函數(shù)與數(shù)組的使用詳解

    shell編程之函數(shù)與數(shù)組的使用詳解

    這篇文章主要介紹了shell編程之函數(shù)與數(shù)組的使用,具有很好的參考價(jià)值,希望對大家有所幫助,如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2025-04-04

最新評論

文昌市| 边坝县| 淮滨县| 宣威市| 耿马| 颍上县| 宁都县| 化德县| 霍林郭勒市| 昌宁县| 武宁县| 四子王旗| 镶黄旗| 安康市| 江北区| 康乐县| 柘城县| 会泽县| 泸西县| 白水县| 玉树县| 天门市| 日喀则市| 道孚县| 博客| 商河县| 皋兰县| 合江县| 德钦县| 阳江市| 班戈县| 白山市| 河西区| 南木林县| 区。| 莆田市| 兖州市| 武定县| 开平市| 五指山市| 和龙市|