/etc/make.conf で COPTFLAGS を定義してると気づかないかもしれんが
. if defined(DEBUG)
_MINUS_O= -O
. else
_MINUS_O= -O2
. endif
. if ${MACHINE_ARCH} == "amd64"
COPTFLAGS?=-O2 -frename-registers -pipe
. else
COPTFLAGS?=${_MINUS_O} -pipe
. endif
そですね。
>>566 ex10ではmakeoptions DEBUG=-gはコメントアウト状態。