Changes between Version 12 and Version 13 of jazz/09-07-17
- Timestamp:
- Jul 23, 2009, 5:29:05 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
jazz/09-07-17
v12 v13 2 2 3 3 * 排解 intel C++ compiler 雙字元字集編譯問題 4 * [問題] 錯誤訊息如下: 4 5 {{{ 5 6 Catastrophic error: could not set locale "" to allow processing of multibyte characters 6 7 compilation aborted for k.c (code 4) 7 8 }}} 9 * [解法] 設定 locale 為 C 8 10 {{{ 9 11 LANG=C icc -openmp icctest.c 10 12 }}} 13 * icctest.c 範例程式 11 14 {{{ 12 15 #!c