Ronny Otto

Results 171 issues of Ronny Otto

usage example: ``` ./bmk makeapp -r -w -l linux -g x64 -t console -x -xargs "-v -bla 2 -dir \"c:\dir with space\subdir\"" -o /home/user/tests/test_args /home/user/tests/test_args.bmx ```

`Method DoBuild()` (bmk_make.bmk) takes care of various files. All use "Match()" which is a case-sensitive string lookup. ``` ' bmx file If Match(m.ext, "bmx") Then ... Else If Match(m.ext, "s")...

I got reports by users - and also saw it pretty often in VMs, think it happens more often on Windows and Mac than on Linux: - downloading BlitzMax -...

Wookie at discord asked for ways to autogenerate a kind of crashlog. So you can hand out special builds to users experiencing crashes. Once it crashes you could collect certain...

``` ./bmk resetmods -v audio ``` results in ``` Resetting audio.modloader Deleting /BlitzMaxNG/mod/audio.mod/modloader.mod/.bmx Deleting /BlitzMaxNG/mod/audio.mod/modloader.mod/modloader.release.linux.x64.i Deleting /BlitzMaxNG/mod/audio.mod/modloader.mod/modloader.release.linux.x64.i2 Deleting /BlitzMaxNG/mod/audio.mod/modloader.mod/modloader.debug.linux.x64.a Deleting /BlitzMaxNG/mod/audio.mod/modloader.mod/modloader.debug.linux.x64.i Deleting /BlitzMaxNG/mod/audio.mod/modloader.mod/modloader.release.linux.x64.a Deleting /BlitzMaxNG/mod/audio.mod/modloader.mod/modloader.debug.linux.x64.i2 Resetting audio.soloudaudio Deleting /BlitzMaxNG/mod/audio.mod/soloudaudio.mod/.bmx Deleting...

I was asked to get my game running on an ancient Linux (32bit, GLIBC

When trying to find out about potential parameters of `bmk` you simply excute it. but it also outputs an "error" (via stderr): ``` $ ./bmk Command line error : Not...

test.bmx ```BlitzMax SuperStrict Framework Brl.StandardIO Import "test_framework.bmx" Print "Hello World" ``` test_framework.bmx ```BlitzMax SuperStrict Framework Brl.GLMax2D Type TTest End Type ``` Compiling "test.bmx" leads to ``` Building test [100%] Linking:test.debug...

As discord user wookie22 required "debugging symbols" in his binary (so 3rd party could attach a DRM or something like that) - and there is still the issue of bmk...

For now BMK puts stuff into environment variables. Not that bad. The bad thing is, that BMK prefers the environment variable over the application dir of the executable. So if...