C

Fatal error: php.h no such a file or directoryでコンパイルエラ

よくある話。sourceからコンパイルしたい。 source.tar.gz解凍、./configure make 生成される。どこかわからないときは、find ./ -name "*.so"とかで探そう。./.libsとかに吐かれること多し。 問題は、ヘッダがないよ、とコンパイルエラがでること。今回はph…

volatitle

volatitleはコンパイラに最適化しないでとお願いするおまじないです。コンパイラは最適化のために無駄な参照を省いたり、処理の順番を入れ変えたりしてくれます。これが、余計なお世話だと、いった場合はvolatilteをつけて明示的に意思表示しましょ。最後に…

構造体での中身代入時になぜかエラー

C++ C

#include typedef struct item{ int id; struct item * next; }item_t;void add(struct item * ori, struct item * tar); /* oh, my god, I spend 1 hours, why the hell, item_t linearList; linearList.id = 0; item_t aa; aa.id = 1; throws compile erro…