Kerneltrick

Results 10 comments of Kerneltrick

20% is not bad. It could be good as an option for making public release builds. For me, compile time trumps runtime most of the time. On the subject of...

I'm able to view function names, addresses, etc from a binary. Symbols can always be exported as text or used with valgrind.

I have my NG mingw in my path but my %mingw% path is set to another version (compatible w/ monkey ). I've not encountered a problem so far. What sort...

Could it be possible for the user(programmer) to have some access over 'bbOnDebugEnterScope' and 'bbOnDebugEnterStm' ? It would be handy to at least walk/unwind that stack to a file or...

Couldn't this be done easier with a 'pre.bmk' file or adding a new @bmk command to 'core.bmk' then using ' @bmk cleanapp in the main source code?

``` SuperStrict Framework Brl.StandardIO ?Not debug '! #define brl_blitz_DebugLog(x) ? Type TTest Field name:String End Type Local t:TTest = Null DebugLog("name: " + t.name) ``` Fixed :-)

``` Function Round:Double(x:Double) Inline Return Floor(x + 0.5) End Function ```

I would clearly call that a syntax error even if the parser accepts it. But for the fact you say that it works classic bmax makes it a bit ambiguous....

You're probably compiling in 'Release' mode. If you compile in 'Debug' mode the array access will get caught. This is normal behavior. Release mode is for performance and so it...