all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
blob 02c6ebaf5d6672d0d1661f6bdd76e2d959efa312 1312 bytes (raw)
name: admin/notes/tree-sitter/build-module/build.sh 	 # note: path name is non-authoritative(*)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
 
#!/bin/bash

lang=$1

if [ $(uname) == "Darwin" ]
then
    soext="dylib"
else
    soext="so"
fi

echo "Building ${lang}"

# Retrieve sources.
if [ "${lang}" == "typescript" ] || [ "${lang}" == "tsx" ]
then
    git clone "https://github.com/tree-sitter/tree-sitter-typescript.git" \
        --depth 1 --quiet

    lang="typescript/${lang}"
else
    git clone "https://github.com/tree-sitter/tree-sitter-${lang}.git" \
        --depth 1 --quiet
fi

cp "tree-sitter-${lang}/grammar.js" "tree-sitter-${lang}/src"
cd "tree-sitter-${lang}/src"

if [ "${lang}" == "typescript/$1" ]
then
    lang=$1
fi

# Build.
cc -c -I. parser.c
# Compile scanner.c.
if test -f scanner.c
then
    cc -fPIC -c -I. scanner.c
fi
# Compile scanner.cc.
if test -f scanner.cc
then
    c++ -fPIC -I. -c scanner.cc
fi
# Link.
if test -f scanner.cc
then
    c++ -fPIC -shared *.o -o "libtree-sitter-${lang}.${soext}"
else
    cc -fPIC -shared *.o -o "libtree-sitter-${lang}.${soext}"
fi

# Copy out.

if [ "${lang}" == "typescript" ] || [ "${lang}" == "tsx" ]
then
    cp "libtree-sitter-${lang}.${soext}" ..
    cd ..
fi

mkdir -p ../../dist
cp "libtree-sitter-${lang}.${soext}" ../../dist
cd ../../

if [ "${lang}" == "typescript" ] || [ "${lang}" == "tsx" ]
then
    rm -rf "tree-sitter-typescript"
else
    rm -rf "tree-sitter-${lang}"
fi

debug log:

solving 02c6ebaf5d ...
found 02c6ebaf5d in https://yhetil.org/emacs/87mt87zexw.fsf@thornhill.no/
found 102ab310fa in https://git.savannah.gnu.org/cgit/emacs.git
preparing index
index prepared:
100755 102ab310fa04e7aed84522ec591d14e6c8724fd3	admin/notes/tree-sitter/build-module/build.sh

applying [1/1] https://yhetil.org/emacs/87mt87zexw.fsf@thornhill.no/
diff --git a/admin/notes/tree-sitter/build-module/build.sh b/admin/notes/tree-sitter/build-module/build.sh
index 102ab310fa..02c6ebaf5d 100755

Checking patch admin/notes/tree-sitter/build-module/build.sh...
Applied patch admin/notes/tree-sitter/build-module/build.sh cleanly.

index at:
100755 02c6ebaf5d6672d0d1661f6bdd76e2d959efa312	admin/notes/tree-sitter/build-module/build.sh

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.