kingsumos

Results 9 comments of kingsumos

Check the waitForResponse variable, the default value is 1500. Use a higher value to fix the issue, no code changes in the library is needed. E.g.: bot.waitForResponse = 9000; (configuration...

Try adding the "-fcommon" option in the Makefile CCFLAGS

More info at https://github.com/kingsumos/darkriscv/commit/54e2527be4c14e954da2519baf002ca57832adc0 Please let me know if this fix works for you so I can propose a merge request

Ty @samsoniuk ! @monideepbora I have rebased the repo, check https://github.com/kingsumos/darkriscv/commit/ba5a2874aa0cf9695921f3350bb6c529740b2b69

Could someone kindly advise on the recommended version of the 'torchaudio' package that I should use?

yes, just add the PID:VID here: src/drivers/net/intel.c E.g.: PCI_ROM ( 0x8086, 0x15F2, "i225lm", "I225-LM", 0 ), full list for i22x devices: ``` PCI_ROM ( 0x8086, 0x0D9F, "i225it", "I225-IT", 0 ),...

> C:\temp\node_modules\geoip\build\binding.sln : Solution file error MSB5004: The solution file has two projects named "geoip". This because the libgeoip target name is also "geoip". Then node-gyp is creating a solution...

Despites the project name bug, Microsoft Visual Studio doesn't supports C99 extension (they are still developing this in MVS2013). For instance: Error 1 error C2057: expected constant expression .\GeoIP\src\city6.cc 72...

Although the module is in C++ it its using some features from C99, for instance variable-length arrays: char host_cstr[host_str->Length() + 1]; Visual Studio still doesn't supports variable-length arrays...