Ronny Otto

Results 602 comments of Ronny Otto

Can it be that in multithreaded processing files are not finished writing but bmk already continued? ``` [ 11%] Processing:base.util.event.bmx [ 27%] Processing:TVTower.bmx [ 27%] Compiling:TVTower.bmx.debug.linux.x64.incbin2.c [ 94%] Compiling:TVTower.bmx.console.debug.linux.x64.c [100%]...

In commit https://github.com/bmx-ng/bmk/commit/2fdd34d76aede6bcb50f19681996f5a7b49f987b @woollybah changed something which made something in the "diff" visible I was not aware of before: ``` ' get version If Platform() = "win32" Then process =...

Continuing this the thought above - and tinkering about solutions: Any thread writing "files" could write to a global "currentlyProcessedFiles"-container. Before starting it adds, and after finishing it removes (with...

I often would like to have a kind of lightweight debug build. Often I would already enjoy knowing "where" something happened. Without details of the variables etc. Once you know...

@scaremonger linked to these on discord: > libc has backtraces: > https://www.gnu.org/software/libc/manual/html_node/Backtraces.html > There is also this library: > https://github.com/ianlancetaylor/libbacktrace Some of us might be OK with having a backtrace...

Little bump ... think it is a lightweight change but nifty cleanup feature

test_args.bmx: ```BlitzMax SuperStrict Framework Brl.StandardIO print "args: " + AppArgs.length For local i:int = 0 until AppArgs.length print i+": " + AppArgs[i] Next ``` ``` $ ./bmk2 makeapp -r -w...

Side note / reminder: once we define the way to interact with SDK/NDK/... MaxIDE might have an additional version information in the "about" box. That way we could easily spot...

Seems we had similar interests the last days :-) I tried to find stuff allowing me to file new bug reports :laughing: The Emscripten part is also waiting to get...

Then maybe... there is `bmk cleanmods` - but it ignores .i and .a files, so it most often just removes the .bmx-folder. While I could use it, it does not...