forked from KolibriOS/kolibrios
TinyBasic-1.0.4 added to autobuild
git-svn-id: svn://kolibrios.org@9234 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
parent
82ddf447d5
commit
27ece40648
@ -1,5 +1,5 @@
|
|||||||
KTCC_DIR=../ktcc/trunk
|
KTCC_DIR=../ktcc/trunk
|
||||||
KLIBC_DIR = ../libraries/kolibri-libc
|
KLIBC_DIR = $(KTCC_DIR)/libc.obj
|
||||||
|
|
||||||
NAME=bin/tinybas.kex
|
NAME=bin/tinybas.kex
|
||||||
|
|
||||||
|
26
programs/develop/tinybasic-1.0.4/Tupfile.lua
Normal file
26
programs/develop/tinybasic-1.0.4/Tupfile.lua
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
if tup.getconfig("NO_TCC") ~= "" then return end
|
||||||
|
|
||||||
|
TCC="kos32-tcc"
|
||||||
|
|
||||||
|
CFLAGS = "-I../ktcc/trunk/libc.obj/include -I inc"
|
||||||
|
LDFLAGS = "-nostdlib -L../ktcc/trunk/bin/lib ../ktcc/trunk/bin/lib/crt0.o"
|
||||||
|
|
||||||
|
LIBS = "-ltcc -lc.obj"
|
||||||
|
|
||||||
|
SRC={"src/common.c",
|
||||||
|
"src/errors.c",
|
||||||
|
"src/expression.c",
|
||||||
|
"src/formatter.c",
|
||||||
|
"src/generatec.c",
|
||||||
|
"src/interpret.c",
|
||||||
|
"src/options.c",
|
||||||
|
"src/parser.c",
|
||||||
|
"src/statement.c",
|
||||||
|
"src/tinybasic.c",
|
||||||
|
"src/token.c",
|
||||||
|
"src/tokeniser.c",
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
COMMAND=string.format("%s %s %s %s %s", TCC, CFLAGS, LDFLAGS, "%f -o %o", LIBS)
|
||||||
|
tup.rule(SRC, COMMAND .. tup.getconfig("KPACK_CMD"), "tinybasic")
|
@ -20,8 +20,9 @@
|
|||||||
#include "generatec.h"
|
#include "generatec.h"
|
||||||
|
|
||||||
#ifdef _KOLIBRI
|
#ifdef _KOLIBRI
|
||||||
|
#include <sys/ksys.h>
|
||||||
#define KTCC_BIN "/kolibrios/develop/tcc/tcc"
|
#define KTCC_BIN "/kolibrios/develop/tcc/tcc"
|
||||||
#define KTCC_FLAGS "%s -o %s -lck"
|
#define KTCC_FLAGS "-nobss %s -o %s -ltcc -lc.obj"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* static variables */
|
/* static variables */
|
||||||
@ -300,15 +301,12 @@ static void output_exe (char *command, char *basic_filename) {
|
|||||||
#else
|
#else
|
||||||
sprintf(final_command, KTCC_FLAGS, c_filename, exe_filename);
|
sprintf(final_command, KTCC_FLAGS, c_filename, exe_filename);
|
||||||
if(!_ksys_exec(KTCC_BIN, final_command)){
|
if(!_ksys_exec(KTCC_BIN, final_command)){
|
||||||
printf(final_command);
|
|
||||||
}else{
|
|
||||||
printf("Bad command: %s %s\n", KTCC_BIN, final_command);
|
printf("Bad command: %s %s\n", KTCC_BIN, final_command);
|
||||||
exit(0);
|
exit(0);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Top Level Routine
|
* Top Level Routine
|
||||||
*/
|
*/
|
||||||
|
Loading…
Reference in New Issue
Block a user