- Mitglied seit
- 28 Mai 2005
- Beiträge
- 72
- Punkte für Reaktionen
- 0
- Punkte
- 6
Hallo
Wie kann ich eine C+ Datei für meine AVM 7170 Compilern
Ich habe momentan nur („cygwin“) bricht bei „make toolchain“ ab.
Gibt es was besseres wie cygwin für mein Windows XP ???
Oder mach ich was falsch ?
Folgende Datei wollte ich Compilern zum test.
lpt_test.c
MFG
Thomas
Wie kann ich eine C+ Datei für meine AVM 7170 Compilern
Ich habe momentan nur („cygwin“) bricht bei „make toolchain“ ab.
Gibt es was besseres wie cygwin für mein Windows XP ???
Oder mach ich was falsch ?
Code:
SHARED_MODE not set, so defaulting to --enable-shared
GLIBC_ADDON_OPTIONS not set, so guessing addons from GLIBCTHREADS_FILENAME and G
LIBCCRYPT_FILENAME
/home/Tron/ds-0.2.9-Cross/source/crosstool-0.42/crosstool.sh: line 110: bison: c
ommand not found
crosstool: You don't have bison installed
make: *** [source/crosstool-0.42/.installed] Error 1
Folgende Datei wollte ich Compilern zum test.
lpt_test.c
Code:
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <asm/io.h>
#define base 0x378 /* printer port base address */
#define value 255 /* numeric value to send to printer port */
main(int argc, char **argv)
{
if (ioperm(base,1,1))
fprintf(stderr, "Couldn't get the port at %x\n", base), exit(1);
outb(value, base);
}
MFG
Thomas
Zuletzt bearbeitet: