Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - Tentaclius

#1
Please tell, how should i compile/link library for use it within newlisp (in Linux)?

Or what is C++ keyword for sharing function?



With GNU Assembler it works this way:

test.s:

.section .text
.global myfun

myfun:
...

than after gcc -c test.s -o test.o; ld test.o -shared

test.lsp:

(import "./test.so" "myfun")
...


all works fine but how to do the same with C++-function?
#2
Please tell, how can I use (is it possible?) newlisp without appearing console window?

Also is it possible to disable console window appearing if use (! ...) function?

Thanks alot...