Albert Huang
Albert Huang
Finally merged, thanks to @tari for the reminder! Sometime later this week if I can remember to do so, I'll make a new spasm-ng release to pick this change up....
Wouldn't be surprised if this was the case... we've ran a few coverity scans a while back and there were definitely issues that cropped up, some of which may overlap...
Stack trace I'm seeing on my side: ``` (gdb) bt #0 strlen () at ../sysdeps/x86_64/strlen.S:106 #1 0x00007ffff6b0737e in __GI___strdup (s=0x0) at strdup.c:41 #2 0x000000010001e236 in add_arg (name=0x1002536f0 "__R", value=0x100253670 "$0",...
Valgrind isn't happy either (same args/test file): ``` (stretch)albert@dummy:~/cherry-spasm-ng/tests$ valgrind ../spasm -L labels.asm ==21767== Memcheck, a memory error detector ==21767== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et...
Seems to crash when it hits this weird label: ``` (gdb) print define->name $48 = 0x100252630 "__BM_MSK_RGB" (gdb) print define->line_num $49 = 0 (gdb) print define->input_file $50 = 0x100252610 "labels.asm"...
So this is indeed the same bug, but for some exciting reason: - MSVC treats `strdup(NULL)` as a scolding rather than a flogging (see [here](https://gist.github.com/alberthdev/09b3d4c9927f3a9807382d3c4239ed94) for test case), so no...
Not opposed to adding this feature - I think this would mainly add a flag that suppresses warnings and pass outputs, but still allow for errors to be emitted as...
Thanks for the report - indeed, the documentation doesn't really match actual behavior! I went and reworked some of the Makefile system - I've now created a wrapper Makefile in...
Just wanted to ping you - you can now run `make` in the root directory of wxWabbitemu and have options to install/uninstall! Could you try it out and see if...
Can you paste the full make output? Something like `make VERBOSE=1` to see the commands being run.