From 91fe30428d89659531e2e8a610a9f209cd728442 Mon Sep 17 00:00:00 2001 From: maxcodehack Date: Sun, 13 Dec 2020 11:50:48 +0000 Subject: [PATCH] Fix autobuild git-svn-id: svn://kolibrios.org@8391 a494cfbc-eb01-0410-851d-a64ba20cac60 --- programs/other/tte/Tupfile.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programs/other/tte/Tupfile.lua b/programs/other/tte/Tupfile.lua index aa07f1bbfc..38252e3c33 100755 --- a/programs/other/tte/Tupfile.lua +++ b/programs/other/tte/Tupfile.lua @@ -3,7 +3,7 @@ HELPERDIR = (tup.getconfig("HELPERDIR") == "") and "../.." or tup.getconfig("HEL tup.include(HELPERDIR .. "/use_gcc.lua") tup.include(HELPERDIR .. "/use_newlib.lua") -CFLAGS = CFLAGS .. " -std=c99 -DGCC_BUILD" +CFLAGS = CFLAGS .. " -Dasm=__asm__ -std=c99 -DGCC_BUILD" LDFLAGS = LDFLAGS .. " --subsystem native" compile_gcc{"tte.c", "notify.c", "getline.c"}