--- /usr/bin/mkoctfile 2005-07-24 23:48:03.000000000 +0200 +++ ./mkoctfile-2.1.71 2005-11-15 03:16:21.000000000 +0200 @@ -133,6 +133,8 @@ -W Pass flags though the compiler like -Wl,-rpath=... -c, --compile Compile, but do not link. + + -g, --debug Compile with debugging symbols. -o FILE, --output FILE Output file name. Default extension is .oct unless linking a stand-alone executable. @@ -222,6 +224,10 @@ --link-stand-alone) link_stand_alone=true ;; + -g | --debug) + ALL_CXXFLAGS="$ALL_CXXFLAGS -g" + ALL_CFLAGS="$ALL_CFLAGS -g" + ;; -W*) pass_on_options="$pass_on_options $1" ;;