Ingwie Phoenix
Ingwie Phoenix
@duffyevan Going to try this with the latest commit on #master :)
Great! I am getting a different error now. ``` gcc -ggdb -O2 -pipe -Wall -DSDCC_SUB_VERSION_STR=\"gbdk-2.96a\" -I. -I.. -I../support/Util -c SDCCy.c -o SDCCy.o SDCC.y:1004:12: error: label at end of compound statement:...
Same error. Here is my setup: ``` gcc -ggdb -O2 -pipe -Wall -DSDCC_SUB_VERSION_STR=\"gbdk-2.96a\" -I. -I.. -I../support/Util -c SDCCy.c -o SDCCy.o SDCC.y:1004:12: error: label at end of compound statement: expected statement...
Usually, `.y` files are files fed to BYACC and tools alike - they are grammar descriptions and essentially get turned into scanners, like re2c does for PHP. I'll check this...
I can not read chinese, so I will just make an assumption as to what you asked @maikebing :) GUI apps in WSL2 can be achieved with either: - X11,...
Personally, I think the option should at least be available. I run my own (probably pretty isolated) instance and my Mailgun volume is holding up okay so far, but the...
Came here to see if this was an option since `-o -` failed (on Windows). Hope this eventually becomes an option for single-file HTTP downloads. :)
Also, when not compiling with `DAO_WITH_CONCURRENT`, an error is shown that `__impl_timeGetTime()` can not be resolved. You might want to add `#pragma comment(lib, "winmm.lib")` to fix that :)
Well, I got to this point here now: ``` [email protected] ~/W/G/d/out $ gcc ../kernel/*.c -o dao -DDAO_WITH_NUMARRAY -DDAO_WITH_THREAD -DDAO_WITH_CONCURRENT -DDAO_WITH_RESTART -DTARGET_PLAT=\"macosx\" -DBSD=2 -DMACOSX=3 -DUNIX=1 -DDAO_USE_READLINE -DTRACING_ON -lreadline ../modules/stream/*.c ../modules/auxlib/*.c -I...
Oh... Using `-rdynamic` helped some - didn't fix the issue, unfortunately... ``` gcc \ -I ../kernel/ \ -I ../modules/ \ -I ../modules/stream/ \ -I ../modules/auxlib/ \ -I ../modules/debugger/ \ -I...