| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
| |
Since ocaml 4.04, ocaml commands start to point to native-compiled instead
of the byte-code compiled, e.g. ocamlc points to the native-compiled
ocamlc.opt.
This patch adds -no-pie to all ocaml compiled to native code (for ppc64le),
fixing the segfault problem that was happening.
|
| |
|
|
|
|
|
| |
It seems s390x and ppc64le OCaml builds but is severely broken.
Disable these packages until we have a properly working OCaml.
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
signals_osdep.h:300:36: error: request for member 'nip' in something not a structure or union
#define CONTEXT_PC (context->regs->nip)
|
| |
|
| |
|
| |
|
|
|
|
| |
we remove the -fno-pie flag as it made things break on arm
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
cp camlheader camlheader_ur; \
fi
make[2]: Leaving directory '/home/buildozer/aports/community/ocaml/src/ocaml-4.03.0/stdlib'
cd stdlib; cp stdlib.cma std_exit.cmo *.cmi camlheader ../boot
if test -f boot/libcamlrun.a; then :; else \
ln -s ../byterun/libcamlrun.a boot/libcamlrun.a; fi
if test -d stdlib/caml; then :; else \
ln -s ../byterun/caml stdlib/caml; fi
make[1]: Leaving directory '/home/buildozer/aports/community/ocaml/src/ocaml-4.03.0'
make opt.opt
make[1]: Entering directory '/home/buildozer/aports/community/ocaml/src/ocaml-4.03.0'
make checkstack
make[2]: Entering directory '/home/buildozer/aports/community/ocaml/src/ocaml-4.03.0'
Segmentation fault
make[2]: *** [Makefile:721: checkstack] Error 139
make[2]: Leaving directory '/home/buildozer/aports/community/ocaml/src/ocaml-4.03.0'
make[1]: *** [Makefile:175: opt.opt] Error 2
make[1]: Leaving directory '/home/buildozer/aports/community/ocaml/src/ocaml-4.03.0'
make: *** [Makefile:49: world.opt] Error 2
|
| |
|
|
|