Skip to content

Commit 6aaa8e4

Browse files
committed
Merge commit '47e3ce48905f59dd7cf92e9df6443088c5cb0810' as 'vendor/ocaml'
2 parents 5202486 + 47e3ce4 commit 6aaa8e4

File tree

2,399 files changed

+411726
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,399 files changed

+411726
-0
lines changed

vendor/ocaml/.depend

Lines changed: 1103 additions & 0 deletions
Large diffs are not rendered by default.

vendor/ocaml/.gitignore

Lines changed: 2784 additions & 0 deletions
Large diffs are not rendered by default.

vendor/ocaml/.ignore

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
configure
2+
ocamlc
3+
ocamlc.opt
4+
expunge
5+
ocaml
6+
ocamlopt
7+
ocamlopt.opt
8+
ocamlcomp.sh
9+
ocamlcompopt.sh
10+
package-macosx
11+
ocamlnat

vendor/ocaml/.merlin

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
S ./asmcomp
2+
B ./asmcomp
3+
4+
S ./bytecomp
5+
B ./bytecomp
6+
7+
S ./driver
8+
B ./driver
9+
10+
S ./lex
11+
B ./lex
12+
13+
S ./otherlibs/bigarray
14+
B ./otherlibs/bigarray
15+
16+
S ./otherlibs/dynlink
17+
B ./otherlibs/dynlink
18+
19+
S ./otherlibs/graph
20+
B ./otherlibs/graph
21+
22+
S ./otherlibs/num
23+
B ./otherlibs/num
24+
25+
S ./otherlibs/str
26+
B ./otherlibs/str
27+
28+
S ./otherlibs/systhreads
29+
B ./otherlibs/systhreads
30+
31+
S ./otherlibs/threads
32+
B ./otherlibs/threads
33+
34+
S ./otherlibs/unix
35+
B ./otherlibs/unix
36+
37+
S ./parsing
38+
B ./parsing
39+
40+
S ./stdlib
41+
B ./stdlib
42+
43+
S ./toplevel
44+
B ./toplevel
45+
46+
S ./typing
47+
B ./typing
48+
49+
S ./utils
50+
B ./utils
51+

vendor/ocaml/.ocp-indent

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
match_clause=4
2+
strict_with=auto

vendor/ocaml/.travis-ci.sh

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
case $XARCH in
2+
i386)
3+
./configure
4+
make world.opt
5+
sudo make install
6+
(cd testsuite && make all)
7+
git clone git://github.com/ocaml/camlp4 -b 4.02
8+
(cd camlp4 && ./configure && make && sudo make install)
9+
git clone git://github.com/ocaml/opam
10+
(cd opam && ./configure && make lib-ext && make && sudo make install)
11+
opam init -y -a git://github.com/ocaml/opam-repository
12+
opam install -y utop
13+
;;
14+
*)
15+
echo unknown arch
16+
exit 1
17+
;;
18+
esac

vendor/ocaml/.travis.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
language: c
2+
script: bash -ex .travis-ci.sh
3+
env:
4+
- XARCH=i386

0 commit comments

Comments
 (0)