You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
After fixing Issues #615, #616 and #617, and compiling, running the webtool generates the following text in red, on the top of the page:
⚠ Web interface to compiler halted the computation (WcgiAsync). Memory or CPU usage limit exceeded or other asynchronous error.
See screenshot below for how it is seen on the webpage.
This text is caused by the signal handler timeoutSignalHandler in src/newton/cgimain.c. By adding a write statement on line 116, to print the signal code that caused the error, we can see that it is a SIG-11 (SIGSEGV).
To Reproduce
Steps to reproduce the behavior; this assumes that Apache2 is setup, with cgi modules enabled on your machine:
Clone repo using git clone --recursive [email protected]:phillipstanleymarbell/Noisy-lang-compiler.git
Create config.local in root directory, and submodules/libflex. config.local looks like:
Describe the bug
After fixing Issues #615, #616 and #617, and compiling, running the webtool generates the following text in red, on the top of the page:
See screenshot below for how it is seen on the webpage.
This text is caused by the signal handler
timeoutSignalHandler
insrc/newton/cgimain.c
. By adding awrite
statement on line 116, to print the signal code that caused the error, we can see that it is a SIG-11 (SIGSEGV).To Reproduce
Steps to reproduce the behavior; this assumes that Apache2 is setup, with cgi modules enabled on your machine:
git clone --recursive [email protected]:phillipstanleymarbell/Noisy-lang-compiler.git
config.local
in root directory, andsubmodules/libflex
.config.local
looks like:make
insubmodules/libflex
.mkdir icons
insrc/
. This is a temporary fix for Issue-make installcgi in newton expects src/icons #616. See note below.sudo cp NewtonBaseSignals.nt /usr/bin/cgi-bin/
fromsrc/newton
. This is a temporary fix for Issue-make installcgi in newton does not copy NewtonBaseSignals.nt to cgi-bin location #617.make installcgi
insrc/newton
.and
Host OS (please complete the following information):
lsb_release -a
)clang --version
)gcc --version
)Your local changes (please complete the following information):
git diff
(to fix Issue-make cgi in Newton fails due to error in Makefile #615):git remote -v
:Additional Notes
The text was updated successfully, but these errors were encountered: