從github 歷史中找到的,最新版本編譯會出錯。
有了這個後,編譯
2. make
3. 拷貝 erlydtl 和 merl 兩個庫到erlang/lib 下邊,並在.erlang 中新增路徑。
4.任意目錄下建立以下檔案
建立檔案:test.erl
-module(test).
-export([run/0]).
run()->
erlydtl:compile("tpl.htm", welcome_template),
welcome_template:render([
]).
複製**
建立模板檔案 tpl.htm
welcome back, }!
複製**
然後進入erlagn shell
$ erl
1>c(test).
2>test:run().
大功告成!
編譯 交叉編譯
交叉編譯含義 是指在乙個平台上生成另乙個平台上的可執行 同乙個體系結構可以執行不同的作業系統,同樣乙個作業系統也可以在不同的體系結構上執行 例 常說的x86 linux平台 指inter x86體系結構及linux for x86作業系統 x86 winnt平台 指inter x86體系結構及win...
核心編譯 模組編譯
目前是嵌入式 linux 的初學者感覺有所體會 1.從demo 學起 tiny 6410 上的開發,我的任務不斷是新增小模組。交叉編譯器,以及其它一系列 tool chains 可直使用產商提供的工具。避免過多細節的好處在於,你可以從整體處著手你從書本學到的理論知識。2.kernel 編譯其它很簡單...
Golang 編譯 條件編譯
條件編譯 標籤編譯 build tag build build linux and 386 or darwin and not cgo 以 開始,例如 build 支援 goos 與 goarch 並可以具有多個值,用 分割,例如 build linux,darwin,freebsd 支援 不等條件...