MacBookPro(mid 2009)にWindows7を入れた2011/09/02 22:31

macbookPro(mid 2009) データ

MacBookPro (mid 2009)のCPUデータ

windows7 home 64bit

HDは SSD でIntel SSD 320 Seriesの300GBに変えてある

シリアル3Gだけど さすがに速い

windows7 エクスペリエント(MacBookPro 2009)2011/09/02 22:35

MacBookPro(mid 2009)windows エクスペリエント
エクスペリエントで boot camp 3.3での値

CPU 6.1
メモリー 6.1
グラフィック 5.2
ゲーム用グラフィック 5.5
HD 6.9

さすがに SSDに変えているので速い

MacBookPro(2009)竹内関数のベンチマーク MACOSより遅い2011/09/02 23:43

MacBookPro(mid 2009)

OS Windows7 64bit
SBCL 1.0.50

遅い!!! なぜだ

(defun tarai (x y z)
(if (<= x y) y
(tarai (tarai (1- x) y z) (tarai (1- y) z x) (tarai (1- z) x y))))

TARAI
* (time (tarai 13 7 0))

Evaluation took:
1.342 seconds of real time
1.341608 seconds of total run time (1.341608 user, 0.000000 system)
100.00% CPU
3,407,258,575 processor cycles
0 bytes consed

13
* (time (tarai 14 8 0))

Evaluation took:
10.218 seconds of real time
10.202466 seconds of total run time (10.202466 user, 0.000000 system)
99.84% CPU
25,753,160,443 processor cycles
0 bytes consed

14
*

openJdk7をmacに (その1) まずは ソース2011/09/03 04:57

URL http://hg.openjdk.java.net/jdk7/build/raw-file/tip/README-builds.html#hg

には Mercurial入れろと書いてある

$ brew search Mercurial
・・・・
easy_install Mercurial
って出てくる

$easy_install Mercurial
だとエラー

$sudo easy_install Mercurialでpython 2.7のMercurialが入る

のその後 環境もしくは pythonのopenjdkインストール用スクリプトをget
マニュアルには

hg clone https://bitbucket.org/pmezard/hgforest-crew/overview/ YourHgForest

で ホームディレクトリに.hgrcを作って
上記のスクリプトを読み込むように設定しろって

やっと
$ hg fclone http://hg.openjdk.java.net/jdk7/jdk7 jdk
[.]
requesting all changes
adding changesets
adding manifests
adding file changes
added 348 changesets with 346 changes to 33 files
updating to branch default
32 files updated, 0 files merged, 0 files removed, 0 files unresolved

[corba]
requesting all changes
adding changesets
adding manifests
adding file changes
added 288 changesets with 3198 changes to 1377 files
updating to branch default
1356 files updated, 0 files merged, 0 files removed, 0 files unresolved

[hotspot]
requesting all changes
adding changesets
adding manifests
adding file changes
added 2561 changesets with 20836 changes to 4103 files
updating to branch default
3815 files updated, 0 files merged, 0 files removed, 0 files unresolved

[jaxp]
requesting all changes
adding changesets
adding manifests
adding file changes
added 233 changesets with 2213 changes to 1984 files
updating to branch default
19 files updated, 0 files merged, 0 files removed, 0 files unresolved

[jaxws]
requesting all changes
adding changesets
adding manifests
adding file changes
added 228 changesets with 6452 changes to 3002 files
updating to branch default
19 files updated, 0 files merged, 0 files removed, 0 files unresolved

[jdk]
requesting all changes
adding changesets
adding manifests
adding file changes
added 4339 changesets with 56536 changes to 20486 files
updating to branch default
19364 files updated, 0 files merged, 0 files removed, 0 files unresolved

[langtools]
requesting all changes
adding changesets
adding manifests
adding file changes
added 1037 changesets with 12934 changes to 4704 files
updating to branch default
4365 files updated, 0 files merged, 0 files removed, 0 files unresolved

$ls
ASSEMBLY_EXCEPTION THIRD_PARTY_README jaxws
LICENSE corba jdk
Makefile get_source.sh langtools
README hotspot make
README-builds.html jaxp test

macでmugo(囲碁棋譜管理)2011/09/03 22:20

mugoは 囲碁の棋譜管理ソフト

opensourceなのだが linux,windows版もあるしmac版もあるのだが,mac版ももちろんあったが Lionでは 動かなかった。

mac版はqt4が必要

mugoのソースは subversionで管理されている

homebrewでqt4をインストールして

mugo.proのppcを削除して

qmkae mugo.pro

makeで作成できる

macportsだと qt4-mac,phononを入れてもphononがQTをサポートしてないので エラーで作成出来なかった

調査中