Menu

Netbeans mac osx 10.4 powerpc

2013-02-27
2013-04-03
  • Carl van Denzen

    Carl van Denzen - 2013-02-27

    Hi,

    Is there anyone who tried to develop on an (old) iMac ppc? I use Netbeans 6.5.
    I have come this far:
    - installed java 1.6
    - installed avr-binutils and avr-gcc
    - tweaked the netbeans build.xml
    I do not use haikuc, because it does not add very useful things to javac (imho). Because I need mixed java versions (java 1.5 for netbeans and java 1.6 for haiku), using javac directly in an ant exec task seemed easier than using haikuc.
    btw: I tried netbeans with java 1.6 but it wouldn't work, I could not create any project.

    The probem now is, that avr-gcc needs include files (p.e. stdio.h). What is the best way to provide these?

    Carl.

    Here is part of my project.properties:

    haiku.util.home=/Users/carl/download/haikuVM
    haiku.util.haikuc=${haiku.util.home}/bin/haikuc
    haiku.util.haikulink=${haiku.util.home}/bin/haikulink
    haiku.util.haikuupload=${haiku.util.home}/bin/haikuupload
    haiku.bootclasspath=${haiku.util.home}/lib/haikuvm/haikuRT.jar
    haiku.classpath=${haiku.util.home}/lib/haikuvm/bootstrap.jar:${haiku.util.home}/lib/nxt/classes.jar
    haiku.java.bin=/System/Library/Frameworks/JavaVM.framework/Versions/1.6/Home/bin
    haiku.javac=${haiku.java.bin}/javac
    avrgccbin=/sw/bin

    build.xml:

    <target name="-init-macrodef-javac">
        <macrodef name="javac" uri="http://www.netbeans.org/ns/j2se-project/3">
            <attribute default="${src.dir}" name="srcdir"/>
            <attribute default="${build.classes.dir}" name="destdir"/>
            <attribute default="${javac.classpath}" name="classpath"/>
            <attribute default="${includes}" name="includes"/>
            <attribute default="${excludes}" name="excludes"/>
            <attribute default="${javac.debug}" name="debug"/>
            <attribute default="" name="sourcepath"/>
            <element name="customize" optional="true"/>
    
            <sequential>
                <!-- haikuc voegt alleen ellende toe aan javac ... -->
                <exec dir="" executable="${haiku.javac}">
                    <arg value="-verbose"/>
                    <arg value="-bootclasspath"/>
                    <arg value="${haiku.bootclasspath}"/>
                    <arg value="-classpath"/>
                    <arg value="${haiku.classpath}"/>
                    <!--arg value="xx"/-->
                    <!-- output directory -->
                    <arg value="-d"/>
                    <arg value="${build.classes.dir}"/>
                    <arg value="${convertedsourcefiles}"/>
                </exec>
                <echo>javac en haiku ${convertedsourcefiles}</echo>
                <!-- Link, naar C en dan cross compile met avr-gcc -->
                <property environment="env"/>
                <exec dir="${build.classes.dir}" executable="${haiku.util.haikulink}">
                    <arg value="--verbose"/>
                    <arg value="-bootclasspath"/>
                    <arg value="${haiku.bootclasspath}"/>
                    <arg value="-classpath"/>
                    <arg value="${haiku.classpath}:."/>
                    <!-- mcu -->
                    <arg value="--Config:arduino.Target"/>
                    <arg value="atmega32"/>
                    <!--arg value="-xxx-sysroot=/Users/car/download/HaikuVM/hardware/tools/avr"/ -->
                    <!-- output file -->
                    <arg value="-o"/>
                    <arg value="uitvoerfilebinaryofzo"/>
                    <!-- input file-->
                    <!--arg value="${convertedclassfiles}"/ -->
                    <arg value="${basefilename}.class"/>
                    <!--arg value="xx"/-->
                    <env key="PATH" path="${avrgccbin};${haiku.util.home}/bin;${haiku.java.bin};${haiku.util.home};$haiku.java.bin;${env.PATH}"/>
                    <env key="CPATH" path="/Users/car/download/HaikuVM/hardware/tools/avr/include"/>
                </exec>
            </sequential>
        </macrodef>
    </target>
    

    Output of netbeans clean/build/run:
    convertedsourcefiles=/Users/carl/Development/ArduinoBlinkLed/src/BlinkLed.java
    basefilename=BlinkLed
    init:
    deps-clean:
    Deleting directory /Users/carl/Development/ArduinoBlinkLed/build
    Deleting directory /Users/carl/Development/ArduinoBlinkLed/dist
    clean:
    init:
    deps-jar:
    Created dir: /Users/carl/Development/ArduinoBlinkLed/build/classes
    [search path for source files: [/Users/carl/download/haikuVM/lib/haikuvm/bootstrap.jar, /Users/carl/download/haikuVM/lib/nxt/classes.jar]]
    [search path for class files: [/Users/carl/download/haikuVM/lib/haikuvm/haikuRT.jar, /Users/carl/Library/Java/Extensions/commons-beanutils-1.7.0.jar, /Users/carl/Library/Java/Extensions/commons-collections-3.1.jar, /Users/carl/Library/Java/Extensions/commons-digester-1.7.jar, /Users/carl/Library/Java/Extensions/commons-lang-2.1.jar, /Users/carl/Library/Java/Extensions/commons-logging-1.0.4.jar, /Users/carl/Library/Java/Extensions/junit-3.8.1.jar, /Users/carl/Library/Java/Extensions/log4j-1.2.11.jar, /Users/carl/Library/Java/Extensions/ostermillerutils_1_05_00.jar, /System/Library/Java/Extensions/CoreAudio.jar, /System/Library/Java/Extensions/dns_sd.jar, /System/Library/Java/Extensions/j3daudio.jar, /System/Library/Java/Extensions/j3dcore.jar, /System/Library/Java/Extensions/j3dutils.jar, /System/Library/Java/Extensions/jai_codec.jar, /System/Library/Java/Extensions/jai_core.jar, /System/Library/Java/Extensions/mlibwrapper_jai.jar, /System/Library/Java/Extensions/MRJToolkit.jar, /System/Library/Java/Extensions/QTJava.zip, /System/Library/Java/Extensions/vecmath.jar, /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/ext/apple_provider.jar, /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/ext/dnsns.jar, /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/ext/localedata.jar, /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/ext/sunjce_provider.jar, /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/ext/sunpkcs11.jar, /Users/carl/download/haikuVM/lib/haikuvm/bootstrap.jar, /Users/carl/download/haikuVM/lib/nxt/classes.jar]]
    [parsing started /Users/carl/Development/ArduinoBlinkLed/src/BlinkLed.java]
    [parsing completed 53ms]
    [loading /Users/carl/download/haikuVM/lib/haikuvm/bootstrap.jar(haiku/avr/lib/arduino/WProgram.class)]
    [loading /Users/carl/download/haikuVM/lib/haikuvm/bootstrap.jar(haiku/avr/lib/arduino/ArduinoLib.class)]
    [loading /Users/carl/download/haikuVM/lib/haikuvm/bootstrap.jar(haiku/avr/AVRDefines.class)]
    [loading /Users/carl/download/haikuVM/lib/haikuvm/haikuRT.jar(java/lang/Object.class)]
    [loading /Users/carl/download/haikuVM/lib/haikuvm/bootstrap.jar(haiku/avr/lib/arduino/WProgram$Serial.class)]
    [loading /Users/carl/download/haikuVM/lib/haikuvm/haikuRT.jar(java/lang/Thread.class)]
    [loading /Users/carl/download/haikuVM/lib/nxt/classes.jar(java/lang/Runnable.class)]
    [loading /Users/carl/download/haikuVM/lib/haikuvm/haikuRT.jar(java/lang/String.class)]
    [checking BlinkLed]
    [wrote build/classes/BlinkLed.class]
    [total 985ms]
    javac en haiku /Users/carl/Development/ArduinoBlinkLed/src/BlinkLed.java

    generating c files

    included; haiku.avr.lib.arduino.HaikuMicroKernelEx.main([Ljava/lang/String;)V
    included: haiku.avr.lib.arduino.ArduinoLib.init()V
    included: haiku.avr.AVRDefines.sei()V
    included# haiku.avr.AVRDefines.<clinit>()V
    included: haiku.avr.AVRDefines._BV(I)I
    included: haiku.vm.MicroKernel.clinitHaikuMagic()V
    included: haiku.avr.lib.arduino.HaikuMicroKernelEx.init()V
    included: BlinkLed.main([Ljava/lang/String;)V
    included: haiku.avr.lib.arduino.WProgram.pinMode(BB)V
    included: BlinkLed.<init>()V
    virtual : start()V
    included# BlinkLed.<clinit>()V
    included# java.lang.Thread.start()V
    included: java.lang.Thread.fork()I
    virtual : run()V
    virtual : stop()V
    included# java.lang.Thread.run()V
    included# java.lang.Thread.stop()V
    included: java.lang.Thread.setStateAndSwitch(I)I
    virtual : toString()Ljava/lang/String;
    included# java.lang.Throwable.toString()Ljava/lang/String;
    virtual : println(Ljava/lang/String;)V
    included# java.io.PrintStream.println(Ljava/lang/String;)V
    virtual : print(Ljava/lang/String;)V
    virtual : print(C)V
    included# java.io.PrintStream.print(C)V
    virtual : write(I)V
    included: java.lang.Thread.currentThread()Ljava/lang/Thread;
    included# java.lang.String.toString()Ljava/lang/String;

    rescan because new virtuals where found

    included: haiku.avr.lib.arduino.HaikuMicroKernelEx$1.<init>()V
    included: java.io.OutputStream.<init>()V
    included# haiku.avr.lib.arduino.HaikuMicroKernelEx$1.write(I)V
    included: java.io.PrintStream.<init>(Ljava/io/OutputStream;)V
    included: haiku.avr.lib.arduino.HaikuMicroKernelEx$2.<init>()V
    included: java.io.InputStream.<init>()V
    included: java.lang.Object.<init>()V
    included# java.lang.Object.toString()Ljava/lang/String;
    included: java.lang.System.identityHashCode(Ljava/lang/Object;)I
    included: java.lang.System.getDataAddress(Ljava/lang/Object;)I
    included: java.lang.StringBuilder.<init>(Ljava/lang/String;)V
    included: java.lang.StringBuilder.<init>()V
    virtual : append(Ljava/lang/String;)Ljava/lang/StringBuilder;
    included# java.lang.StringBuilder.toString()Ljava/lang/String;
    included: java.lang.String.<init>([C)V
    included# java.lang.StringBuilder.append(Ljava/lang/String;)Ljava/lang/StringBuilder;
    virtual : append(I)Ljava/lang/StringBuilder;
    included: java.lang.Thread.<init>()V
    included# BlinkLed.run()V
    included: haiku.avr.lib.arduino.WProgram.digitalWrite(BB)V
    included: haiku.avr.lib.arduino.WProgram.delay(J)V
    included: java.lang.Thread.nap(J)V
    included: java.lang.System.currentTimeMillis()J
    included# java.io.PrintStream.print(Ljava/lang/String;)V
    virtual : charAt(I)C
    virtual : length()I
    included# java.lang.String.length()I
    included# java.lang.String.charAt(I)C

    rescan because new virtuals where found

    included# java.lang.StringBuilder.append(I)Ljava/lang/StringBuilder;
    included: java.lang.String.valueOf(I)Ljava/lang/String;

    rescan because new virtuals where found

    included: java.lang.String.valueOf(C)Ljava/lang/String;

    rescan because new virtuals where found

    included: java.lang.String.<init>(C)V

    rescan because new virtuals where found

    ############## closure complete!

    Effective configuration for 'arduino':
    Warning: unsupported value 'atmega32' for property 'Target'!
    Target = atmega32
    MemorySize = 1540
    InitialMainThreadStackSize = 142
    InitialOtherThreadStackSize = 45
    Mode = HAIKU_16_32
    Char = HAIKU_CHAR_8
    InternalExceptionEnable = NullPointerException | NoSuchMethodError | OutOfMemoryError | ClassCastException | VirtualMachineError
    InternalExceptionThrow = 0
    Threads = 1
    Extension = hex
    Clock = 16000000
    APP_NAME = BlinkLed
    VM_BASE = ../../haikuVM
    APP_BASE = /Users/carl/Development/ArduinoBlinkLed/build/classes/.
    CC_OPT = $(HAIKU_CFLAGS) -Wall -Os -fpack-struct -fshort-enums -std=gnu99 -funsigned-char -funsigned-bitfields -ffunction-sections -fdata-sections -mmcu=$(HAIKU_TARGET) -DF_CPU=$(HAIKU_CLOCK)UL -MMD -MP
    Upload = avrdude -pm328p -cstk500v1 -P$(HAIKU_PORT) -b57600 -Uflash:w:$(HAIKU_OUTPUT):a
    MicroKernel = haiku.avr.lib.arduino.HaikuMicroKernelEx
    Config = arduino
    IncrementalGCSlice = 10
    Extends = avr
    GC = HAIKU_StopTheWorldGC
    Output = uitvoerfilebinaryofzo
    CFLAGS =
    Port = \.\com17
    CLIBS =
    HAIKUVM4C = ./haikuVM
    LDFLAGS =

    link > haiku/avr/lib/arduino/HaikuMicroKernelEx from /Users/carl/download/haikuVM/lib/haikuvm/bootstrap.jar
    getProperty('InvokeShort')returned null
    const class_t haiku_avr_lib_arduino_HaikuMicroKernelExclass PROGMEM = {
    & haiku_vm_MicroKernel
    class,
    sizeof(haiku_avr_lib_arduino_HaikuMicroKernelEx),
    0,
    };
    into /Users/carl/Development/ArduinoBlinkLed/build/classes/./haikuJava/haiku/avr/lib/arduino/HaikuMicroKernelEx.c

    link > haiku/vm/MicroKernel from /Users/carl/download/haikuVM/lib/haikuvm/bootstrap.jar
    const class_t haiku_vm_MicroKernelclass PROGMEM = {
    & java_lang_Object
    class,
    sizeof(haiku_vm_MicroKernel),
    0,
    };
    into /Users/carl/Development/ArduinoBlinkLed/build/classes/./haikuJava/haiku/vm/MicroKernel.c

    link > java/lang/Object from /Users/carl/download/haikuVM/lib/haikuvm/haikuRT.jar
    const class_t java_lang_Objectclass PROGMEM = {
    NULL,
    sizeof(java_lang_Object),
    1,
    {
    {MSG_toString
    _Ljava_lang_String, (ByteCode *)(&java_lang_Object_toString_Ljava_lang_String)},
    }
    };
    into /Users/carl/Development/ArduinoBlinkLed/build/classes/./haikuJava/java/lang/Object.c

    link > java/lang/System from /Users/carl/download/haikuVM/lib/haikuvm/haikuRT.jar
    const class_t java_lang_Systemclass PROGMEM = {
    & java_lang_Object
    class,
    sizeof(java_lang_System),
    0,
    };
    into /Users/carl/Development/ArduinoBlinkLed/build/classes/./haikuJava/java/lang/System.c

    link > java/io/PrintStream from /Users/carl/download/haikuVM/lib/haikuvm/haikuRT.jar
    const class_t java_io_PrintStreamclass PROGMEM = {
    & java_lang_Object
    class,
    sizeof(java_io_PrintStream),
    3,
    {
    {MSG_printC_V, (ByteCode *)(&java_io_PrintStream_print_CV)},
    {MSG_print
    Ljava_lang_StringV, (ByteCode *)(&java_io_PrintStream_print_Ljava_lang_String_V)},
    {MSG_println
    Ljava_lang_String__V, (ByteCode *)(&java_io_PrintStream_println_Ljava_lang_String_V)},
    }
    };
    into /Users/carl/Development/ArduinoBlinkLed/build/classes/./haikuJava/java/io/PrintStream.c

    link > java/lang/String from /Users/carl/download/haikuVM/lib/haikuvm/haikuRT.jar
    const class_t java_lang_Stringclass PROGMEM = {
    & java_lang_Object
    class,
    sizeof(java_lang_String),
    3,
    {
    {MSG_charAt__I_C, (ByteCode )(&java_lang_String_charAt_IC)},
    {MSG_lengthI, (ByteCode *)(&java_lang_String_length_I)},
    {MSG_toString
    Ljava_lang_String, (ByteCode
    )(&java_lang_String_toString_Ljava_lang_String)},
    }
    };
    into /Users/carl/Development/ArduinoBlinkLed/build/classes/./haikuJava/java/lang/String.c

    link > java/lang/StringBuilder from /Users/carl/download/haikuVM/lib/haikuvm/haikuRT.jar
    const class_t java_lang_StringBuilderclass PROGMEM = {
    & java_lang_Object
    class,
    sizeof(java_lang_StringBuilder),
    3,
    {
    {MSG_appendI_Ljava_lang_StringBuilder, (ByteCode *)(&java_lang_StringBuilder_append_ILjava_lang_StringBuilder)},
    {MSG_append
    Ljava_lang_StringLjava_lang_StringBuilder, (ByteCode *)(&java_lang_StringBuilder_append_Ljava_lang_String_Ljava_lang_StringBuilder)},
    {MSG_toString
    _Ljava_lang_String, (ByteCode *)(&java_lang_StringBuilder_toString_Ljava_lang_String)},
    }
    };
    into /Users/carl/Development/ArduinoBlinkLed/build/classes/./haikuJava/java/lang/StringBuilder.c

    link > java/io/OutputStream from /Users/carl/download/haikuVM/lib/nxt/classes.jar
    const class_t java_io_OutputStreamclass PROGMEM = {
    & java_lang_Object
    class,
    sizeof(java_io_OutputStream),
    0,
    };
    into /Users/carl/Development/ArduinoBlinkLed/build/classes/./haikuJava/java/io/OutputStream.c

    link > java/io/IOException from /Users/carl/download/haikuVM/lib/nxt/classes.jar
    const class_t java_io_IOExceptionclass PROGMEM = {
    & java_lang_Exception
    class,
    sizeof(java_io_IOException),
    0,
    };
    into /Users/carl/Development/ArduinoBlinkLed/build/classes/./haikuJava/java/io/IOException.c

    link > java/lang/Exception from /Users/carl/download/haikuVM/lib/nxt/classes.jar
    const class_t java_lang_Exceptionclass PROGMEM = {
    & java_lang_Throwable
    class,
    sizeof(java_lang_Exception),
    0,
    };
    into /Users/carl/Development/ArduinoBlinkLed/build/classes/./haikuJava/java/lang/Exception.c

    link > java/lang/Throwable from /Users/carl/download/haikuVM/lib/haikuvm/haikuRT.jar
    const class_t java_lang_Throwableclass PROGMEM = {
    & java_lang_Object
    class,
    sizeof(java_lang_Throwable),
    1,
    {
    {MSG_toString___Ljava_lang_String, (ByteCode *)(&java_lang_Throwable_toString_Ljava_lang_String)},
    }
    };
    into /Users/carl/Development/ArduinoBlinkLed/build/classes/./haikuJava/java/lang/Throwable.c

    PREPROCESSING haikuReleaseLock: java.lang.Thread.haikuReleaseLock(Ljava/lang/Object;)V
    link > java/lang/Thread from /Users/carl/download/haikuVM/lib/haikuvm/haikuRT.jar
    const class_t java_lang_Threadclass PROGMEM = {
    & java_lang_Object
    class,
    sizeof(java_lang_Thread),
    3,
    {
    {MSG_runV, (ByteCode *)(&java_lang_Thread_run_V)},
    {MSG_start
    V, (ByteCode )(&java_lang_Thread_start_V)},
    {MSG_stop___V, (ByteCode
    )(&java_lang_Thread_stop_V)},
    }
    };
    into /Users/carl/Development/ArduinoBlinkLed/build/classes/./haikuJava/java/lang/Thread.c

    link > java/lang/Runnable from /Users/carl/download/haikuVM/lib/nxt/classes.jar
    const class_t java_lang_Runnableclass PROGMEM = {
    & java_lang_Object
    class,
    sizeof(java_lang_Runnable),
    0,
    };
    into /Users/carl/Development/ArduinoBlinkLed/build/classes/./haikuJava/java/lang/Runnable.c

    link > haiku/avr/lib/arduino/HaikuMicroKernelEx$1 from /Users/carl/download/haikuVM/lib/haikuvm/bootstrap.jar
    const class_t haiku_avr_lib_arduino_HaikuMicroKernelEx_1class PROGMEM = {
    & java_io_OutputStream
    class,
    sizeof(haiku_avr_lib_arduino_HaikuMicroKernelEx_1),
    1,
    {
    {MSG_write__I_V, (ByteCode *)(&haiku_avr_lib_arduino_HaikuMicroKernelEx_1_write_IV)},
    }
    };
    into /Users/carl/Development/ArduinoBlinkLed/build/classes/./haikuJava/haiku/avr/lib/arduino/HaikuMicroKernelEx$1.c

    link > haiku/avr/lib/arduino/HaikuMicroKernelEx$2 from /Users/carl/download/haikuVM/lib/haikuvm/bootstrap.jar
    const class_t haiku_avr_lib_arduino_HaikuMicroKernelEx_2class PROGMEM = {
    & java_io_InputStream
    class,
    sizeof(haiku_avr_lib_arduino_HaikuMicroKernelEx_2),
    0,
    };
    into /Users/carl/Development/ArduinoBlinkLed/build/classes/./haikuJava/haiku/avr/lib/arduino/HaikuMicroKernelEx$2.c

    link > java/io/InputStream from /Users/carl/download/haikuVM/lib/haikuvm/haikuRT.jar
    const class_t java_io_InputStreamclass PROGMEM = {
    & java_lang_Object
    class,
    sizeof(java_io_InputStream),
    0,
    };
    into /Users/carl/Development/ArduinoBlinkLed/build/classes/./haikuJava/java/io/InputStream.c

    link > haiku/avr/lib/arduino/ArduinoLib from /Users/carl/download/haikuVM/lib/haikuvm/bootstrap.jar
    const class_t haiku_avr_lib_arduino_ArduinoLibclass PROGMEM = {
    & haiku_avr_AVRDefines
    class,
    sizeof(haiku_avr_lib_arduino_ArduinoLib),
    0,
    };
    into /Users/carl/Development/ArduinoBlinkLed/build/classes/./haikuJava/haiku/avr/lib/arduino/ArduinoLib.c

    link > haiku/avr/AVRDefines from /Users/carl/download/haikuVM/lib/haikuvm/bootstrap.jar
    const class_t haiku_avr_AVRDefinesclass PROGMEM = {
    & java_lang_Object
    class,
    sizeof(haiku_avr_AVRDefines),
    0,
    };
    into /Users/carl/Development/ArduinoBlinkLed/build/classes/./haikuJava/haiku/avr/AVRDefines.c

    link > BlinkLed from ./BlinkLed.class
    const class_t BlinkLedclass PROGMEM = {
    & java_lang_Thread
    class,
    sizeof(BlinkLed),
    1,
    {
    {MSG_run___V, (ByteCode *)(&BlinkLed_run_V)},
    }
    };
    into /Users/carl/Development/ArduinoBlinkLed/build/classes/./haikuJava/BlinkLed.c

    link > haiku/avr/lib/arduino/WProgram from /Users/carl/download/haikuVM/lib/haikuvm/bootstrap.jar
    const class_t haiku_avr_lib_arduino_WProgramclass PROGMEM = {
    & haiku_avr_lib_arduino_ArduinoLib
    class,
    sizeof(haiku_avr_lib_arduino_WProgram),
    0,
    };
    into /Users/carl/Development/ArduinoBlinkLed/build/classes/./haikuJava/haiku/avr/lib/arduino/WProgram.c

    rescan because new virtuals where found

    ############## closure complete!

    rescan because new virtuals where found

    ############## closure complete!

    totalMethods= 49
    totalBClength= 1050
    totalConstLength= 260
    totalClassesLength=216
    /Users/carl/Development/ArduinoBlinkLed/build/classes/./haikuC
    /Users/carl/Development/ArduinoBlinkLed/build/classes/./haikuJava/haiku/avr/lib/arduino
    /Users/carl/Development/ArduinoBlinkLed/build/classes/./haikuJava/haiku/avr
    /Users/carl/Development/ArduinoBlinkLed/build/classes/./haikuJava/haiku/vm
    /Users/carl/Development/ArduinoBlinkLed/build/classes/./haikuJava/java/io
    /Users/carl/Development/ArduinoBlinkLed/build/classes/./haikuJava/java/lang
    /Users/carl/Development/ArduinoBlinkLed/build/classes/./haikuJava
    /Users/carl/Development/ArduinoBlinkLed/build/classes/./haikuVM/native/haiku/vm
    /Users/carl/Development/ArduinoBlinkLed/build/classes/./haikuVM/native/java/lang
    /Users/carl/Development/ArduinoBlinkLed/build/classes/./haikuVM

    generated c files

    cross compiling

    Building file: ../../haikuC/haikuConfig.c
    Invoking: AVR Compiler
    avr-gcc -Wall -Os -fpack-struct -fshort-enums -std=gnu99 -funsigned-char -funsigned-bitfields -ffunction-sections -fdata-sections -mmcu=atmega32 -DF_CPU=16000000UL -MMD -MP -I"/Users/carl/Development/ArduinoBlinkLed/build/classes/." -I"../../haikuVM" -MF"haikuC/haikuConfig.d" -MT"haikuC/haikuConfig.d" -c -o"haikuC/haikuConfig.o" "../../haikuC/haikuConfig.c"
    In file included from /Users/carl/Development/ArduinoBlinkLed/build/classes/haikuC/haikuConfig.h:1,
    from ../../haikuC/haikuConfig.c:1:
    ../../haikuVM/haikuJ2C.h:5:19: warning: stdio.h: No such file or directory
    ../../haikuVM/haikuJ2C.h:144:20: warning: stdint.h: No such file or directory
    ../../haikuVM/haikuJ2C.h:165:28: warning: stdint.h: No such file or directory
    In file included from ../../haikuVM/haikuJ2C.h:173,
    from /Users/carl/Development/ArduinoBlinkLed/build/classes/haikuC/haikuConfig.h:1,
    from ../../haikuC/haikuConfig.c:1:
    ../../haikuVM/ROMspace.h:17:26: warning: avr/pgmspace.h: No such file or directory
    ../../haikuVM/ROMspace.h:18:27: warning: avr/interrupt.h: No such file or directory
    In file included from /Users/carl/Development/ArduinoBlinkLed/build/classes/haikuC/haikuConfig.h:1,
    from ../../haikuC/haikuConfig.c:1:
    ../../haikuVM/haikuJ2C.h:275: error: parse error before "jint"
    ../../haikuVM/haikuJ2C.h:275: warning: type defaults to int' in declaration ofjint'
    ../../haikuVM/haikuJ2C.h:275: warning: data definition has no type or storage class
    ../../haikuVM/haikuJ2C.h:276: error: parse error before "juint"
    ../../haikuVM/haikuJ2C.h:276: warning: type defaults to int' in declaration ofjuint'
    ../../haikuVM/haikuJ2C.h:276: warning: data definition has no type or storage class
    ../../haikuVM/haikuJ2C.h:278: error: parse error before "jfloat"
    ../../haikuVM/haikuJ2C.h:278: warning: type defaults to int' in declaration ofjfloat'
    ../../haikuVM/haikuJ2C.h:278: warning: data definition has no type or storage class
    ../../haikuVM/haikuJ2C.h:283: error: parse error before "jfloatraw"
    ../../haikuVM/haikuJ2C.h:283: warning: type defaults to int' in declaration ofjfloatraw'
    ../../haikuVM/haikuJ2C.h:283: warning: data definition has no type or storage class
    ../../haikuVM/haikuJ2C.h:284: error: parse error before "jdoubleraw"
    ../../haikuVM/haikuJ2C.h:284: warning: type defaults to int' in declaration ofjdoubleraw'
    ../../haikuVM/haikuJ2C.h:284: warning: data definition has no type or storage class
    ../../haikuVM/haikuJ2C.h:286: error: parse error before "jlong"
    ../../haikuVM/haikuJ2C.h:286: warning: type defaults to int' in declaration ofjlong'
    ../../haikuVM/haikuJ2C.h:286: warning: data definition has no type or storage class
    ../../haikuVM/haikuJ2C.h:287: error: parse error before "julong"
    ../../haikuVM/haikuJ2C.h:287: warning: type defaults to int' in declaration ofjulong'
    ../../haikuVM/haikuJ2C.h:287: warning: data definition has no type or storage class
    ../../haikuVM/haikuJ2C.h:288: error: parse error before "jmillis"
    ../../haikuVM/haikuJ2C.h:288: warning: type defaults to int' in declaration ofjmillis'
    ../../haikuVM/haikuJ2C.h:288: warning: data definition has no type or storage class
    ../../haikuVM/haikuJ2C.h:289: error: parse error before "jheapsize"
    ../../haikuVM/haikuJ2C.h:289: warning: type defaults to int' in declaration ofjheapsize'
    ../../haikuVM/haikuJ2C.h:289: warning: data definition has no type or storage class
    ../../haikuVM/haikuJ2C.h:327: error: parse error before "jboolean"
    ../../haikuVM/haikuJ2C.h:327: warning: type defaults to int' in declaration ofjboolean'
    ../../haikuVM/haikuJ2C.h:327: warning: data definition has no type or storage class
    ../../haikuVM/haikuJ2C.h:328: error: parse error before "jbyte"
    ../../haikuVM/haikuJ2C.h:328: warning: type defaults to int' in declaration ofjbyte'
    ../../haikuVM/haikuJ2C.h:328: warning: data definition has no type or storage class
    ../../haikuVM/haikuJ2C.h:329: error: parse error before "jshort"
    ../../haikuVM/haikuJ2C.h:329: warning: type defaults to int' in declaration ofjshort'
    ../../haikuVM/haikuJ2C.h:329: warning: data definition has no type or storage class
    ../../haikuVM/haikuJ2C.h:330: error: parse error before "jchar"
    ../../haikuVM/haikuJ2C.h:330: warning: type defaults to int' in declaration ofjchar'
    ../../haikuVM/haikuJ2C.h:330: warning: data definition has no type or storage class
    ../../haikuVM/haikuJ2C.h:337: error: parse error before "jchar8or16"
    ../../haikuVM/haikuJ2C.h:337: warning: type defaults to int' in declaration ofjchar8or16'
    ../../haikuVM/haikuJ2C.h:337: warning: data definition has no type or storage class
    ../../haikuVM/haikuJ2C.h:341: error: parse error before "OP_bc"
    ../../haikuVM/haikuJ2C.h:341: warning: type defaults to int' in declaration ofOP_bc'
    ../../haikuVM/haikuJ2C.h:341: warning: data definition has no type or storage class
    ../../haikuVM/haikuJ2C.h:342: error: parse error before "OP8"
    ../../haikuVM/haikuJ2C.h:342: warning: type defaults to int' in declaration ofOP
    8'
    ../../haikuVM/haikuJ2C.h:342: warning: data definition has no type or storage class
    ../../haikuVM/haikuJ2C.h:343: error: parse error before "OP_16"
    ../../haikuVM/haikuJ2C.h:343: warning: type defaults to int' in declaration ofOP_16'
    ../../haikuVM/haikuJ2C.h:343: warning: data definition has no type or storage class
    ../../haikuVM/haikuJ2C.h:344: error: parse error before "OP_32"
    ../../haikuVM/haikuJ2C.h:344: warning: type defaults to int' in declaration ofOP_32'
    ../../haikuVM/haikuJ2C.h:344: warning: data definition has no type or storage class
    ../../haikuVM/haikuJ2C.h:351: error: parse error before "uint8_t"
    ../../haikuVM/haikuJ2C.h:351: warning: no semicolon at end of struct or union
    ../../haikuVM/haikuJ2C.h:351: warning: type defaults to int' in declaration ofpurLocals'
    ../../haikuVM/haikuJ2C.h:351: warning: data definition has no type or storage class
    ../../haikuVM/haikuJ2C.h:351: error: parse error before "purParams"
    ../../haikuVM/haikuJ2C.h:351: warning: type defaults to int' in declaration ofpurParams'
    ../../haikuVM/haikuJ2C.h:351: warning: data definition has no type or storage class
    ../../haikuVM/haikuJ2C.h:353: error: parse error before '}' token
    ../../haikuVM/haikuJ2C.h:353: warning: type defaults to int' in declaration ofByteCode'
    ../../haikuVM/haikuJ2C.h:353: warning: data definition has no type or storage class
    ../../haikuVM/haikuJ2C.h:355: error: parse error before '' token
    ../../haikuVM/haikuJ2C.h:355: warning: type defaults to int' in declaration ofprog_void'
    ../../haikuVM/haikuJ2C.h:355: error: prog_void' declared as function returning a function ../../haikuVM/haikuJ2C.h:358: error: parse error before "int8_t" ../../haikuVM/haikuJ2C.h:358: warning: no semicolon at end of struct or union ../../haikuVM/haikuJ2C.h:359: warning: type defaults toint' in declaration of nativeFoo' ../../haikuVM/haikuJ2C.h:359: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:360: warning: type defaults toint' in declaration of NativCode' ../../haikuVM/haikuJ2C.h:360: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:363: error: parse error before "uint8_t" ../../haikuVM/haikuJ2C.h:363: warning: no semicolon at end of struct or union ../../haikuVM/haikuJ2C.h:363: warning: no semicolon at end of struct or union ../../haikuVM/haikuJ2C.h:363: warning: type defaults toint' in declaration of locals' ../../haikuVM/haikuJ2C.h:363: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:363: error: parse error before "params" ../../haikuVM/haikuJ2C.h:363: warning: type defaults toint' in declaration of params' ../../haikuVM/haikuJ2C.h:363: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:364: error: parse error before "uint8_t" ../../haikuVM/haikuJ2C.h:364: warning: no semicolon at end of struct or union ../../haikuVM/haikuJ2C.h:364: warning: type defaults toint' in declaration of nativeFoo' ../../haikuVM/haikuJ2C.h:364: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:365: warning: type defaults toint' in declaration of TaggedCode' ../../haikuVM/haikuJ2C.h:365: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:368: warning: type defaults toint' in declaration of uint8_t' ../../haikuVM/haikuJ2C.h:368: warning: no semicolon at end of struct or union ../../haikuVM/haikuJ2C.h:368: error: parse error before "msgIdx" ../../haikuVM/haikuJ2C.h:369: error: parse error before '*' token ../../haikuVM/haikuJ2C.h:369: warning: type defaults toint' in declaration of meth' ../../haikuVM/haikuJ2C.h:369: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:370: error: parse error before '}' token ../../haikuVM/haikuJ2C.h:370: warning: type defaults toint' in declaration of msg2meth_t' ../../haikuVM/haikuJ2C.h:370: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:374: warning: type defaults toint' in declaration of jint' ../../haikuVM/haikuJ2C.h:374: warning: no semicolon at end of struct or union ../../haikuVM/haikuJ2C.h:374: error: parse error before "mem" ../../haikuVM/haikuJ2C.h:375: error: parse error before "size" ../../haikuVM/haikuJ2C.h:375: warning: type defaults toint' in declaration of size' ../../haikuVM/haikuJ2C.h:375: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:376: error: parse error before "msg2meth" ../../haikuVM/haikuJ2C.h:376: warning: type defaults toint' in declaration of msg2meth' ../../haikuVM/haikuJ2C.h:376: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:377: error: parse error before '}' token ../../haikuVM/haikuJ2C.h:377: warning: type defaults toint' in declaration of class_t' ../../haikuVM/haikuJ2C.h:377: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:379: error: parse error before '*' token ../../haikuVM/haikuJ2C.h:379: warning: type defaults toint' in declaration of jclass' ../../haikuVM/haikuJ2C.h:379: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:388: error: parse error before "jheapsize" ../../haikuVM/haikuJ2C.h:388: warning: no semicolon at end of struct or union ../../haikuVM/haikuJ2C.h:389: warning: type defaults toint' in declaration of clazz' ../../haikuVM/haikuJ2C.h:389: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:390: warning: type defaults toint' in declaration of heap_t' ../../haikuVM/haikuJ2C.h:390: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:392: error: parse error before '*' token ../../haikuVM/haikuJ2C.h:392: warning: type defaults toint' in declaration of jheap' ../../haikuVM/haikuJ2C.h:392: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:393: error: parse error before '*' token ../../haikuVM/haikuJ2C.h:393: warning: type defaults toint' in declaration of jobject' ../../haikuVM/haikuJ2C.h:393: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:396: error: parse error before "jheapsize" ../../haikuVM/haikuJ2C.h:396: warning: no semicolon at end of struct or union ../../haikuVM/haikuJ2C.h:396: warning: type defaults toint' in declaration of clazz' ../../haikuVM/haikuJ2C.h:396: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:397: error: parse error before "length" ../../haikuVM/haikuJ2C.h:397: warning: type defaults toint' in declaration of length' ../../haikuVM/haikuJ2C.h:397: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:406: error: parse error before '}' token ../../haikuVM/haikuJ2C.h:406: warning: type defaults toint' in declaration of array_t' ../../haikuVM/haikuJ2C.h:406: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:411: error: parse error before "jheapsize" ../../haikuVM/haikuJ2C.h:411: warning: no semicolon at end of struct or union ../../haikuVM/haikuJ2C.h:411: warning: type defaults toint' in declaration of clazz' ../../haikuVM/haikuJ2C.h:411: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:411: error: parse error before "length" ../../haikuVM/haikuJ2C.h:411: warning: type defaults toint' in declaration of length' ../../haikuVM/haikuJ2C.h:411: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:411: error: parse error before "array" ../../haikuVM/haikuJ2C.h:411: warning: type defaults toint' in declaration of array' ../../haikuVM/haikuJ2C.h:411: error: conflicting types forarray'
    ../../haikuVM/haikuJ2C.h:405: error: previous declaration of array' ../../haikuVM/haikuJ2C.h:411: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:411: error: parse error before '}' token ../../haikuVM/haikuJ2C.h:411: warning: type defaults toint' in declaration of jchar8or16Array' ../../haikuVM/haikuJ2C.h:411: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:412: error: parse error before "jheapsize" ../../haikuVM/haikuJ2C.h:412: warning: no semicolon at end of struct or union ../../haikuVM/haikuJ2C.h:412: warning: type defaults toint' in declaration of clazz' ../../haikuVM/haikuJ2C.h:412: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:412: error: parse error before "length" ../../haikuVM/haikuJ2C.h:412: warning: type defaults toint' in declaration of length' ../../haikuVM/haikuJ2C.h:412: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:412: error: parse error before "array" ../../haikuVM/haikuJ2C.h:412: warning: type defaults toint' in declaration of array' ../../haikuVM/haikuJ2C.h:412: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:412: error: parse error before '}' token ../../haikuVM/haikuJ2C.h:412: warning: type defaults toint' in declaration of jbyteArray' ../../haikuVM/haikuJ2C.h:412: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:413: error: parse error before "jheapsize" ../../haikuVM/haikuJ2C.h:413: warning: no semicolon at end of struct or union ../../haikuVM/haikuJ2C.h:413: warning: type defaults toint' in declaration of clazz' ../../haikuVM/haikuJ2C.h:413: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:413: error: parse error before "length" ../../haikuVM/haikuJ2C.h:413: warning: type defaults toint' in declaration of length' ../../haikuVM/haikuJ2C.h:413: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:413: error: parse error before "array" ../../haikuVM/haikuJ2C.h:413: warning: type defaults toint' in declaration of array' ../../haikuVM/haikuJ2C.h:413: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:413: error: parse error before '}' token ../../haikuVM/haikuJ2C.h:413: warning: type defaults toint' in declaration of jintArray' ../../haikuVM/haikuJ2C.h:413: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:414: error: parse error before "jheapsize" ../../haikuVM/haikuJ2C.h:414: warning: no semicolon at end of struct or union ../../haikuVM/haikuJ2C.h:414: warning: type defaults toint' in declaration of clazz' ../../haikuVM/haikuJ2C.h:414: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:414: error: parse error before "length" ../../haikuVM/haikuJ2C.h:414: warning: type defaults toint' in declaration of length' ../../haikuVM/haikuJ2C.h:414: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:414: error: parse error before "array" ../../haikuVM/haikuJ2C.h:414: warning: type defaults toint' in declaration of array' ../../haikuVM/haikuJ2C.h:414: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:414: error: parse error before '}' token ../../haikuVM/haikuJ2C.h:414: warning: type defaults toint' in declaration of jobjectArray' ../../haikuVM/haikuJ2C.h:414: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:415: error: parse error before "jheapsize" ../../haikuVM/haikuJ2C.h:415: warning: no semicolon at end of struct or union ../../haikuVM/haikuJ2C.h:415: warning: type defaults toint' in declaration of clazz' ../../haikuVM/haikuJ2C.h:415: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:415: error: parse error before "length" ../../haikuVM/haikuJ2C.h:415: warning: type defaults toint' in declaration of length' ../../haikuVM/haikuJ2C.h:415: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:415: error: parse error before "array" ../../haikuVM/haikuJ2C.h:415: warning: type defaults toint' in declaration of array' ../../haikuVM/haikuJ2C.h:415: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:415: error: parse error before '}' token ../../haikuVM/haikuJ2C.h:415: warning: type defaults toint' in declaration of jlongArray' ../../haikuVM/haikuJ2C.h:415: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:416: error: parse error before "jheapsize" ../../haikuVM/haikuJ2C.h:416: warning: no semicolon at end of struct or union ../../haikuVM/haikuJ2C.h:416: warning: type defaults toint' in declaration of clazz' ../../haikuVM/haikuJ2C.h:416: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:416: error: parse error before "length" ../../haikuVM/haikuJ2C.h:416: warning: type defaults toint' in declaration of length' ../../haikuVM/haikuJ2C.h:416: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:416: error: parse error before "array" ../../haikuVM/haikuJ2C.h:416: warning: type defaults toint' in declaration of array' ../../haikuVM/haikuJ2C.h:416: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:416: error: parse error before '}' token ../../haikuVM/haikuJ2C.h:416: warning: type defaults toint' in declaration of jshortArray' ../../haikuVM/haikuJ2C.h:416: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:417: error: parse error before "jheapsize" ../../haikuVM/haikuJ2C.h:417: warning: no semicolon at end of struct or union ../../haikuVM/haikuJ2C.h:417: warning: type defaults toint' in declaration of clazz' ../../haikuVM/haikuJ2C.h:417: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:417: error: parse error before "length" ../../haikuVM/haikuJ2C.h:417: warning: type defaults toint' in declaration of length' ../../haikuVM/haikuJ2C.h:417: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:417: error: parse error before "array" ../../haikuVM/haikuJ2C.h:417: warning: type defaults toint' in declaration of array' ../../haikuVM/haikuJ2C.h:417: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:417: error: parse error before '}' token ../../haikuVM/haikuJ2C.h:417: warning: type defaults toint' in declaration of jfloatArray' ../../haikuVM/haikuJ2C.h:417: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:418: error: parse error before "jheapsize" ../../haikuVM/haikuJ2C.h:418: warning: no semicolon at end of struct or union ../../haikuVM/haikuJ2C.h:418: warning: type defaults toint' in declaration of clazz' ../../haikuVM/haikuJ2C.h:418: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:418: error: parse error before "length" ../../haikuVM/haikuJ2C.h:418: warning: type defaults toint' in declaration of length' ../../haikuVM/haikuJ2C.h:418: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:418: error: conflicting types forarray'
    ../../haikuVM/haikuJ2C.h:417: error: previous declaration of array' ../../haikuVM/haikuJ2C.h:418: error: parse error before '}' token ../../haikuVM/haikuJ2C.h:418: warning: type defaults toint' in declaration of jdoubleArray' ../../haikuVM/haikuJ2C.h:418: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:421: error: parse error before "jheapsize" ../../haikuVM/haikuJ2C.h:421: warning: no semicolon at end of struct or union ../../haikuVM/haikuJ2C.h:421: warning: type defaults toint' in declaration of clazz' ../../haikuVM/haikuJ2C.h:421: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:422: error: parse error before "chars" ../../haikuVM/haikuJ2C.h:422: warning: type defaults toint' in declaration of chars' ../../haikuVM/haikuJ2C.h:422: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:423: warning: type defaults toint' in declaration of String' ../../haikuVM/haikuJ2C.h:423: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:426: error: parse error before "jheapsize" ../../haikuVM/haikuJ2C.h:426: warning: no semicolon at end of struct or union ../../haikuVM/haikuJ2C.h:426: warning: type defaults toint' in declaration of clazz' ../../haikuVM/haikuJ2C.h:426: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:427: error: parse error before "chars" ../../haikuVM/haikuJ2C.h:427: warning: type defaults toint' in declaration of chars' ../../haikuVM/haikuJ2C.h:427: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:429: error: parse error before "aallocsize" ../../haikuVM/haikuJ2C.h:429: warning: type defaults toint' in declaration of aallocsize' ../../haikuVM/haikuJ2C.h:429: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:430: error: parse error before "aclazz" ../../haikuVM/haikuJ2C.h:430: warning: type defaults toint' in declaration of aclazz' ../../haikuVM/haikuJ2C.h:430: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:431: error: parse error before "length" ../../haikuVM/haikuJ2C.h:431: warning: type defaults toint' in declaration of length' ../../haikuVM/haikuJ2C.h:431: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:432: error: parse error before "array" ../../haikuVM/haikuJ2C.h:432: warning: type defaults toint' in declaration of array' ../../haikuVM/haikuJ2C.h:432: error: conflicting types forarray'
    ../../haikuVM/haikuJ2C.h:418: error: previous declaration of array' ../../haikuVM/haikuJ2C.h:432: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:433: error: parse error before '}' token ../../haikuVM/haikuJ2C.h:433: warning: type defaults toint' in declaration of ldc_String' ../../haikuVM/haikuJ2C.h:433: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:436: error: parse error before '*' token ../../haikuVM/haikuJ2C.h:436: warning: type defaults toint' in declaration of jstring' ../../haikuVM/haikuJ2C.h:436: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:441: error: parse error before "jobject" ../../haikuVM/haikuJ2C.h:441: warning: no semicolon at end of struct or union ../../haikuVM/haikuJ2C.h:442: warning: type defaults toint' in declaration of ay' ../../haikuVM/haikuJ2C.h:442: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:443: error: parse error before '*' token ../../haikuVM/haikuJ2C.h:443: warning: type defaults toint' in declaration of str' ../../haikuVM/haikuJ2C.h:443: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:444: error: parse error before "f" ../../haikuVM/haikuJ2C.h:444: warning: type defaults toint' in declaration of f' ../../haikuVM/haikuJ2C.h:444: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:445: error: parse error before "fl" ../../haikuVM/haikuJ2C.h:445: warning: type defaults toint' in declaration of fl' ../../haikuVM/haikuJ2C.h:445: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:446: error: parse error before "i" ../../haikuVM/haikuJ2C.h:446: warning: type defaults toint' in declaration of i' ../../haikuVM/haikuJ2C.h:446: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:447: error: parse error before "z" ../../haikuVM/haikuJ2C.h:447: warning: type defaults toint' in declaration of z' ../../haikuVM/haikuJ2C.h:447: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:448: error: parse error before "b" ../../haikuVM/haikuJ2C.h:448: warning: type defaults toint' in declaration of b' ../../haikuVM/haikuJ2C.h:448: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:449: error: parse error before "c" ../../haikuVM/haikuJ2C.h:449: warning: type defaults toint' in declaration of c' ../../haikuVM/haikuJ2C.h:449: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:450: error: parse error before "s" ../../haikuVM/haikuJ2C.h:450: warning: type defaults toint' in declaration of s' ../../haikuVM/haikuJ2C.h:450: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:451: warning: type defaults toint' in declaration of stack_t' ../../haikuVM/haikuJ2C.h:451: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:453: error: parse error before '*' token ../../haikuVM/haikuJ2C.h:453: warning: type defaults toint' in declaration of jstack' ../../haikuVM/haikuJ2C.h:453: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:456: error: parse error before "jheapsize" ../../haikuVM/haikuJ2C.h:456: warning: no semicolon at end of struct or union ../../haikuVM/haikuJ2C.h:456: warning: type defaults toint' in declaration of clazz' ../../haikuVM/haikuJ2C.h:456: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:457: error: parse error before "length" ../../haikuVM/haikuJ2C.h:457: warning: type defaults toint' in declaration of length' ../../haikuVM/haikuJ2C.h:457: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:458: error: parse error before "stack" ../../haikuVM/haikuJ2C.h:458: warning: type defaults toint' in declaration of stack' ../../haikuVM/haikuJ2C.h:458: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:459: error: parse error before '}' token ../../haikuVM/haikuJ2C.h:459: warning: type defaults toint' in declaration of stackFrame_t' ../../haikuVM/haikuJ2C.h:459: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:462: error: parse error before "jheapsize" ../../haikuVM/haikuJ2C.h:462: warning: no semicolon at end of struct or union ../../haikuVM/haikuJ2C.h:462: warning: type defaults toint' in declaration of clazz' ../../haikuVM/haikuJ2C.h:462: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:463: error: parse error before "length" ../../haikuVM/haikuJ2C.h:463: warning: type defaults toint' in declaration of length' ../../haikuVM/haikuJ2C.h:463: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:464: error: parse error before "stack" ../../haikuVM/haikuJ2C.h:464: warning: type defaults toint' in declaration of stack' ../../haikuVM/haikuJ2C.h:464: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:465: error: parse error before '}' token ../../haikuVM/haikuJ2C.h:465: warning: type defaults toint' in declaration of stackFrame4Debug_t' ../../haikuVM/haikuJ2C.h:465: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:470: error: parse error before "stack_t" ../../haikuVM/haikuJ2C.h:470: warning: no semicolon at end of struct or union ../../haikuVM/haikuJ2C.h:470: warning: no semicolon at end of struct or union ../../haikuVM/haikuJ2C.h:470: warning: type defaults toint' in declaration of s1' ../../haikuVM/haikuJ2C.h:470: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:472: error: parse error before "dl" ../../haikuVM/haikuJ2C.h:472: warning: type defaults toint' in declaration of dl' ../../haikuVM/haikuJ2C.h:472: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:473: error: parse error before "j" ../../haikuVM/haikuJ2C.h:473: warning: type defaults toint' in declaration of j' ../../haikuVM/haikuJ2C.h:473: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:474: warning: type defaults toint' in declaration of top_t' ../../haikuVM/haikuJ2C.h:474: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:476: error: parse error before "jfloatraw" ../../haikuVM/haikuJ2C.h:476: warning: no semicolon at end of struct or union ../../haikuVM/haikuJ2C.h:476: warning: type defaults toint' in declaration of ldc_jfloat_t' ../../haikuVM/haikuJ2C.h:476: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:477: error: parse error before "jint" ../../haikuVM/haikuJ2C.h:477: warning: no semicolon at end of struct or union ../../haikuVM/haikuJ2C.h:477: warning: type defaults toint' in declaration of ldc_jint_t' ../../haikuVM/haikuJ2C.h:477: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:478: error: parse error before "jlong" ../../haikuVM/haikuJ2C.h:478: warning: no semicolon at end of struct or union ../../haikuVM/haikuJ2C.h:478: warning: type defaults toint' in declaration of ldc_jlong_t' ../../haikuVM/haikuJ2C.h:478: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:479: error: parse error before "jdoubleraw" ../../haikuVM/haikuJ2C.h:479: warning: no semicolon at end of struct or union ../../haikuVM/haikuJ2C.h:479: warning: type defaults toint' in declaration of ldc_jdouble_t' ../../haikuVM/haikuJ2C.h:479: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:480: error: parse error before "jint" ../../haikuVM/haikuJ2C.h:480: warning: no semicolon at end of struct or union ../../haikuVM/haikuJ2C.h:480: warning: type defaults toint' in declaration of array' ../../haikuVM/haikuJ2C.h:480: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:480: error: parse error before '}' token ../../haikuVM/haikuJ2C.h:480: warning: type defaults toint' in declaration of ldc_jstring_t' ../../haikuVM/haikuJ2C.h:480: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:482: warning: type defaults toint' in declaration of OP_bc' ../../haikuVM/haikuJ2C.h:482: warning: no semicolon at end of struct or union ../../haikuVM/haikuJ2C.h:482: error: parse error before '*' token ../../haikuVM/haikuJ2C.h:482: error: parse error before '*' token ../../haikuVM/haikuJ2C.h:482: warning: type defaults toint' in declaration of to' ../../haikuVM/haikuJ2C.h:482: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:482: error: parse error before '*' token ../../haikuVM/haikuJ2C.h:482: warning: type defaults toint' in declaration of handler' ../../haikuVM/haikuJ2C.h:482: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:482: error: parse error before "eclazz" ../../haikuVM/haikuJ2C.h:482: warning: type defaults toint' in declaration of eclazz' ../../haikuVM/haikuJ2C.h:482: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:482: warning: type defaults toint' in declaration of Exception_t' ../../haikuVM/haikuJ2C.h:482: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:488: error: parse error before "dataSp" ../../haikuVM/haikuJ2C.h:488: warning: type defaults toint' in declaration of dataSp' ../../haikuVM/haikuJ2C.h:488: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:489: error: parse error before "lsp" ../../haikuVM/haikuJ2C.h:489: warning: type defaults toint' in declaration of lsp' ../../haikuVM/haikuJ2C.h:489: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:491: error: parse error before "bc" ../../haikuVM/haikuJ2C.h:491: warning: type defaults toint' in declaration of bc' ../../haikuVM/haikuJ2C.h:491: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:493: error: parse error before "top" ../../haikuVM/haikuJ2C.h:493: warning: type defaults toint' in declaration of top' ../../haikuVM/haikuJ2C.h:493: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:495: error: parse error before '*' token ../../haikuVM/haikuJ2C.h:495: warning: type defaults toint' in declaration of stack' ../../haikuVM/haikuJ2C.h:495: error: conflicting types forstack'
    ../../haikuVM/haikuJ2C.h:464: error: previous declaration of stack' ../../haikuVM/haikuJ2C.h:495: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:496: error: parse error before '*' token ../../haikuVM/haikuJ2C.h:496: warning: type defaults toint' in declaration of newStack' ../../haikuVM/haikuJ2C.h:496: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:498: error: parse error before '*' token ../../haikuVM/haikuJ2C.h:498: warning: type defaults toint' in declaration of getLocal' ../../haikuVM/haikuJ2C.h:498: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:499: error: parse error before "pop" ../../haikuVM/haikuJ2C.h:499: warning: type defaults toint' in declaration of pop' ../../haikuVM/haikuJ2C.h:499: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:500: error: parse error before '*' token ../../haikuVM/haikuJ2C.h:500: warning: type defaults toint' in declaration of popp2' ../../haikuVM/haikuJ2C.h:500: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:501: error: parse error before "push" ../../haikuVM/haikuJ2C.h:501: warning: type defaults toint' in declaration of push' ../../haikuVM/haikuJ2C.h:501: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:507: error: parse error before "get" ../../haikuVM/haikuJ2C.h:507: warning: type defaults toint' in declaration of get' ../../haikuVM/haikuJ2C.h:507: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:509: error: parse error before "jstack" ../../haikuVM/haikuJ2C.h:520: error: parse error before "t" ../../haikuVM/haikuJ2C.h:520: warning: type defaults toint' in declaration of t' ../../haikuVM/haikuJ2C.h:520: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:522: error: parse error before "pop" ../../haikuVM/haikuJ2C.h:522: warning: type defaults toint' in declaration of pop' ../../haikuVM/haikuJ2C.h:522: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:523: error: parse error before "bpop" ../../haikuVM/haikuJ2C.h:523: warning: type defaults toint' in declaration of bpop' ../../haikuVM/haikuJ2C.h:523: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:524: error: parse error before "apop" ../../haikuVM/haikuJ2C.h:524: warning: type defaults toint' in declaration of apop' ../../haikuVM/haikuJ2C.h:524: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:525: error: parse error before "ipop" ../../haikuVM/haikuJ2C.h:525: warning: type defaults toint' in declaration of ipop' ../../haikuVM/haikuJ2C.h:525: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:526: error: parse error before "fpop" ../../haikuVM/haikuJ2C.h:526: warning: type defaults toint' in declaration of fpop' ../../haikuVM/haikuJ2C.h:526: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:534: error: parse error before "v" ../../haikuVM/haikuJ2C.h:536: error: parse error before '*' token ../../haikuVM/haikuJ2C.h:536: error: parse error before "length" ../../haikuVM/haikuJ2C.h:536: warning: type defaults toint' in declaration of newarray' ../../haikuVM/haikuJ2C.h:536: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:537: error: parse error before '*' token ../../haikuVM/haikuJ2C.h:538: error: parse error before "obj" ../../haikuVM/haikuJ2C.h:539: error: parse error before "newInstance0" ../../haikuVM/haikuJ2C.h:539: error: parse error before "clazz" ../../haikuVM/haikuJ2C.h:539: warning: type defaults toint' in declaration of newInstance0' ../../haikuVM/haikuJ2C.h:539: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:540: error: parse error before "newInstance" ../../haikuVM/haikuJ2C.h:540: error: parse error before "clazz" ../../haikuVM/haikuJ2C.h:540: warning: type defaults toint' in declaration of newInstance' ../../haikuVM/haikuJ2C.h:540: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:547: error: parse error before "exception" ../../haikuVM/haikuJ2C.h:549: error: parse error before "java_lang_System_gc_V" ../../haikuVM/haikuJ2C.h:549: warning: type defaults toint' in declaration of java_lang_System_gc_V' ../../haikuVM/haikuJ2C.h:549: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:553: error: parse error before "throwable" ../../haikuVM/haikuJ2C.h:554: error: parse error before "instanceOf" ../../haikuVM/haikuJ2C.h:554: error: parse error before "obj" ../../haikuVM/haikuJ2C.h:554: warning: type defaults toint' in declaration of instanceOf' ../../haikuVM/haikuJ2C.h:554: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:559: error: parse error before "GETCODEWORD2" ../../haikuVM/haikuJ2C.h:559: warning: type defaults toint' in declaration of GETCODEWORD2' ../../haikuVM/haikuJ2C.h:559: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:560: error: parse error before "GETCODEDWORD2" ../../haikuVM/haikuJ2C.h:560: warning: type defaults toint' in declaration of GETCODEDWORD2' ../../haikuVM/haikuJ2C.h:560: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:598: error: parse error before "java_lang_String__class" ../../haikuVM/haikuJ2C.h:598: warning: type defaults toint' in declaration of java_lang_String__class' ../../haikuVM/haikuJ2C.h:598: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:599: error: parse error before "java_lang_StringBuilder__class" ../../haikuVM/haikuJ2C.h:599: warning: type defaults toint' in declaration of java_lang_StringBuilder__class' ../../haikuVM/haikuJ2C.h:599: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:601: error: parse error before "bytecodeFoo" ../../haikuVM/haikuJ2C.h:601: warning: type defaults toint' in declaration of bytecodeFoo' ../../haikuVM/haikuJ2C.h:601: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:604: error: parse error before "exceptionTable" ../../haikuVM/haikuJ2C.h:604: warning: type defaults toint' in declaration of exceptionTable' ../../haikuVM/haikuJ2C.h:604: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:605: error: parse error before '*' token ../../haikuVM/haikuJ2C.h:605: warning: type defaults toint' in declaration of functionTable' ../../haikuVM/haikuJ2C.h:605: warning: data definition has no type or storage class ../../haikuVM/haikuJ2C.h:607: error: parse error before "i" ../../haikuVM/haikuJ2C.h:608: error: parse error before "floatToInt16" ../../haikuVM/haikuJ2C.h:608: warning: type defaults toint' in declaration of floatToInt16' ../../haikuVM/haikuJ2C.h:608: warning: data definition has no type or storage class In file included from ../../haikuVM/haikuJ2C.h:663, from /Users/carl/Development/ArduinoBlinkLed/build/classes/haikuC/haikuConfig.h:1, from ../../haikuC/haikuConfig.c:1: ../../haikuVM/native/java/lang/Thread.h:12: error: parse error before "jheapsize" ../../haikuVM/native/java/lang/Thread.h:12: warning: no semicolon at end of struct or union ../../haikuVM/native/java/lang/Thread.h:13: warning: type defaults toint' in declaration of clazz' ../../haikuVM/native/java/lang/Thread.h:13: warning: data definition has no type or storage class ../../haikuVM/native/java/lang/Thread.h:16: error: parse error before "jobject" ../../haikuVM/native/java/lang/Thread.h:16: warning: no semicolon at end of struct or union ../../haikuVM/native/java/lang/Thread.h:17: warning: type defaults toint' in declaration of user' ../../haikuVM/native/java/lang/Thread.h:17: warning: data definition has no type or storage class ../../haikuVM/native/java/lang/Thread.h:18: error: parse error before '}' token ../../haikuVM/native/java/lang/Thread.h:18: warning: type defaults toint' in declaration of ListLA' ../../haikuVM/native/java/lang/Thread.h:18: warning: data definition has no type or storage class ../../haikuVM/native/java/lang/Thread.h:21: error: parse error before "jheapsize" ../../haikuVM/native/java/lang/Thread.h:21: warning: no semicolon at end of struct or union ../../haikuVM/native/java/lang/Thread.h:21: warning: type defaults toint' in declaration of clazz' ../../haikuVM/native/java/lang/Thread.h:21: warning: data definition has no type or storage class ../../haikuVM/native/java/lang/Thread.h:23: error: parse error before "jobject" ../../haikuVM/native/java/lang/Thread.h:23: warning: no semicolon at end of struct or union ../../haikuVM/native/java/lang/Thread.h:25: error: parse error before "state" ../../haikuVM/native/java/lang/Thread.h:25: warning: type defaults toint' in declaration of state' ../../haikuVM/native/java/lang/Thread.h:25: warning: data definition has no type or storage class ../../haikuVM/native/java/lang/Thread.h:27: error: parse error before "stackpointer" ../../haikuVM/native/java/lang/Thread.h:27: warning: type defaults toint' in declaration of stackpointer' ../../haikuVM/native/java/lang/Thread.h:27: warning: data definition has no type or storage class ../../haikuVM/native/java/lang/Thread.h:28: error: parse error before "stackframe" ../../haikuVM/native/java/lang/Thread.h:28: warning: type defaults toint' in declaration of stackframe' ../../haikuVM/native/java/lang/Thread.h:28: warning: data definition has no type or storage class ../../haikuVM/native/java/lang/Thread.h:29: error: parse error before '*' token ../../haikuVM/native/java/lang/Thread.h:29: warning: type defaults toint' in declaration of stack' ../../haikuVM/native/java/lang/Thread.h:29: warning: data definition has no type or storage class ../../haikuVM/native/java/lang/Thread.h:30: error: parse error before "waitUntil" ../../haikuVM/native/java/lang/Thread.h:30: warning: type defaults toint' in declaration of waitUntil' ../../haikuVM/native/java/lang/Thread.h:30: warning: data definition has no type or storage class ../../haikuVM/native/java/lang/Thread.h:31: error: parse error before '*' token ../../haikuVM/native/java/lang/Thread.h:31: warning: type defaults toint' in declaration of locks' ../../haikuVM/native/java/lang/Thread.h:31: warning: data definition has no type or storage class ../../haikuVM/native/java/lang/Thread.h:32: error: parse error before "interrupt" ../../haikuVM/native/java/lang/Thread.h:32: warning: type defaults toint' in declaration of interrupt' ../../haikuVM/native/java/lang/Thread.h:32: warning: data definition has no type or storage class ../../haikuVM/native/java/lang/Thread.h:33: error: parse error before "waitingOn" ../../haikuVM/native/java/lang/Thread.h:33: warning: type defaults toint' in declaration of waitingOn' ../../haikuVM/native/java/lang/Thread.h:33: warning: data definition has no type or storage class ../../haikuVM/native/java/lang/Thread.h:34: warning: type defaults toint' in declaration of user' ../../haikuVM/native/java/lang/Thread.h:34: warning: data definition has no type or storage class ../../haikuVM/native/java/lang/Thread.h:35: error: parse error before '}' token ../../haikuVM/native/java/lang/Thread.h:35: warning: type defaults toint' in declaration of native_java_lang_Thread' ../../haikuVM/native/java/lang/Thread.h:35: warning: data definition has no type or storage class ../../haikuVM/native/java/lang/Thread.h:40: error: parse error before "uint8_t" ../../haikuVM/native/java/lang/Thread.h:40: warning: no semicolon at end of struct or union ../../haikuVM/native/java/lang/Thread.h:40: warning: type defaults toint' in declaration of purLocals' ../../haikuVM/native/java/lang/Thread.h:40: warning: data definition has no type or storage class ../../haikuVM/native/java/lang/Thread.h:40: error: parse error before "purParams" ../../haikuVM/native/java/lang/Thread.h:40: warning: type defaults toint' in declaration of purParams' ../../haikuVM/native/java/lang/Thread.h:40: warning: data definition has no type or storage class ../../haikuVM/native/java/lang/Thread.h:42: error: parse error before "op0" ../../haikuVM/native/java/lang/Thread.h:42: warning: type defaults toint' in declaration of op0' ../../haikuVM/native/java/lang/Thread.h:42: warning: data definition has no type or storage class ../../haikuVM/native/java/lang/Thread.h:43: error: parse error before "op1" ../../haikuVM/native/java/lang/Thread.h:43: warning: type defaults toint' in declaration of op1' ../../haikuVM/native/java/lang/Thread.h:43: warning: data definition has no type or storage class ../../haikuVM/native/java/lang/Thread.h:44: error: parse error before "op2" ../../haikuVM/native/java/lang/Thread.h:44: warning: type defaults toint' in declaration of op2' ../../haikuVM/native/java/lang/Thread.h:44: warning: data definition has no type or storage class ../../haikuVM/native/java/lang/Thread.h:45: error: parse error before "op5" ../../haikuVM/native/java/lang/Thread.h:45: warning: type defaults toint' in declaration of op5' ../../haikuVM/native/java/lang/Thread.h:45: warning: data definition has no type or storage class ../../haikuVM/native/java/lang/Thread.h:45: error: parse error before "b5" ../../haikuVM/native/java/lang/Thread.h:45: warning: type defaults toint' in declaration of b5' ../../haikuVM/native/java/lang/Thread.h:45: warning: data definition has no type or storage class ../../haikuVM/native/java/lang/Thread.h:46: error: parse error before "op7" ../../haikuVM/native/java/lang/Thread.h:46: warning: type defaults toint' in declaration of op7' ../../haikuVM/native/java/lang/Thread.h:46: warning: data definition has no type or storage class ../../haikuVM/native/java/lang/Thread.h:47: error: parse error before "op10" ../../haikuVM/native/java/lang/Thread.h:47: warning: type defaults toint' in declaration of op10' ../../haikuVM/native/java/lang/Thread.h:47: warning: data definition has no type or storage class ../../haikuVM/native/java/lang/Thread.h:48: error: parse error before "op11" ../../haikuVM/native/java/lang/Thread.h:48: warning: type defaults toint' in declaration of op11' ../../haikuVM/native/java/lang/Thread.h:48: warning: data definition has no type or storage class ../../haikuVM/native/java/lang/Thread.h:49: error: parse error before "op12" ../../haikuVM/native/java/lang/Thread.h:49: warning: type defaults toint' in declaration of op12' ../../haikuVM/native/java/lang/Thread.h:49: warning: data definition has no type or storage class ../../haikuVM/native/java/lang/Thread.h:50: error: parse error before "op13" ../../haikuVM/native/java/lang/Thread.h:50: warning: type defaults toint' in declaration of op13' ../../haikuVM/native/java/lang/Thread.h:50: warning: data definition has no type or storage class ../../haikuVM/native/java/lang/Thread.h:51: warning: type defaults toint' in declaration of java_lang_Thread_haikuReleaseLock_Ljava_lang_Object_V_t' ../../haikuVM/native/java/lang/Thread.h:51: warning: data definition has no type or storage class ../../haikuVM/native/java/lang/Thread.h:52: error: parse error before "java_lang_Thread_haikuReleaseLock_Ljava_lang_Object_V" ../../haikuVM/native/java/lang/Thread.h:52: warning: type defaults toint' in declaration of java_lang_Thread_haikuReleaseLock_Ljava_lang_Object_V' ../../haikuVM/native/java/lang/Thread.h:52: warning: data definition has no type or storage class In file included from ../../haikuC/haikuConfig.c:1: /Users/carl/Development/ArduinoBlinkLed/build/classes/haikuC/haikuConfig.h:580: error: parse error before "Const0000" /Users/carl/Development/ArduinoBlinkLed/build/classes/haikuC/haikuConfig.h:580: warning: type defaults toint' in declaration of PROGMEM' /Users/carl/Development/ArduinoBlinkLed/build/classes/haikuC/haikuConfig.h:580: warning: data definition has no type or storage class /Users/carl/Development/ArduinoBlinkLed/build/classes/haikuC/haikuConfig.h:581: error: parse error before "Const0001" /Users/carl/Development/ArduinoBlinkLed/build/classes/haikuC/haikuConfig.h:581: warning: type defaults toint' in declaration of PROGMEM' /Users/carl/Development/ArduinoBlinkLed/build/classes/haikuC/haikuConfig.h:581: warning: data definition has no type or storage class /Users/carl/Development/ArduinoBlinkLed/build/classes/haikuC/haikuConfig.h:582: error: parse error before "Const0002" /Users/carl/Development/ArduinoBlinkLed/build/classes/haikuC/haikuConfig.h:582: warning: type defaults toint' in declaration of PROGMEM' /Users/carl/Development/ArduinoBlinkLed/build/classes/haikuC/haikuConfig.h:582: warning: data definition has no type or storage class /Users/carl/Development/ArduinoBlinkLed/build/classes/haikuC/haikuConfig.h:583: error: parse error before "Const0003" /Users/carl/Development/ArduinoBlinkLed/build/classes/haikuC/haikuConfig.h:583: warning: type defaults toint' in declaration of PROGMEM' /Users/carl/Development/ArduinoBlinkLed/build/classes/haikuC/haikuConfig.h:583: warning: data definition has no type or storage class /Users/carl/Development/ArduinoBlinkLed/build/classes/haikuC/haikuConfig.h:584: error: parse error before "Const0004" /Users/carl/Development/ArduinoBlinkLed/build/classes/haikuC/haikuConfig.h:584: warning: type defaults toint' in declaration of PROGMEM' /Users/carl/Development/ArduinoBlinkLed/build/classes/haikuC/haikuConfig.h:584: warning: data definition has no type or storage class /Users/carl/Development/ArduinoBlinkLed/build/classes/haikuC/haikuConfig.h:592: error: parse error before "jheapsize" /Users/carl/Development/ArduinoBlinkLed/build/classes/haikuC/haikuConfig.h:592: warning: no semicolon at end of struct or union /Users/carl/Development/ArduinoBlinkLed/build/classes/haikuC/haikuConfig.h:592: warning: type defaults toint' in declaration of clazz' /Users/carl/Development/ArduinoBlinkLed/build/classes/haikuC/haikuConfig.h:592: warning: data definition has no type or storage class /Users/carl/Development/ArduinoBlinkLed/build/classes/haikuC/haikuConfig.h:594: error: parse error before "nullallocsize" /Users/carl/Development/ArduinoBlinkLed/build/classes/haikuC/haikuConfig.h:594: warning: type defaults toint' in declaration of nullallocsize' /Users/carl/Development/ArduinoBlinkLed/build/classes/haikuC/haikuConfig.h:594: warning: data definition has no type or storage class /Users/carl/Development/ArduinoBlinkLed/build/classes/haikuC/haikuConfig.h:595: warning: type defaults toint' in declaration of heapmem_t' /Users/carl/Development/ArduinoBlinkLed/build/classes/haikuC/haikuConfig.h:595: warning: data definition has no type or storage class /Users/carl/Development/ArduinoBlinkLed/build/classes/haikuC/haikuConfig.h:597: error: parse error before "heapmem" /Users/carl/Development/ArduinoBlinkLed/build/classes/haikuC/haikuConfig.h:597: warning: type defaults toint' in declaration of heapmem' /Users/carl/Development/ArduinoBlinkLed/build/classes/haikuC/haikuConfig.h:597: warning: data definition has no type or storage class /Users/carl/Development/ArduinoBlinkLed/build/classes/haikuC/haikuConfig.h:600: warning: type defaults toint' in declaration of jobject' /Users/carl/Development/ArduinoBlinkLed/build/classes/haikuC/haikuConfig.h:600: warning: no semicolon at end of struct or union /Users/carl/Development/ArduinoBlinkLed/build/classes/haikuC/haikuConfig.h:600: error: parse error before "java_lang_System_out" /Users/carl/Development/ArduinoBlinkLed/build/classes/haikuC/haikuConfig.h:601: error: parse error before "java_lang_Thread_currentThread" /Users/carl/Development/ArduinoBlinkLed/build/classes/haikuC/haikuConfig.h:601: warning: type defaults toint' in declaration of java_lang_Thread_currentThread' /Users/carl/Development/ArduinoBlinkLed/build/classes/haikuC/haikuConfig.h:601: warning: data definition has no type or storage class /Users/carl/Development/ArduinoBlinkLed/build/classes/haikuC/haikuConfig.h:602: error: parse error before "java_lang_System_in" /Users/carl/Development/ArduinoBlinkLed/build/classes/haikuC/haikuConfig.h:602: warning: type defaults toint' in declaration of java_lang_System_in' /Users/carl/Development/ArduinoBlinkLed/build/classes/haikuC/haikuConfig.h:602: warning: data definition has no type or storage class /Users/carl/Development/ArduinoBlinkLed/build/classes/haikuC/haikuConfig.h:603: error: parse error before "BlinkLed_ledPin" /Users/carl/Development/ArduinoBlinkLed/build/classes/haikuC/haikuConfig.h:603: warning: type defaults toint' in declaration of BlinkLed_ledPin' /Users/carl/Development/ArduinoBlinkLed/build/classes/haikuC/haikuConfig.h:603: warning: data definition has no type or storage class /Users/carl/Development/ArduinoBlinkLed/build/classes/haikuC/haikuConfig.h:604: error: parse error before "haiku_avr_AVRDefines__next" /Users/carl/Development/ArduinoBlinkLed/build/classes/haikuC/haikuConfig.h:604: warning: type defaults toint' in declaration of haiku_avr_AVRDefines__next' /Users/carl/Development/ArduinoBlinkLed/build/classes/haikuC/haikuConfig.h:604: warning: data definition has no type or storage class /Users/carl/Development/ArduinoBlinkLed/build/classes/haikuC/haikuConfig.h:605: warning: type defaults toint' in declaration of statics_u_t' /Users/carl/Development/ArduinoBlinkLed/build/classes/haikuC/haikuConfig.h:605: warning: data definition has no type or storage class /Users/carl/Development/ArduinoBlinkLed/build/classes/haikuC/haikuConfig.h:608: error: parse error before "jobject" /Users/carl/Development/ArduinoBlinkLed/build/classes/haikuC/haikuConfig.h:608: warning: no semicolon at end of struct or union /Users/carl/Development/ArduinoBlinkLed/build/classes/haikuC/haikuConfig.h:609: warning: type defaults toint' in declaration of user' /Users/carl/Development/ArduinoBlinkLed/build/classes/haikuC/haikuConfig.h:609: warning: data definition has no type or storage class /Users/carl/Development/ArduinoBlinkLed/build/classes/haikuC/haikuConfig.h:610: warning: type defaults toint' in declaration of statics_t' /Users/carl/Development/ArduinoBlinkLed/build/classes/haikuC/haikuConfig.h:610: warning: data definition has no type or storage class /Users/carl/Development/ArduinoBlinkLed/build/classes/haikuC/haikuConfig.h:612: error: parse error before "statics" /Users/carl/Development/ArduinoBlinkLed/build/classes/haikuC/haikuConfig.h:612: warning: type defaults toint' in declaration of statics' /Users/carl/Development/ArduinoBlinkLed/build/classes/haikuC/haikuConfig.h:612: warning: data definition has no type or storage class In file included from ../../haikuC/haikuConfig.c:2: ../../haikuVM/Bytecodes.h: In functionOPF_AALOAD':
    ../../haikuVM/Bytecodes.h:15: error: parse error before "index"
    ../../haikuVM/Bytecodes.h:18: error: request for member s1' in something not a structure or union ../../haikuVM/Bytecodes.h:18: error: parse error before "adr" ../../haikuVM/Bytecodes.h:18: error:index' undeclared (first use in this function)
    ../../haikuVM/Bytecodes.h:18: error: (Each undeclared identifier is reported only once
    ../../haikuVM/Bytecodes.h:18: error: for each function it appears in.)
    ../../haikuVM/Bytecodes.h: In function OPF_AASTORE': ../../haikuVM/Bytecodes.h:27: error: parse error before "value" ../../haikuVM/Bytecodes.h:32: error: parse error before "adr" ../../haikuVM/Bytecodes.h:32: error:index' undeclared (first use in this function)
    ../../haikuVM/Bytecodes.h:32: error: value' undeclared (first use in this function) ../../haikuVM/Bytecodes.h: In functionOPF_ACONST_NULL':
    ../../haikuVM/Bytecodes.h:42: error: request for member s1' in something not a structure or union ../../haikuVM/Bytecodes.h: In functionOPF_ALOAD':
    ../../haikuVM/Bytecodes.h:52: error: request for member s1' in something not a structure or union ../../haikuVM/Bytecodes.h:52: error: request for members0' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_ALOAD_0': ../../haikuVM/Bytecodes.h:63: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h:63: error: request for member s0' in something not a structure or union ../../haikuVM/Bytecodes.h: In functionOPF_ALOAD_1':
    ../../haikuVM/Bytecodes.h:74: error: request for member s1' in something not a structure or union ../../haikuVM/Bytecodes.h:74: error: request for members0' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_ALOAD_2': ../../haikuVM/Bytecodes.h:85: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h:85: error: request for member s0' in something not a structure or union ../../haikuVM/Bytecodes.h: In functionOPF_ALOAD_3':
    ../../haikuVM/Bytecodes.h:96: error: request for member s1' in something not a structure or union ../../haikuVM/Bytecodes.h:96: error: request for members0' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_ANEWARRAY': ../../haikuVM/Bytecodes.h:107: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h:107: error: request for member s1' in something not a structure or union ../../haikuVM/Bytecodes.h: In functionOPF_ARRAYLENGTH':
    ../../haikuVM/Bytecodes.h:125: error: request for member s1' in something not a structure or union ../../haikuVM/Bytecodes.h:125: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_ASTORE': ../../haikuVM/Bytecodes.h:134: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_ASTORE_0': ../../haikuVM/Bytecodes.h:145: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_ASTORE_1': ../../haikuVM/Bytecodes.h:156: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_ASTORE_2': ../../haikuVM/Bytecodes.h:167: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_ASTORE_3': ../../haikuVM/Bytecodes.h:178: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_ATHROW': ../../haikuVM/Bytecodes.h:189: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_BALOAD': ../../haikuVM/Bytecodes.h:198: error: parse error before "index" ../../haikuVM/Bytecodes.h:200: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h:200: error: parse error before "adr"
    ../../haikuVM/Bytecodes.h:200: error: index' undeclared (first use in this function) ../../haikuVM/Bytecodes.h: In functionOPF_BASTORE':
    ../../haikuVM/Bytecodes.h:209: error: parse error before "value"
    ../../haikuVM/Bytecodes.h:213: error: parse error before "adr"
    ../../haikuVM/Bytecodes.h:213: error: index' undeclared (first use in this function) ../../haikuVM/Bytecodes.h:213: error:value' undeclared (first use in this function)
    ../../haikuVM/Bytecodes.h: In function OPF_BIPUSH': ../../haikuVM/Bytecodes.h:223: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h:223: error: int8_t' undeclared (first use in this function) ../../haikuVM/Bytecodes.h:223: error: parse error before "GETCODEBYTE2" ../../haikuVM/Bytecodes.h: In functionOPF_CALOAD':
    ../../haikuVM/Bytecodes.h:232: error: parse error before "index"
    ../../haikuVM/Bytecodes.h:234: error: request for member s1' in something not a structure or union ../../haikuVM/Bytecodes.h:234: error: parse error before "adr" ../../haikuVM/Bytecodes.h:234: error:index' undeclared (first use in this function)
    ../../haikuVM/Bytecodes.h: In function OPF_CASTORE': ../../haikuVM/Bytecodes.h:243: error: parse error before "value" ../../haikuVM/Bytecodes.h:247: error: parse error before "adr" ../../haikuVM/Bytecodes.h:247: error:index' undeclared (first use in this function)
    ../../haikuVM/Bytecodes.h:247: error: value' undeclared (first use in this function) ../../haikuVM/Bytecodes.h: In functionOPF_CHECKCAST':
    ../../haikuVM/Bytecodes.h:256: error: request for member s1' in something not a structure or union ../../haikuVM/Bytecodes.h:257: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_D2F': ../../haikuVM/Bytecodes.h:268: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h:268: error: request for member d' in something not a structure or union ../../haikuVM/Bytecodes.h: In functionOPF_D2I':
    ../../haikuVM/Bytecodes.h:278: error: request for member s1' in something not a structure or union ../../haikuVM/Bytecodes.h:278: error: request for memberd' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_D2L': ../../haikuVM/Bytecodes.h:288: error: request for memberj' in something not a structure or union
    ../../haikuVM/Bytecodes.h:288: error: request for member d' in something not a structure or union ../../haikuVM/Bytecodes.h: In functionOPF_DADD':
    ../../haikuVM/Bytecodes.h:299: error: request for member d' in something not a structure or union ../../haikuVM/Bytecodes.h:299: error: request for memberd' in something not a structure or union
    ../../haikuVM/Bytecodes.h:299: error: request for member d' in something not a structure or union ../../haikuVM/Bytecodes.h: In functionOPF_DALOAD':
    ../../haikuVM/Bytecodes.h:309: error: parse error before "index"
    ../../haikuVM/Bytecodes.h:311: error: request for member d' in something not a structure or union ../../haikuVM/Bytecodes.h:311: error: parse error before "adr" ../../haikuVM/Bytecodes.h:311: error:index' undeclared (first use in this function)
    ../../haikuVM/Bytecodes.h: In function OPF_DASTORE': ../../haikuVM/Bytecodes.h:321: error: parse error before "index" ../../haikuVM/Bytecodes.h:325: error: request for memberd' in something not a structure or union
    ../../haikuVM/Bytecodes.h:326: error: index' undeclared (first use in this function) ../../haikuVM/Bytecodes.h:327: error:adr' undeclared (first use in this function)
    ../../haikuVM/Bytecodes.h:329: error: parse error before "adr"
    ../../haikuVM/Bytecodes.h: In function OPF_DCMPG': ../../haikuVM/Bytecodes.h:340: error: request for memberd' in something not a structure or union
    ../../haikuVM/Bytecodes.h:341: error: request for member d' in something not a structure or union ../../haikuVM/Bytecodes.h:342: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h:343: error: request for member s1' in something not a structure or union ../../haikuVM/Bytecodes.h:344: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h:345: error: request for member s1' in something not a structure or union ../../haikuVM/Bytecodes.h: In functionOPF_DCMPL':
    ../../haikuVM/Bytecodes.h:356: error: request for member d' in something not a structure or union ../../haikuVM/Bytecodes.h:357: error: request for memberd' in something not a structure or union
    ../../haikuVM/Bytecodes.h:358: error: request for member s1' in something not a structure or union ../../haikuVM/Bytecodes.h:359: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h:360: error: request for member s1' in something not a structure or union ../../haikuVM/Bytecodes.h:361: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_DCONST_0': ../../haikuVM/Bytecodes.h:371: error: request for memberd' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_DCONST_1': ../../haikuVM/Bytecodes.h:382: error: request for memberd' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_DDIV': ../../haikuVM/Bytecodes.h:393: error: request for memberd' in something not a structure or union
    ../../haikuVM/Bytecodes.h:393: error: request for member d' in something not a structure or union ../../haikuVM/Bytecodes.h:393: error: request for memberd' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_DLOAD': ../../haikuVM/Bytecodes.h:404: error: request for memberd' in something not a structure or union
    ../../haikuVM/Bytecodes.h:404: error: request for member d' in something not a structure or union ../../haikuVM/Bytecodes.h: In functionOPF_DLOAD_0':
    ../../haikuVM/Bytecodes.h:415: error: request for member d' in something not a structure or union ../../haikuVM/Bytecodes.h:415: error: request for memberd' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_DLOAD_1': ../../haikuVM/Bytecodes.h:426: error: request for memberd' in something not a structure or union
    ../../haikuVM/Bytecodes.h:426: error: request for member d' in something not a structure or union ../../haikuVM/Bytecodes.h: In functionOPF_DLOAD_2':
    ../../haikuVM/Bytecodes.h:437: error: request for member d' in something not a structure or union ../../haikuVM/Bytecodes.h:437: error: request for memberd' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_DLOAD_3': ../../haikuVM/Bytecodes.h:448: error: request for memberd' in something not a structure or union
    ../../haikuVM/Bytecodes.h:448: error: request for member d' in something not a structure or union ../../haikuVM/Bytecodes.h: In functionOPF_DMUL':
    ../../haikuVM/Bytecodes.h:459: error: request for member d' in something not a structure or union ../../haikuVM/Bytecodes.h:459: error: request for memberd' in something not a structure or union
    ../../haikuVM/Bytecodes.h:459: error: request for member d' in something not a structure or union ../../haikuVM/Bytecodes.h: In functionOPF_DNEG':
    ../../haikuVM/Bytecodes.h:470: error: request for member d' in something not a structure or union ../../haikuVM/Bytecodes.h:470: error: request for memberd' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_DREM': ../../haikuVM/Bytecodes.h:481: error: parse error before "j" ../../haikuVM/Bytecodes.h:483: error: request for memberd' in something not a structure or union
    ../../haikuVM/Bytecodes.h:484: error: request for member d' in something not a structure or union ../../haikuVM/Bytecodes.h:486: error: request for memberd' in something not a structure or union
    ../../haikuVM/Bytecodes.h:486: error: request for member d' in something not a structure or union ../../haikuVM/Bytecodes.h: In functionOPF_DSTORE':
    ../../haikuVM/Bytecodes.h:508: error: request for member d' in something not a structure or union ../../haikuVM/Bytecodes.h:508: error: request for memberd' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_DSTORE_0': ../../haikuVM/Bytecodes.h:519: error: request for memberd' in something not a structure or union
    ../../haikuVM/Bytecodes.h:519: error: request for member d' in something not a structure or union ../../haikuVM/Bytecodes.h: In functionOPF_DSTORE_1':
    ../../haikuVM/Bytecodes.h:530: error: request for member d' in something not a structure or union ../../haikuVM/Bytecodes.h:530: error: request for memberd' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_DSTORE_2': ../../haikuVM/Bytecodes.h:541: error: request for memberd' in something not a structure or union
    ../../haikuVM/Bytecodes.h:541: error: request for member d' in something not a structure or union ../../haikuVM/Bytecodes.h: In functionOPF_DSTORE_3':
    ../../haikuVM/Bytecodes.h:552: error: request for member d' in something not a structure or union ../../haikuVM/Bytecodes.h:552: error: request for memberd' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_DSUB': ../../haikuVM/Bytecodes.h:563: error: request for memberd' in something not a structure or union
    ../../haikuVM/Bytecodes.h:563: error: request for member d' in something not a structure or union ../../haikuVM/Bytecodes.h:563: error: request for memberd' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_DUP_X2': ../../haikuVM/Bytecodes.h:593: error: parse error before "value2" ../../haikuVM/Bytecodes.h:597: error: invalid type argument ofunary
    '
    ../../haikuVM/Bytecodes.h:597: error: value3' undeclared (first use in this function) ../../haikuVM/Bytecodes.h:598: error: invalid type argument ofunary '
    ../../haikuVM/Bytecodes.h:598: error: value2' undeclared (first use in this function) ../../haikuVM/Bytecodes.h: In functionOPF_DUP2':
    ../../haikuVM/Bytecodes.h:607: error: request for member s0' in something not a structure or union ../../haikuVM/Bytecodes.h:607: error: invalid type argument ofunary
    '
    ../../haikuVM/Bytecodes.h: In function OPF_DUP2_X1': ../../haikuVM/Bytecodes.h:618: error: parse error before "value2" ../../haikuVM/Bytecodes.h:621: error: invalid type argument ofunary '
    ../../haikuVM/Bytecodes.h:621: error: value2' undeclared (first use in this function) ../../haikuVM/Bytecodes.h:624: error: invalid type argument ofunary
    '
    ../../haikuVM/Bytecodes.h:624: error: value3' undeclared (first use in this function) ../../haikuVM/Bytecodes.h:626: error: invalid type argument ofunary '
    ../../haikuVM/Bytecodes.h: In function OPF_DUP2_X2': ../../haikuVM/Bytecodes.h:635: error: parse error before "value2" ../../haikuVM/Bytecodes.h:639: error: invalid type argument ofunary
    '
    ../../haikuVM/Bytecodes.h:639: error: value2' undeclared (first use in this function) ../../haikuVM/Bytecodes.h:642: error: invalid type argument ofunary '
    ../../haikuVM/Bytecodes.h:642: error: value4' undeclared (first use in this function) ../../haikuVM/Bytecodes.h:643: error: invalid type argument ofunary
    '
    ../../haikuVM/Bytecodes.h:643: error: value3' undeclared (first use in this function) ../../haikuVM/Bytecodes.h:645: error: invalid type argument ofunary '
    ../../haikuVM/Bytecodes.h: In function OPF_F2D': ../../haikuVM/Bytecodes.h:654: error: request for memberd' in something not a structure or union
    ../../haikuVM/Bytecodes.h:654: error: request for member s1' in something not a structure or union ../../haikuVM/Bytecodes.h: In functionOPF_F2I':
    ../../haikuVM/Bytecodes.h:664: error: request for member s1' in something not a structure or union ../../haikuVM/Bytecodes.h:664: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_F2L': ../../haikuVM/Bytecodes.h:673: error: request for memberj' in something not a structure or union
    ../../haikuVM/Bytecodes.h:673: error: request for member s1' in something not a structure or union ../../haikuVM/Bytecodes.h: In functionOPF_FADD':
    ../../haikuVM/Bytecodes.h:683: error: request for member s1' in something not a structure or union ../../haikuVM/Bytecodes.h:683: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_FALOAD': ../../haikuVM/Bytecodes.h:692: error: parse error before "index" ../../haikuVM/Bytecodes.h:694: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h:694: error: parse error before "adr"
    ../../haikuVM/Bytecodes.h:694: error: index' undeclared (first use in this function) ../../haikuVM/Bytecodes.h: In functionOPF_FASTORE':
    ../../haikuVM/Bytecodes.h:703: error: parse error before "value"
    ../../haikuVM/Bytecodes.h:707: error: parse error before "adr"
    ../../haikuVM/Bytecodes.h:707: error: index' undeclared (first use in this function) ../../haikuVM/Bytecodes.h:707: error:value' undeclared (first use in this function)
    ../../haikuVM/Bytecodes.h: In function OPF_FCMPG': ../../haikuVM/Bytecodes.h:720: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h:722: error: request for member s1' in something not a structure or union ../../haikuVM/Bytecodes.h:723: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h:724: error: request for member s1' in something not a structure or union ../../haikuVM/Bytecodes.h:725: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_FCMPL': ../../haikuVM/Bytecodes.h:740: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h:742: error: request for member s1' in something not a structure or union ../../haikuVM/Bytecodes.h:743: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h:744: error: request for member s1' in something not a structure or union ../../haikuVM/Bytecodes.h:745: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_FCONST_0': ../../haikuVM/Bytecodes.h:755: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_FCONST_1': ../../haikuVM/Bytecodes.h:765: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_FCONST_2': ../../haikuVM/Bytecodes.h:775: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_FDIV': ../../haikuVM/Bytecodes.h:784: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h:784: error: request for member s1' in something not a structure or union ../../haikuVM/Bytecodes.h: In functionOPF_FLOAD':
    ../../haikuVM/Bytecodes.h:794: error: request for member s1' in something not a structure or union ../../haikuVM/Bytecodes.h:794: error: request for members0' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_FLOAD_0': ../../haikuVM/Bytecodes.h:804: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h:804: error: request for member s0' in something not a structure or union ../../haikuVM/Bytecodes.h: In functionOPF_FLOAD_1':
    ../../haikuVM/Bytecodes.h:814: error: request for member s1' in something not a structure or union ../../haikuVM/Bytecodes.h:814: error: request for members0' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_FLOAD_2': ../../haikuVM/Bytecodes.h:824: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h:824: error: request for member s0' in something not a structure or union ../../haikuVM/Bytecodes.h: In functionOPF_FLOAD_3':
    ../../haikuVM/Bytecodes.h:834: error: request for member s1' in something not a structure or union ../../haikuVM/Bytecodes.h:834: error: request for members0' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_FMUL': ../../haikuVM/Bytecodes.h:843: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h:843: error: request for member s1' in something not a structure or union ../../haikuVM/Bytecodes.h: In functionOPF_FNEG':
    ../../haikuVM/Bytecodes.h:852: error: request for member s1' in something not a structure or union ../../haikuVM/Bytecodes.h:852: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_FREM': ../../haikuVM/Bytecodes.h:861: error: parse error before "f0" ../../haikuVM/Bytecodes.h:863: error:f0' undeclared (first use in this function)
    ../../haikuVM/Bytecodes.h:863: error: invalid type argument of ->' ../../haikuVM/Bytecodes.h:864: error:f1' undeclared (first use in this function)
    ../../haikuVM/Bytecodes.h:864: error: request for member s1' in something not a structure or union ../../haikuVM/Bytecodes.h:866: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h:866: error: request for member s1' in something not a structure or union ../../haikuVM/Bytecodes.h: In functionOPF_FSTORE':
    ../../haikuVM/Bytecodes.h:884: error: request for member s1' in something not a structure or union ../../haikuVM/Bytecodes.h: In functionOPF_FSTORE_0':
    ../../haikuVM/Bytecodes.h:894: error: request for member s1' in something not a structure or union ../../haikuVM/Bytecodes.h: In functionOPF_FSTORE_1':
    ../../haikuVM/Bytecodes.h:904: error: request for member s1' in something not a structure or union ../../haikuVM/Bytecodes.h: In functionOPF_FSTORE_2':
    ../../haikuVM/Bytecodes.h:914: error: request for member s1' in something not a structure or union ../../haikuVM/Bytecodes.h: In functionOPF_FSTORE_3':
    ../../haikuVM/Bytecodes.h:924: error: request for member s1' in something not a structure or union ../../haikuVM/Bytecodes.h: In functionOPF_FSUB':
    ../../haikuVM/Bytecodes.h:934: error: request for member s1' in something not a structure or union ../../haikuVM/Bytecodes.h:934: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_GETFIELD_L': ../../haikuVM/Bytecodes.h:943: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h:943: error: parse error before ')' token
    ../../haikuVM/Bytecodes.h: In function OPF_GETFIELD_B': ../../haikuVM/Bytecodes.h:948: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h:948: error: parse error before ')' token
    ../../haikuVM/Bytecodes.h: In function OPF_GETFIELD_C': ../../haikuVM/Bytecodes.h:952: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h:952: error: parse error before ')' token
    ../../haikuVM/Bytecodes.h: In function OPF_GETFIELD_D': ../../haikuVM/Bytecodes.h:956: error: request for memberd' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_GETFIELD_F': ../../haikuVM/Bytecodes.h:961: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h:961: error: parse error before ')' token
    ../../haikuVM/Bytecodes.h: In function OPF_GETFIELD_I': ../../haikuVM/Bytecodes.h:965: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h:965: error: parse error before ')' token
    ../../haikuVM/Bytecodes.h: In function OPF_GETFIELD_J': ../../haikuVM/Bytecodes.h:969: error: request for memberj' in something not a structure or union
    ../../haikuVM/Bytecodes.h:969: error: parse error before ')' token
    ../../haikuVM/Bytecodes.h: In function OPF_GETFIELD_S': ../../haikuVM/Bytecodes.h:974: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h:974: error: parse error before ')' token
    ../../haikuVM/Bytecodes.h: In function OPF_GETFIELD_Z': ../../haikuVM/Bytecodes.h:978: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h:978: error: parse error before ')' token
    ../../haikuVM/Bytecodes.h: In function OPF_GETSTATIC_L': ../../haikuVM/Bytecodes.h:988: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h:988: error: parse error before ')' token
    ../../haikuVM/Bytecodes.h: In function OPF_GETSTATIC_B': ../../haikuVM/Bytecodes.h:997: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h:997: error: parse error before ')' token
    ../../haikuVM/Bytecodes.h: In function OPF_GETSTATIC_C': ../../haikuVM/Bytecodes.h:1003: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h:1003: error: parse error before ')' token
    ../../haikuVM/Bytecodes.h: In function OPF_GETSTATIC_D': ../../haikuVM/Bytecodes.h:1008: error: request for memberd' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_GETSTATIC_F': ../../haikuVM/Bytecodes.h:1014: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h:1014: error: parse error before ')' token
    ../../haikuVM/Bytecodes.h: In function OPF_GETSTATIC_I': ../../haikuVM/Bytecodes.h:1019: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h:1019: error: parse error before ')' token
    ../../haikuVM/Bytecodes.h: In function OPF_GETSTATIC_J': ../../haikuVM/Bytecodes.h:1024: error: request for memberj' in something not a structure or union
    ../../haikuVM/Bytecodes.h:1024: error: parse error before ')' token
    ../../haikuVM/Bytecodes.h: In function OPF_GETSTATIC_S': ../../haikuVM/Bytecodes.h:1033: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h:1033: error: parse error before ')' token
    ../../haikuVM/Bytecodes.h: In function OPF_GETSTATIC_Z': ../../haikuVM/Bytecodes.h:1039: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h:1039: error: parse error before ')' token
    ../../haikuVM/Bytecodes.h: In function OPF_I2B': ../../haikuVM/Bytecodes.h:1067: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h:1067: error: request for member s1' in something not a structure or union ../../haikuVM/Bytecodes.h: In functionOPF_I2C':
    ../../haikuVM/Bytecodes.h:1076: error: request for member s1' in something not a structure or union ../../haikuVM/Bytecodes.h:1076: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_I2D': ../../haikuVM/Bytecodes.h:1085: error: request for memberd' in something not a structure or union
    ../../haikuVM/Bytecodes.h:1085: error: request for member s1' in something not a structure or union ../../haikuVM/Bytecodes.h: In functionOPF_I2F':
    ../../haikuVM/Bytecodes.h:1095: error: request for member s1' in something not a structure or union ../../haikuVM/Bytecodes.h:1095: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_I2L': ../../haikuVM/Bytecodes.h:1104: error: request for memberj' in something not a structure or union
    ../../haikuVM/Bytecodes.h:1104: error: request for member s1' in something not a structure or union ../../haikuVM/Bytecodes.h: In functionOPF_IADD':
    ../../haikuVM/Bytecodes.h:1122: error: request for member s1' in something not a structure or union ../../haikuVM/Bytecodes.h: In functionOPF_IALOAD':
    ../../haikuVM/Bytecodes.h:1131: error: parse error before "index"
    ../../haikuVM/Bytecodes.h:1133: error: request for member s1' in something not a structure or union ../../haikuVM/Bytecodes.h:1133: error: parse error before "adr" ../../haikuVM/Bytecodes.h:1133: error:index' undeclared (first use in this function)
    ../../haikuVM/Bytecodes.h: In function OPF_IAND': ../../haikuVM/Bytecodes.h:1142: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_IASTORE': ../../haikuVM/Bytecodes.h:1151: error: parse error before "value" ../../haikuVM/Bytecodes.h:1155: error: parse error before "adr" ../../haikuVM/Bytecodes.h:1155: error:index' undeclared (first use in this function)
    ../../haikuVM/Bytecodes.h:1155: error: value' undeclared (first use in this function) ../../haikuVM/Bytecodes.h: In functionOPF_ICONST_M1':
    ../../haikuVM/Bytecodes.h:1165: error: request for member s1' in something not a structure or union ../../haikuVM/Bytecodes.h: In functionOPF_ICONST_0':
    ../../haikuVM/Bytecodes.h:1175: error: request for member s1' in something not a structure or union ../../haikuVM/Bytecodes.h: In functionOPF_ICONST_1':
    ../../haikuVM/Bytecodes.h:1185: error: request for member s1' in something not a structure or union ../../haikuVM/Bytecodes.h: In functionOPF_ICONST_2':
    ../../haikuVM/Bytecodes.h:1195: error: request for member s1' in something not a structure or union ../../haikuVM/Bytecodes.h: In functionOPF_ICONST_3':
    ../../haikuVM/Bytecodes.h:1205: error: request for member s1' in something not a structure or union ../../haikuVM/Bytecodes.h: In functionOPF_ICONST_4':
    ../../haikuVM/Bytecodes.h:1215: error: request for member s1' in something not a structure or union ../../haikuVM/Bytecodes.h: In functionOPF_ICONST_5':
    ../../haikuVM/Bytecodes.h:1225: error: request for member s1' in something not a structure or union ../../haikuVM/Bytecodes.h: In functionOPF_IDIV':
    ../../haikuVM/Bytecodes.h:1250: error: request for member s1' in something not a structure or union ../../haikuVM/Bytecodes.h:1250: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_IF_ACMPEQ': ../../haikuVM/Bytecodes.h:1261: error: parse error before "v1" ../../haikuVM/Bytecodes.h:1262: error:v1' undeclared (first use in this function)
    ../../haikuVM/Bytecodes.h:1262: error: v2' undeclared (first use in this function) ../../haikuVM/Bytecodes.h: In functionOPF_IF_ACMPNE':
    ../../haikuVM/Bytecodes.h:1272: error: parse error before "v1"
    ../../haikuVM/Bytecodes.h:1273: error: v1' undeclared (first use in this function) ../../haikuVM/Bytecodes.h:1273: error:v2' undeclared (first use in this function)
    ../../haikuVM/Bytecodes.h: In function OPF_IF_ICMPEQ': ../../haikuVM/Bytecodes.h:1283: error: parse error before "v1" ../../haikuVM/Bytecodes.h:1284: error:v1' undeclared (first use in this function)
    ../../haikuVM/Bytecodes.h:1284: error: v2' undeclared (first use in this function) ../../haikuVM/Bytecodes.h: In functionOPF_IF_ICMPNE':
    ../../haikuVM/Bytecodes.h:1294: error: parse error before "v1"
    ../../haikuVM/Bytecodes.h:1295: error: v1' undeclared (first use in this function) ../../haikuVM/Bytecodes.h:1295: error:v2' undeclared (first use in this function)
    ../../haikuVM/Bytecodes.h: In function OPF_IF_ICMPLT': ../../haikuVM/Bytecodes.h:1305: error: parse error before "v1" ../../haikuVM/Bytecodes.h:1306: error:v1' undeclared (first use in this function)
    ../../haikuVM/Bytecodes.h:1306: error: v2' undeclared (first use in this function) ../../haikuVM/Bytecodes.h: In functionOPF_IF_ICMPGE':
    ../../haikuVM/Bytecodes.h:1316: error: parse error before "v1"
    ../../haikuVM/Bytecodes.h:1317: error: v1' undeclared (first use in this function) ../../haikuVM/Bytecodes.h:1317: error:v2' undeclared (first use in this function)
    ../../haikuVM/Bytecodes.h: In function OPF_IF_ICMPGT': ../../haikuVM/Bytecodes.h:1327: error: parse error before "v1" ../../haikuVM/Bytecodes.h:1328: error:v1' undeclared (first use in this function)
    ../../haikuVM/Bytecodes.h:1328: error: v2' undeclared (first use in this function) ../../haikuVM/Bytecodes.h: In functionOPF_IF_ICMPLE':
    ../../haikuVM/Bytecodes.h:1338: error: parse error before "v1"
    ../../haikuVM/Bytecodes.h:1339: error: v1' undeclared (first use in this function) ../../haikuVM/Bytecodes.h:1339: error:v2' undeclared (first use in this function)
    ../../haikuVM/Bytecodes.h: In function OPF_IFEQ': ../../haikuVM/Bytecodes.h:1349: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_IFNE': ../../haikuVM/Bytecodes.h:1359: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_IFLT': ../../haikuVM/Bytecodes.h:1369: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_IFGE': ../../haikuVM/Bytecodes.h:1379: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_IFGT': ../../haikuVM/Bytecodes.h:1389: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_IFLE': ../../haikuVM/Bytecodes.h:1399: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_IFNONNULL': ../../haikuVM/Bytecodes.h:1409: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_IFNULL': ../../haikuVM/Bytecodes.h:1419: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_IINC': ../../haikuVM/Bytecodes.h:1429: error: parse error before "top_s1" ../../haikuVM/Bytecodes.h:1430: error:top_s1' undeclared (first use in this function)
    ../../haikuVM/Bytecodes.h:1430: error: int8_t' undeclared (first use in this function) ../../haikuVM/Bytecodes.h:1430: error: parse error before "GETCODEBYTE2" ../../haikuVM/Bytecodes.h: In functionOPF_IINC1':
    ../../haikuVM/Bytecodes.h:1439: error: parse error before "top_s1"
    ../../haikuVM/Bytecodes.h:1440: error: top_s1' undeclared (first use in this function) ../../haikuVM/Bytecodes.h: In functionOPF_ILOAD':
    ../../haikuVM/Bytecodes.h:1450: error: request for member s1' in something not a structure or union ../../haikuVM/Bytecodes.h:1450: error: request for members0' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_ILOAD_0': ../../haikuVM/Bytecodes.h:1460: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h:1460: error: subscripted value is neither array nor pointer
    ../../haikuVM/Bytecodes.h: In function OPF_ILOAD_1': ../../haikuVM/Bytecodes.h:1470: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h:1470: error: subscripted value is neither array nor pointer
    ../../haikuVM/Bytecodes.h: In function OPF_ILOAD_2': ../../haikuVM/Bytecodes.h:1480: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h:1480: error: subscripted value is neither array nor pointer
    ../../haikuVM/Bytecodes.h: In function OPF_ILOAD_3': ../../haikuVM/Bytecodes.h:1490: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h:1490: error: subscripted value is neither array nor pointer
    ../../haikuVM/Bytecodes.h: In function OPF_IMUL': ../../haikuVM/Bytecodes.h:1499: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_INEG': ../../haikuVM/Bytecodes.h:1508: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h:1508: error: request for member s1' in something not a structure or union ../../haikuVM/Bytecodes.h: In functionOPF_INSTANCEOF':
    ../../haikuVM/Bytecodes.h:1517: error: request for member s1' in something not a structure or union ../../haikuVM/Bytecodes.h:1517: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_INVOKEINTERFACE': ../../haikuVM/Bytecodes.h:1529: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h:1529: error: invalid type argument of ->' ../../haikuVM/Bytecodes.h:1532: warning: implicit declaration of functioninvoke'
    ../../haikuVM/Bytecodes.h: In function OPF_INVOKESHORT': ../../haikuVM/Bytecodes.h:1545: warning: implicit declaration of functionpgm_read_word'
    ../../haikuVM/Bytecodes.h: In function OPF_INVOKEVIRTUAL': ../../haikuVM/Bytecodes.h:1563: error: parse error before "code" ../../haikuVM/Bytecodes.h:1564: error:bytecode' undeclared (first use in this function)
    ../../haikuVM/Bytecodes.h:1568: error: invalid type argument of ->' ../../haikuVM/Bytecodes.h: In functionOPF_IOR':
    ../../haikuVM/Bytecodes.h:1579: error: request for member s1' in something not a structure or union ../../haikuVM/Bytecodes.h: In functionOPF_IREM':
    ../../haikuVM/Bytecodes.h:1588: error: request for member s1' in something not a structure or union ../../haikuVM/Bytecodes.h:1588: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_ISHL': ../../haikuVM/Bytecodes.h:1606: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h:1606: error: request for member s1' in something not a structure or union ../../haikuVM/Bytecodes.h: In functionOPF_ISHR':
    ../../haikuVM/Bytecodes.h:1615: error: request for member s1' in something not a structure or union ../../haikuVM/Bytecodes.h:1615: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_ISTORE': ../../haikuVM/Bytecodes.h:1624: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_ISTORE_0': ../../haikuVM/Bytecodes.h:1634: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_ISTORE_1': ../../haikuVM/Bytecodes.h:1644: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_ISTORE_2': ../../haikuVM/Bytecodes.h:1654: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_ISTORE_3': ../../haikuVM/Bytecodes.h:1664: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_ISUB': ../../haikuVM/Bytecodes.h:1674: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h:1674: error: request for member s1' in something not a structure or union ../../haikuVM/Bytecodes.h: In functionOPF_IUSHR':
    ../../haikuVM/Bytecodes.h:1683: error: request for member s1' in something not a structure or union ../../haikuVM/Bytecodes.h:1683: error: parse error before "ipop" ../../haikuVM/Bytecodes.h: In functionOPF_IXOR':
    ../../haikuVM/Bytecodes.h:1692: error: request for member s1' in something not a structure or union ../../haikuVM/Bytecodes.h: In functionOPF_L2D':
    ../../haikuVM/Bytecodes.h:1720: error: request for member d' in something not a structure or union ../../haikuVM/Bytecodes.h:1720: error: request for memberj' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_L2F': ../../haikuVM/Bytecodes.h:1731: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h:1731: error: request for member j' in something not a structure or union ../../haikuVM/Bytecodes.h: In functionOPF_L2I':
    ../../haikuVM/Bytecodes.h:1741: error: request for member s1' in something not a structure or union ../../haikuVM/Bytecodes.h:1741: error: parse error before "top" ../../haikuVM/Bytecodes.h: In functionOPF_LADD':
    ../../haikuVM/Bytecodes.h:1751: error: request for member j' in something not a structure or union ../../haikuVM/Bytecodes.h:1751: error: request for memberj' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_LALOAD': ../../haikuVM/Bytecodes.h:1761: error: parse error before "index" ../../haikuVM/Bytecodes.h:1763: error: request for memberj' in something not a structure or union
    ../../haikuVM/Bytecodes.h:1763: error: parse error before "adr"
    ../../haikuVM/Bytecodes.h:1763: error: index' undeclared (first use in this function) ../../haikuVM/Bytecodes.h: In functionOPF_LAND':
    ../../haikuVM/Bytecodes.h:1774: error: request for member j' in something not a structure or union ../../haikuVM/Bytecodes.h:1774: error: request for memberj' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_LASTORE': ../../haikuVM/Bytecodes.h:1784: error: parse error before "index" ../../haikuVM/Bytecodes.h:1788: error: request for memberj' in something not a structure or union
    ../../haikuVM/Bytecodes.h:1789: error: index' undeclared (first use in this function) ../../haikuVM/Bytecodes.h:1790: error:adr' undeclared (first use in this function)
    ../../haikuVM/Bytecodes.h:1792: error: parse error before "adr"
    ../../haikuVM/Bytecodes.h: In function OPF_LCMP': ../../haikuVM/Bytecodes.h:1802: error: parse error before "j" ../../haikuVM/Bytecodes.h:1804: error: request for memberj' in something not a structure or union
    ../../haikuVM/Bytecodes.h:1804: error: request for member j' in something not a structure or union ../../haikuVM/Bytecodes.h:1805: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h:1806: error: request for member s1' in something not a structure or union ../../haikuVM/Bytecodes.h:1807: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_LCONST_0': ../../haikuVM/Bytecodes.h:1817: error: request for memberj' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_LCONST_1': ../../haikuVM/Bytecodes.h:1828: error: request for memberj' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_LDC_C': ../../haikuVM/Bytecodes.h:1847: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_LDC_F': ../../haikuVM/Bytecodes.h:1852: error: parse error before "c" ../../haikuVM/Bytecodes.h:1855: error: request for memberfl' in something not a structure or union
    ../../haikuVM/Bytecodes.h:1855: warning: implicit declaration of function pgm_read_dword' ../../haikuVM/Bytecodes.h:1855: error: parse error before ')' token ../../haikuVM/Bytecodes.h:1855: error: parse error before ')' token ../../haikuVM/Bytecodes.h:1856: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h:1856: error: request for member f' in something not a structure or union ../../haikuVM/Bytecodes.h: In functionOPF_LDC_FX':
    ../../haikuVM/Bytecodes.h:1862: error: request for member s1' in something not a structure or union ../../haikuVM/Bytecodes.h: In functionOPF_LDC_W_F':
    ../../haikuVM/Bytecodes.h:1879: error: parse error before "c"
    ../../haikuVM/Bytecodes.h:1882: error: request for member fl' in something not a structure or union ../../haikuVM/Bytecodes.h:1882: error: parse error before ')' token ../../haikuVM/Bytecodes.h:1882: error: parse error before ')' token ../../haikuVM/Bytecodes.h:1883: error: request for members1' in something not a structure or union
    ../../haikuVM/Bytecodes.h:1883: error: request for member f' in something not a structure or union ../../haikuVM/Bytecodes.h: In functionOPF_LDC_W_FX':
    ../../haikuVM/Bytecodes.h:1889: error: request for member s1' in something not a structure or union ../../haikuVM/Bytecodes.h: In functionOPF_LDC2_W_D':
    ../../haikuVM/Bytecodes.h:1899: error: parse error before "c"
    ../../haikuVM/Bytecodes.h:1902: error: request for member dl' in something not a structure or union ../../haikuVM/Bytecodes.h:1902: error: parse error before ')' token ../../haikuVM/Bytecodes.h:1902: error: parse error before ')' token ../../haikuVM/Bytecodes.h:1903: error: request for memberd' in something not a structure or union
    ../../haikuVM/Bytecodes.h:1903: error: request for member d' in something not a structure or union ../../haikuVM/Bytecodes.h: In functionOPF_LDC2_W_DX':
    ../../haikuVM/Bytecodes.h:1910: error: request for member d' in something not a structure or union ../../haikuVM/Bytecodes.h: In functionOPF_LDIV':
    ../../haikuVM/Bytecodes.h:1944: error: request for member j' in something not a structure or union ../../haikuVM/Bytecodes.h:1944: error: request for memberj' in something not a structure or union
    ../../haikuVM/Bytecodes.h:1944: error: request for member j' in something not a structure or union ../../haikuVM/Bytecodes.h: In functionOPF_LLOAD':
    ../../haikuVM/Bytecodes.h:1957: error: request for member j' in something not a structure or union ../../haikuVM/Bytecodes.h:1957: error: request for memberj' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_LLOAD_0': ../../haikuVM/Bytecodes.h:1968: error: request for memberj' in something not a structure or union
    ../../haikuVM/Bytecodes.h:1968: error: request for member j' in something not a structure or union ../../haikuVM/Bytecodes.h: In functionOPF_LLOAD_1':
    ../../haikuVM/Bytecodes.h:1979: error: request for member j' in something not a structure or union ../../haikuVM/Bytecodes.h:1979: error: request for memberj' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_LLOAD_2': ../../haikuVM/Bytecodes.h:1990: error: request for memberj' in something not a structure or union
    ../../haikuVM/Bytecodes.h:1990: error: request for member j' in something not a structure or union ../../haikuVM/Bytecodes.h: In functionOPF_LLOAD_3':
    ../../haikuVM/Bytecodes.h:2001: error: request for member j' in something not a structure or union ../../haikuVM/Bytecodes.h:2001: error: request for memberj' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_LMUL': ../../haikuVM/Bytecodes.h:2012: error: request for memberj' in something not a structure or union
    ../../haikuVM/Bytecodes.h:2012: error: request for member j' in something not a structure or union ../../haikuVM/Bytecodes.h: In functionOPF_LNEG':
    ../../haikuVM/Bytecodes.h:2023: error: request for member j' in something not a structure or union ../../haikuVM/Bytecodes.h:2023: error: request for memberj' in something not a structure or union
    ../../haikuVM/Bytecodes.h: In function OPF_LOOKUPSWITCH': ../../haikuVM/Bytecodes.h:2034: error: parse error before "index" ../../haikuVM/Bytecodes.h:2036: error:int32_t' undeclared (first use in this function)
    ../../haikuVM/Bytecodes.h:2036: error: parse error before "npairs"
    ../../haikuVM/Bytecodes.h:2039: warning: assignment makes pointer from integer without a cast
    ../../haikuVM/Bytecodes.h:2040: error: npairs' undeclared (first use in this function) ../../haikuVM/Bytecodes.h:2042: error:index' undeclared (first use in this function)
    ../../haikuVM/Bytecodes.h:2042: error: parse error before "GETCODEDWORD2"
    ../../haikuVM/Bytecodes.h:2045: error: parse error before "else"
    ../../haikuVM/Bytecodes.h: At top level:
    ../../haikuVM/Bytecodes.h:2049: warning: type defaults to int' in declaration ofpc'
    ../../haikuVM/Bytecodes.h:2049: confused by earlier errors, bailing out
    make:
    ** [haikuC/haikuConfig.o] Error 1

    error while cross compiling

    compile:
    Created dir: /Users/carl/Development/ArduinoBlinkLed/dist
    Building jar: /Users/carl/Development/ArduinoBlinkLed/dist/ArduinoBlinkLed.jar
    jar:
    BUILD SUCCESSFUL (total time: 39 seconds)

     
    • genom2

      genom2 - 2013-02-28

      Hello Carl,

      Mac: I do have a reported success on Mac OS X Mountain Lion.
      IDE: I have absolutly no experience with netbeans.
      So, I have only some more general advices for you:

      1) What's your avr-gcc version? I have this:

      genom2@unx1:~/haikuVM/myCProject$ avr-gcc --version
      avr-gcc (GCC) 4.5.3
      Copyright (C) 2010 Free Software Foundation, Inc.
      This is free software; see the source for copying conditions.  There is NO
      warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
      

      I have a reported success with 4.3.3 and 4.5.1 as well. (On the other hand I have a reported failure with 4.6.2.)

      2) Is avr-gcc proper installed? Please, do an isolated test of avr-gcc:
      Totally independent of HaikuVM, does your avr-gcc cross-compile a simple helloworld.c program (which somewhere includes 'stdio.h' or 'stdint.h') on the commandline? Something like:

      avr-gcc -Wall -Os -std=gnu99 -mmcu=atmega32 -DF_CPU=16000000UL -MMD -MP helloworld.c
      

      3) Simple commandline test of HaikuVM.
      What are the results if you do this on the commandline:

      cd haikuVM/myCProject
      
      /home/bob/haikuVM/bin/haikuc /home/bob/haikuVM/examples/src/main/java/avr/tutorial/BlinkSimple.java
      /home/bob/haikuVM/bin/haikulink -v --Config gertboard -o BlinkSimple.hex /home/bob/haikuVM/examples/src/main/java/avr/tutorial/BlinkSimple.java 
      
       
  • Carl van Denzen

    Carl van Denzen - 2013-03-04

    Hello Genom,

    Thank you for the sample command lines, that will help me understanding what is happening and how to build it into Netbeans.
    You won't believe it, but my old iMac crashed just tonight. Now I am starting over on a Windows laptop (that I normally only use for work, it is not mine) with the newest Netbeans and Java. I will keep you informed, also if I can reanimate my iMac. I am glad I posted my build.xml here, it is my only backup.

    Carl

     
    • genom2

      genom2 - 2013-03-06

      Hello Carl,

      good to hear, that HaikuVM or at least the discussion about HaikuVM, is a life saver. ;-)
      I wish you good luck bringing back the iMac into the (HaikuVM-) game.

      I'm looking forward to your findings with HaikuVM - for better or for worse.

       
  • Carl van Denzen

    Carl van Denzen - 2013-04-03

    The iMac is really dead. I am going to try Windows. I encounter problems that might be caused by the fact that I am using a non-supported Arduino Leonardo.
    I will start a new discussion thread.

     

Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.