mirror of
https://gitlab.com/eql/lqml.git
synced 2025-12-06 02:30:38 -08:00
small revisions
This commit is contained in:
parent
8d026cf2f0
commit
76e1ef512e
4 changed files with 5 additions and 5 deletions
|
|
@ -33,7 +33,7 @@
|
||||||
(setf *y* (normalize *y*))
|
(setf *y* (normalize *y*))
|
||||||
(incf *y* dy))))
|
(incf *y* dy))))
|
||||||
(move-ball)
|
(move-ball)
|
||||||
(values))
|
(values)) ; no return value to QML
|
||||||
|
|
||||||
(defun move-ball ()
|
(defun move-ball ()
|
||||||
(if (and (= *x* +w+)
|
(if (and (= *x* +w+)
|
||||||
|
|
|
||||||
|
|
@ -26,7 +26,7 @@ QMAKE_EXTRA_COMPILERS += lisp
|
||||||
win32: PRE_TARGETDEPS = tmp/app.lib
|
win32: PRE_TARGETDEPS = tmp/app.lib
|
||||||
!win32: PRE_TARGETDEPS = tmp/libapp.a
|
!win32: PRE_TARGETDEPS = tmp/libapp.a
|
||||||
|
|
||||||
QT += quick qml widgets
|
QT += quick qml
|
||||||
TEMPLATE = app
|
TEMPLATE = app
|
||||||
CONFIG += c++17 no_keywords release
|
CONFIG += c++17 no_keywords release
|
||||||
DEFINES = DESKTOP_APP INI_LISP
|
DEFINES = DESKTOP_APP INI_LISP
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
|
|
||||||
Important note
|
Important notes
|
||||||
--------------
|
---------------
|
||||||
|
|
||||||
* **Lisp**: the cross-compile cache is
|
* **Lisp**: the cross-compile cache is
|
||||||
`~/.cache/commmon-lisp/ecl-<target-platform>...`. Please remember to purge it
|
`~/.cache/commmon-lisp/ecl-<target-platform>...`. Please remember to purge it
|
||||||
|
|
|
||||||
|
|
@ -30,7 +30,7 @@ definition inside which it occurs, put this line:
|
||||||
```
|
```
|
||||||
#undef HAVE_SYSTEM
|
#undef HAVE_SYSTEM
|
||||||
```
|
```
|
||||||
Edit `src/c/thread/process.d`, search for `pthread_attr_init` (around line 588)
|
Edit `src/c/threads/process.d`, search for `pthread_attr_init` (around line 588)
|
||||||
and add the following below that line:
|
and add the following below that line:
|
||||||
```
|
```
|
||||||
pthread_attr_setstacksize(&pthreadattr, 2 * 236 * 4096); // double default size
|
pthread_attr_setstacksize(&pthreadattr, 2 * 236 * 4096); // double default size
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue