caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
* [Caml-list] ocamlc -output-obj problems
@ 2005-11-15  3:52 Jonathan Roewen
  2005-11-15  4:23 ` skaller
  0 siblings, 1 reply; 8+ messages in thread
From: Jonathan Roewen @ 2005-11-15  3:52 UTC (permalink / raw)
  To: caml-list

Hi,

I'm having serious problems with ocamlc -output-obj.

It seems if I create a global variable, the interpreter won't run (it
gets into caml_interprete, but I don't know where it goes wrong once
in that function).

Without any globals present, it runs fine.

let table = Hashtbl.create 8;;

Hashtbl.add table 42 "hello world";;

the above code, as simple as it is, causes things to break. Remove it,
and it'll run.

I experience the same problems when linking against Bigarray library,
and having a global value in my Console module.

The only custom parts in my ocaml environment are now just
libcamlrun.a, providing stub functions that return errors/raise
exceptions for functions I don't want/need to support.

My makefile is:

CFLAGS=-DCAML_NAME_SPACE -O -fno-defer-pop -ffreestanding -I
../include -I ../byterun -I ../ocaml/lib/ocaml -nostdlib -nostartfiles
-nostdinc

bytekernel.o: asm.mli keyboard.ml VFS.ml PCI.ml busManager.ml bytekernel.ml
	ocamlc -output-obj -o bytekernel.o asm.mli keyboard.ml VFS.ml PCI.ml
busManager.ml bytekernel.ml

kernel.elf: asm_loader.o irq.o c_loader.o bytekernel.o idt.o
asm_stubs.o fake_math.o console_stubs.o
	ld -s -static -nostdlib -Ttext 0x1000000 -e asm_start -L ../libc -L
../libm -L ../byterun \
		-o kernel.elf asm_loader.o irq.o c_loader.o idt.o asm_stubs.o
bytekernel.o fake_math.o console_stubs.o \
		-lcamlrun `gcc -print-file-name=libgcc.a` -lm -lc -L
../ocaml/lib/ocaml -lbigarray

Someone got half a clue on this?

Kindest Regards,

Jonathan


^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2005-11-15 13:33 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-11-15  3:52 [Caml-list] ocamlc -output-obj problems Jonathan Roewen
2005-11-15  4:23 ` skaller
2005-11-15  5:03   ` Jonathan Roewen
     [not found]     ` <ad8cfe7e0511142131j4c53bae8td7f3af42e6cecf72@mail.gmail.com>
2005-11-15  5:32       ` Jonathan Roewen
2005-11-15  7:13         ` Jonathan Roewen
2005-11-15  8:14           ` Jonathan Roewen
2005-11-15 13:01             ` Alessandro Baretta
2005-11-15 13:33               ` skaller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).