Code Monkey home page Code Monkey logo

naver / lispe Goto Github PK

View Code? Open in Web Editor NEW
366.0 6.0 8.0 5.8 GB

An implementation of a full fledged Lisp interpreter with Data Structure, Pattern Programming and High level Functions with Lazy Evaluation à la Haskell.

License: Other

Makefile 0.32% C++ 48.09% Python 0.06% Common Lisp 0.14% C 48.79% CMake 0.08% NewLisp 0.01% Shell 0.01% Objective-C 0.36% HTML 0.67% JavaScript 1.48%
lisp language interpreter data-structures pattern-programming function-composition lazy-evaluation haskell-like-high-level-function

lispe's Introduction

LispE: Lisp Elémentaire

Hello,

Welcome to Lisp Elémentaire, a version of Lisp that is both compact and offers a remarkable variety of functional and array language features. The code also comes with a small internal editor from another NAVER's project: TAMGU.

The main goal of LispE is to provide a multi-platform language that can harness the power of functional languages with array languages. The real strength of the Lisp language, of which LispE is a dialect, is its very simple but incredible versatile formalism that helps combining all these programming trends together in one single language.

I based a large part of this work on the following article: The Root of Lisp.

CHECK binaries

We have stashed here precompiled versions for Window and Mac OS (including M1)...

A Lisp with all the bells and whistles

LispE is a true Lisp with all the traditional operators that one can expect from such a language:

(cons 'a '(b c)) ; (a b c)
(cdr '(a b c d e)) ; '(b c d e)
(car '(a b c d e)) ; 'a

(+ 10 20 (* 3 4)) ; 42

(list 'a 'b 'c 'd 'e) ; (a b c d e)

; It also provides some built-in types to handle numbers

(setq l1 (integers 1 2 3))
(setq l2 (integers 4 5 6))

; We can then add these lists together
(+ l1 l2) ; 5 7 9

; or strings

(setq s1 (strings "a" "b" "c"))
(setq s2 (strings "d" "e" "f"))

; We can then add these lists together
(+ s1 s2) ; ("ad" "be" "cf")

; Lists are treated as vectors

(@ s1 1) ; "b"
(@ l1 2) ; 3

; You can loop in a list
(loop i s1 (println i))

You can easily run threads

; Variables in threadspace are protected against
; value concurrencies.
(threadspace
   (seth titi 10)
   (seth toto (rho 2 10 '(0)))
)

; You declare a thread with the keyword: dethread
(dethread tst(x y)
   (threadspace
      (+= titi x)
      (set@ toto 0 y titi)
   )
)

; We launch 10 threads
(loop i (range 1 10 1)
   (tst (+ i 10) i)
)

; We wait for the threads to terminate
(wait)

; threadspace is actually a specific name space
(space thread
   (println titi) ; 145
   ; Note that the order of values is random, due to thread execution
   (println toto) ; ((0 21 46 34 60 75 108 92 126 145) (0 0 0 0 0 0 0 0 0 0))
)

Modern Functional Properties

LispE provides an alternative to parentheses with the composition operator: ".":

(sum (numbers 1 2 3)) can be written (sum . numbers 1 2 3)

LispE provides a powerfull built-in pattern matching mechanism:

; You can call a function in the pattern definition of the function
(defun checking (x y) (eq 0 (% y x)))

; the argument should be an integer, whose value is a multiple of 15
; The argument is stored in x
(defpat fizzbuzz ((integer_ (checking 15 x))) 'fizzbuzz)
(defpat fizzbuzz ((integer_ (checking 3 x))) 'fizz)
(defpat fizzbuzz ((integer_ (checking 5 x))) 'buzz)
(defpat fizzbuzz (x) x)
(mapcar 'fizzbuzz (range 1 100 1))

LispE provides also some interesting properties such as: Data Structures

; First we define some data structures
; nil or _ this is the same value

(data (Point integer_ integer_) (Pixel _ _) (Circle (Point _ _)  _) (Rectangle (Point _ _)  _ nil))

; Then some pattern methods
(defpat Surface ((Circle (Point x y) r)) (* _pi r r))
(defpat Surface ((Rectangle _ h w)) (* h w))
(defpat Surface (true) 'wrong)

(println "Circle:" (Surface (Circle (Point 12 32) 10)))
(println "Rectangle:" (Surface (Rectangle (Point 21 20) 10 20)))

(setq x 10)
(setq y 20)
(setq r 12)

(setq cercle (Circle (Point x y) r))

(println "Circle:" (Surface cercle))
(println "Point:" (Surface (Point 10 20)))
(println "Circle:" (Surface ((atom "Circle") (Point 20 30) 3)))

(data Shape (Triangle _) (Square _))

(defpat dimension ( (Shape x))
   (println 'Dimension x)
)
(dimension (Triangle 10))
(dimension (Square 20))

But also array language capabilities

Thanks to an internal structure implemented with arrays, we also provide some array operators.

For instance, here is how Game of life can be solved in one single instruction:

(defmacro ⊖(l n) (rotate l n true))

(defun lifeinit(x y) (rho x y . random_choice (* x y) (integers 0 1) 17))

(setq r (lifeinit 20 40))
(defun gol8(⍵) ((λ(⍺) (| (& (== ⍺ 4) r) (== ⍺ 3))) (⌿ '+ (⌿  '+ (° (λ (x ⍺) (⊖ ⍺ x)) '(1 0 -1) (↑ (λ (x) (⌽ ⍵ x)) '(1 0 -1)))))))

(println . prettify (gol8 r) 20)

See: Array Operators

Play with it

Finally, LispE can also be used as a Shell: Shell

Come and discover LispE: the Lisp Elémentaire.

We provide a fun little program to discover some of the most interesting aspects of LispE: minizork

Have a look and try it

License

BSD 3-Clause License

LispE
Copyright (c) 2020-present NAVER Corp.

Redistribution and use in source and binary forms, with or without 
modification, are permitted provided that the following conditions 
are met:

1. Redistributions of source code must retain the above copyright 
notice, this list of conditions and the following disclaimer.

2. Redistributions in binary form must reproduce the above copyright 
notice, this list of conditions and the following disclaimer in the 
documentation and/or other materials provided with the distribution.

3. Neither the name of the copyright holder nor the names of its 
contributors may be used to endorse or promote products derived from 
this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE 
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 
POSSIBILITY OF SUCH DAMAGE.

lispe's People

Contributors

clauderoux avatar wlxiong avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

lispe's Issues

Had to install [email protected] to compile

This is not really an issue, but a heads-up - I wasn't able to compile this with the default config.

TL;DR;

I had to install [email protected] and change my Makefile.in to have these:

INCLUDEPYTHON = -I/usr/local/Cellar/[email protected]/3.8.7/Frameworks/Python.framework/Headers
PYTHONLIB = /usr/local/Cellar/[email protected]/3.8.7/Frameworks/Python.framework/Python

OS: macOS 10.14.6 (18G7016) Mojave
Built-in python: 2.7.16

~/repos/lispe ▶ python configure.py 
This is a Mac OS platform

~/repos/lispe ▶ make all libs
mkdir -p bin
mkdir -p objs
g++ -fPIC -std=c++11 -w -c -O3 -DPOSIXREGEX -DUNIX -Iinclude src/lispe.cxx -o objs/lispe.o
g++ -fPIC -std=c++11 -w -c -O3 -DPOSIXREGEX -DUNIX -Iinclude src/jagget.cxx -o objs/jagget.o
g++ -fPIC -std=c++11 -w -c -O3 -DPOSIXREGEX -DUNIX -Iinclude src/eval.cxx -o objs/eval.o
g++ -fPIC -std=c++11 -w -c -O3 -DPOSIXREGEX -DUNIX -Iinclude src/elements.cxx -o objs/elements.o
g++ -fPIC -std=c++11 -w -c -O3 -DPOSIXREGEX -DUNIX -Iinclude src/tools.cxx -o objs/tools.o
g++ -fPIC -std=c++11 -w -c -O3 -DPOSIXREGEX -DUNIX -Iinclude src/systems.cxx -o objs/systems.o
g++ -fPIC -std=c++11 -w -c -O3 -DPOSIXREGEX -DUNIX -Iinclude src/maths.cxx -o objs/maths.o
g++ -fPIC -std=c++11 -w -c -O3 -DPOSIXREGEX -DUNIX -Iinclude src/strings.cxx -o objs/strings.o
g++ -fPIC -std=c++11 -w -c -O3 -DPOSIXREGEX -DUNIX -Iinclude src/randoms.cxx -o objs/randoms.o
g++ -fPIC -std=c++11 -w -c -O3 -DPOSIXREGEX -DUNIX -Iinclude src/rgx.cxx -o objs/rgx.o
g++ -fPIC -std=c++11 -w -c -O3 -DPOSIXREGEX -DUNIX -Iinclude src/sockets.cxx -o objs/sockets.o
g++ -fPIC -std=c++11 -w -c -O3 -DPOSIXREGEX -DUNIX -Iinclude src/composing.cxx -o objs/composing.o
g++ -fPIC -std=c++11 -w -c -O3 -DPOSIXREGEX -DUNIX -Iinclude src/jag.cxx -o objs/jag.o
g++ -fPIC -std=c++11 -w -c -O3 -DPOSIXREGEX -DUNIX -Iinclude src/main.cxx -o objs/main.o
g++ -fPIC -std=c++11 -w -c -O3 -DPOSIXREGEX -DUNIX -Iinclude src/lispeditor.cxx -o objs/lispeditor.o
g++ -o bin/lispe objs/lispe.o objs/jagget.o objs/eval.o objs/elements.o objs/tools.o objs/systems.o objs/maths.o objs/strings.o objs/randoms.o objs/rgx.o objs/sockets.o objs/composing.o objs/jag.o objs/main.o objs/lispeditor.o -ldl -lpthread -L/usr/lib/
ar rcs bin/liblispe.a objs/lispe.o objs/jagget.o objs/eval.o objs/elements.o objs/tools.o objs/systems.o objs/maths.o objs/strings.o objs/randoms.o objs/rgx.o objs/sockets.o objs/composing.o
ranlib bin/liblispe.a
/Applications/Xcode.app/Contents/Developer/usr/bin/make -C curl clean all
rm -f ../objs/curl/*.o
mkdir -p ../objs/curl
g++ -std=c++11 -fPIC -w -c -O3 -DUNIX -I../include -Iinclude -Iinclude/linux src/lispe_curl.cxx -o ../objs/curl/lispe_curl.o
g++ -shared -o ../bin/liblispe_curl.so ../objs/curl/lispe_curl.o -L../bin -llispe -ldl -L/usr/lib/ -lcurl -lpthread
/Applications/Xcode.app/Contents/Developer/usr/bin/make -C xml clean all
rm -f ../objs/xml/*.o
mkdir -p ../objs/xml
g++ -std=c++11 -fPIC -w -c -O3 -DUNIX -I../include -Iinclude src/lispe_xml.cxx -o ../objs/xml/lispe_xml.o
g++ -shared -o ../bin/liblispe_xml.so ../objs/xml/lispe_xml.o -L../bin -lxml2 -llispe -ldl -pthread -L/usr/lib/
/Applications/Xcode.app/Contents/Developer/usr/bin/make -C sqlite clean all
rm -f ../objs/sqlite/*.o
mkdir -p ../objs/sqlite
g++ -std=c++11 -fPIC -w -c -O3 -DUNIX -DSQLITE_ENABLE_COLUMN_METADATA -DSQLITE_THREADSAFE -I../include -Iinclude src/lispe_sqlite.cxx -o ../objs/sqlite/lispe_sqlite.o
g++ -shared -o ../bin/liblispe_sqlite.so ../objs/sqlite/lispe_sqlite.o -L../bin -L/usr/lib/ -lsqlite3 -llispe -ldl -lpthread
/Applications/Xcode.app/Contents/Developer/usr/bin/make -C pythonlispe clean all
rm -f ../objs/python/*.o
mkdir -p ../objs/python
g++ -std=c++11 -fPIC -w -c -O3 -DUNIX -I/Library/Frameworks/Python.framework/Versions/3.8/Headers -I../include -Iinclude src/lispe_python.cxx -o ../objs/python/lispe_python.o
src/lispe_python.cxx:24:10: fatal error: 'Python.h' file not found
#include <Python.h>
         ^~~~~~~~~~
1 error generated.
make[1]: *** [../objs/python/lispe_python.o] Error 1
make: *** [libs] Error 2

Both /Library/Frameworks/Python.framework/Versions/3.8/Headers and /Library/Frameworks/Python.framework/Versions/3.8/Python do not exist.

So I assumed I have to install Python 3.8 - since I'm on macOS and have Homebrew installed I ran brew install [email protected], then edited my Makefile.in to replace these lines:

- INCLUDEPYTHON = -I/Library/Frameworks/Python.framework/Versions/3.8/Headers
- PYTHONLIB = /Library/Frameworks/Python.framework/Versions/3.8/Python
+ INCLUDEPYTHON = -I/usr/local/Cellar/[email protected]/3.8.7/Frameworks/Python.framework/Headers
+ PYTHONLIB = /usr/local/Cellar/[email protected]/3.8.7/Frameworks/Python.framework/Python

then re-ran make:

~/repos/lispe ▶ make all libs
mkdir -p bin
mkdir -p objs
g++ -o bin/lispe objs/lispe.o objs/jagget.o objs/eval.o objs/elements.o objs/tools.o objs/systems.o objs/maths.o objs/strings.o objs/randoms.o objs/rgx.o objs/sockets.o objs/composing.o objs/jag.o objs/main.o objs/lispeditor.o -ldl -lpthread -L/usr/lib/
ar rcs bin/liblispe.a objs/lispe.o objs/jagget.o objs/eval.o objs/elements.o objs/tools.o objs/systems.o objs/maths.o objs/strings.o objs/randoms.o objs/rgx.o objs/sockets.o objs/composing.o
ranlib bin/liblispe.a
/Applications/Xcode.app/Contents/Developer/usr/bin/make -C curl clean all
rm -f ../objs/curl/*.o
mkdir -p ../objs/curl
g++ -std=c++11 -fPIC -w -c -O3 -DUNIX -I../include -Iinclude -Iinclude/linux src/lispe_curl.cxx -o ../objs/curl/lispe_curl.o
g++ -shared -o ../bin/liblispe_curl.so ../objs/curl/lispe_curl.o -L../bin -llispe -ldl -L/usr/lib/ -lcurl -lpthread
/Applications/Xcode.app/Contents/Developer/usr/bin/make -C xml clean all
rm -f ../objs/xml/*.o
mkdir -p ../objs/xml
g++ -std=c++11 -fPIC -w -c -O3 -DUNIX -I../include -Iinclude src/lispe_xml.cxx -o ../objs/xml/lispe_xml.o
g++ -shared -o ../bin/liblispe_xml.so ../objs/xml/lispe_xml.o -L../bin -lxml2 -llispe -ldl -pthread -L/usr/lib/
/Applications/Xcode.app/Contents/Developer/usr/bin/make -C sqlite clean all
rm -f ../objs/sqlite/*.o
mkdir -p ../objs/sqlite
g++ -std=c++11 -fPIC -w -c -O3 -DUNIX -DSQLITE_ENABLE_COLUMN_METADATA -DSQLITE_THREADSAFE -I../include -Iinclude src/lispe_sqlite.cxx -o ../objs/sqlite/lispe_sqlite.o
g++ -shared -o ../bin/liblispe_sqlite.so ../objs/sqlite/lispe_sqlite.o -L../bin -L/usr/lib/ -lsqlite3 -llispe -ldl -lpthread
/Applications/Xcode.app/Contents/Developer/usr/bin/make -C pythonlispe clean all
rm -f ../objs/python/*.o
mkdir -p ../objs/python
g++ -std=c++11 -fPIC -w -c -O3 -DUNIX -I/usr/local/Cellar/[email protected]/3.8.7/Frameworks/Python.framework/Headers -I../include -Iinclude src/lispe_python.cxx -o ../objs/python/lispe_python.o
g++ -shared -o ../bin/pylispe.so ../objs/python/lispe_python.o /usr/local/Cellar/[email protected]/3.8.7/Frameworks/Python.framework/Python -L../bin -llispe -ldl -lpthread -L/usr/lib/
/Applications/Xcode.app/Contents/Developer/usr/bin/make -C transducer clean all
rm -f ../objs/transducer/*.o
mkdir -p ../objs/transducer
g++ -std=c++11 -fPIC -w -c -O3 -DUNIX -I../include -Iinclude src/lispe_transducer.cxx -o ../objs/transducer/lispe_transducer.o
g++ -std=c++11 -fPIC -w -c -O3 -DUNIX -I../include -Iinclude src/automaton.cxx -o ../objs/transducer/automaton.o
g++ -std=c++11 -fPIC -w -c -O3 -DUNIX -I../include -Iinclude src/conversion.cxx -o ../objs/transducer/conversion.o
g++ -shared -o ../bin/liblispe_transducer.so ../objs/transducer/lispe_transducer.o ../objs/transducer/automaton.o ../objs/transducer/conversion.o -L../bin -llispe -ldl -lpthread -L/usr/lib/

And now I have ./bin/lispe to run:

Lisp Elémentaire (1.2021.1.27.14.31/40201)

help: display available commands

<> 1> 

Can't build on Linux

Hi,

Thanks for Lispe
though it doesn't build on linux :
make all libs
mkdir -p bin mkdir -p objs mkdir -p objs/jag mkdir -p objs/testemojis fPIC -std=c++11 -w -c -O3 -DPOSIXREGEX -I/usr/include/ -DUNIX -Iinclude src/lispe.cxx -o objs/lispe.o make: fPIC: N'est pas un dossier make: [Makefile:22: objs/lispe.o] Error 127 (ignorée) fPIC -std=c++11 -w -c -O3 -DPOSIXREGEX -I/usr/include/ -DUNIX -Iinclude src/jagget.cxx -o objs/jagget.o make: fPIC: N'est pas un dossier make: [Makefile:22: objs/jagget.o] Error 127 (ignorée) fPIC -std=c++11 -w -c -O3 -DPOSIXREGEX -I/usr/include/ -DUNIX -Iinclude src/eval.cxx -o objs/eval.o make: fPIC: N'est pas un dossier make: [Makefile:22: objs/eval.o] Error 127 (ignorée) fPIC -std=c++11 -w -c -O3 -DPOSIXREGEX -I/usr/include/ -DUNIX -Iinclude src/elements.cxx -o objs/elements.o make: fPIC: N'est pas un dossier make: [Makefile:22: objs/elements.o] Error 127 (ignorée) fPIC -std=c++11 -w -c -O3 -DPOSIXREGEX -I/usr/include/ -DUNIX -Iinclude src/tools.cxx -o objs/tools.o make: fPIC: N'est pas un dossier make: [Makefile:22: objs/tools.o] Error 127 (ignorée) fPIC -std=c++11 -w -c -O3 -DPOSIXREGEX -I/usr/include/ -DUNIX -Iinclude src/systems.cxx -o objs/systems.o make: fPIC: N'est pas un dossier make: [Makefile:22: objs/systems.o] Error 127 (ignorée) fPIC -std=c++11 -w -c -O3 -DPOSIXREGEX -I/usr/include/ -DUNIX -Iinclude src/maths.cxx -o objs/maths.o make: fPIC: N'est pas un dossier make: [Makefile:22: objs/maths.o] Error 127 (ignorée) fPIC -std=c++11 -w -c -O3 -DPOSIXREGEX -I/usr/include/ -DUNIX -Iinclude src/strings.cxx -o objs/strings.o make: fPIC: N'est pas un dossier make: [Makefile:22: objs/strings.o] Error 127 (ignorée) fPIC -std=c++11 -w -c -O3 -DPOSIXREGEX -I/usr/include/ -DUNIX -Iinclude src/randoms.cxx -o objs/randoms.o make: fPIC: N'est pas un dossier make: [Makefile:22: objs/randoms.o] Error 127 (ignorée) fPIC -std=c++11 -w -c -O3 -DPOSIXREGEX -I/usr/include/ -DUNIX -Iinclude src/rgx.cxx -o objs/rgx.o make: fPIC: N'est pas un dossier make: [Makefile:22: objs/rgx.o] Error 127 (ignorée) fPIC -std=c++11 -w -c -O3 -DPOSIXREGEX -I/usr/include/ -DUNIX -Iinclude src/sockets.cxx -o objs/sockets.o make: fPIC: N'est pas un dossier make: [Makefile:22: objs/sockets.o] Error 127 (ignorée) fPIC -std=c++11 -w -c -O3 -DPOSIXREGEX -I/usr/include/ -DUNIX -Iinclude src/composing.cxx -o objs/composing.o make: fPIC: N'est pas un dossier make: [Makefile:22: objs/composing.o] Error 127 (ignorée) fPIC -std=c++11 -w -c -O3 -DPOSIXREGEX -I/usr/include/ -DUNIX -Iinclude src/ontology.cxx -o objs/ontology.o make: fPIC: N'est pas un dossier make: [Makefile:22: objs/ontology.o] Error 127 (ignorée) fPIC -std=c++11 -w -c -O3 -DPOSIXREGEX -I/usr/include/ -DUNIX -Iinclude src/sets.cxx -o objs/sets.o make: fPIC: N'est pas un dossier make: [Makefile:22: objs/sets.o] Error 127 (ignorée) fPIC -std=c++11 -w -c -O3 -DPOSIXREGEX -I/usr/include/ -DUNIX -Iinclude src/lists.cxx -o objs/lists.o make: fPIC: N'est pas un dossier make: [Makefile:22: objs/lists.o] Error 127 (ignorée) fPIC -std=c++11 -w -c -O3 -DPOSIXREGEX -I/usr/include/ -DUNIX -Iinclude src/dictionaries.cxx -o objs/dictionaries.o make: fPIC: N'est pas un dossier make: [Makefile:22: objs/dictionaries.o] Error 127 (ignorée) fPIC -std=c++11 -w -c -O3 -DPOSIXREGEX -I/usr/include/ -DUNIX -Iinclude src/straight_eval.cxx -o objs/straight_eval.o make: fPIC: N'est pas un dossier make: [Makefile:22: objs/straight_eval.o] Error 127 (ignorée) fPIC -std=c++11 -w -c -O3 -DPOSIXREGEX -I/usr/include/ -DUNIX -Iinclude src/tensors.cxx -o objs/tensors.o make: fPIC: N'est pas un dossier make: [Makefile:22: objs/tensors.o] Error 127 (ignorée) fPIC -std=c++11 -w -c -O3 -DPOSIXREGEX -I/usr/include/ -DUNIX -Iinclude src/jag.cxx -o objs/jag.o make: fPIC: N'est pas un dossier make: [Makefile:22: objs/jag.o] Error 127 (ignorée) fPIC -std=c++11 -w -c -O3 -DPOSIXREGEX -I/usr/include/ -DUNIX -Iinclude src/main.cxx -o objs/main.o make: fPIC: N'est pas un dossier make: [Makefile:22: objs/main.o] Error 127 (ignorée) fPIC -std=c++11 -w -c -O3 -DPOSIXREGEX -I/usr/include/ -DUNIX -Iinclude src/lispeditor.cxx -o objs/lispeditor.o make: fPIC: N'est pas un dossier make: [Makefile:22: objs/lispeditor.o] Error 127 (ignorée) o bin/lispe objs/lispe.o objs/jagget.o objs/eval.o objs/elements.o objs/tools.o objs/systems.o objs/maths.o objs/strings.o objs/randoms.o objs/rgx.o objs/sockets.o objs/composing.o objs/ontology.o objs/sets.o objs/lists.o objs/dictionaries.o objs/straight_eval.o objs/tensors.o objs/jag.o objs/main.o objs/lispeditor.o -ldl -lpthread -L/usr/lib64/ make: o: N'est pas un dossier make: [Makefile:34: lispe] Error 127 (ignorée) ar rcs bin/liblispe.a objs/lispe.o objs/jagget.o objs/eval.o objs/elements.o objs/tools.o objs/systems.o objs/maths.o objs/strings.o objs/randoms.o objs/rgx.o objs/sockets.o objs/composing.o objs/ontology.o objs/sets.o objs/lists.o objs/dictionaries.o objs/straight_eval.o objs/tensors.o ar: objs/lispe.o: Aucun fichier ou dossier de ce type make: *** [Makefile:50: liblispe] Error 1

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.