2009-04-18 16:31:35 +04:00
|
|
|
#
|
|
|
|
# Tiny C Compiler Makefile - tests
|
|
|
|
#
|
|
|
|
|
2015-07-29 23:53:57 +03:00
|
|
|
TOP = ..
|
2012-06-27 21:04:27 +04:00
|
|
|
include $(TOP)/Makefile
|
2016-10-01 22:06:53 +03:00
|
|
|
VPATH = $(TOPSRC)/tests $(TOPSRC) $(TOP)
|
2017-04-25 22:01:54 +03:00
|
|
|
CFLAGS := $(filter-out -W% -g% -O%,$(CFLAGS)) -I$(TOPSRC) $(LDFLAGS)
|
2014-09-07 19:05:58 +04:00
|
|
|
|
2009-04-18 16:31:35 +04:00
|
|
|
# what tests to run
|
2013-02-05 17:27:38 +04:00
|
|
|
TESTS = \
|
2013-02-10 03:38:40 +04:00
|
|
|
hello-exe \
|
|
|
|
hello-run \
|
2013-02-05 17:27:38 +04:00
|
|
|
libtest \
|
|
|
|
test3 \
|
2016-12-19 00:05:42 +03:00
|
|
|
memtest \
|
2016-12-15 19:04:07 +03:00
|
|
|
dlltest \
|
2013-04-18 20:27:34 +04:00
|
|
|
abitest \
|
2013-04-27 23:39:34 +04:00
|
|
|
vla_test-run \
|
2017-02-25 14:49:47 +03:00
|
|
|
cross-test \
|
2016-10-01 22:06:33 +03:00
|
|
|
tests2-dir \
|
|
|
|
pp-dir
|
2014-01-21 16:25:14 +04:00
|
|
|
|
|
|
|
BTESTS = test1b test3b btest
|
|
|
|
|
2013-02-05 17:27:38 +04:00
|
|
|
# test4 -- problem with -static
|
2016-10-02 02:38:22 +03:00
|
|
|
# asmtest / asmtest2 -- minor differences with gcc
|
2013-02-05 17:27:38 +04:00
|
|
|
# btest -- works on i386 (including win32)
|
2009-04-18 16:31:35 +04:00
|
|
|
|
2012-11-21 09:47:23 +04:00
|
|
|
# bounds-checking is supported only on i386
|
|
|
|
ifneq ($(ARCH),i386)
|
2014-01-21 16:25:14 +04:00
|
|
|
TESTS := $(filter-out $(BTESTS),$(TESTS))
|
2012-11-21 09:47:23 +04:00
|
|
|
endif
|
2013-02-05 17:27:38 +04:00
|
|
|
ifdef CONFIG_WIN32
|
tccpp: fix issues, add tests
* fix some macro expansion issues
* add some pp tests in tests/pp
* improved tcc -E output for better diff'ability
* remove -dD feature (quirky code, exotic feature,
didn't work well)
Based partially on ideas / researches from PipCet
Some issues remain with VA_ARGS macros (if used in a
rather tricky way).
Also, to keep it simple, the pp doesn't automtically
add any extra spaces to separate tokens which otherwise
would form wrong tokens if re-read from tcc -E output
(such as '+' '=') GCC does that, other compilers don't.
* cleanups
- #line 01 "file" / # 01 "file" processing
- #pragma comment(lib,"foo")
- tcc -E: forward some pragmas to output (pack, comment(lib))
- fix macro parameter list parsing mess from
a3fc54345949535524d01319e1ca6378b7c2c201
a715d7143d9d17da17e67fec6af1c01409a71a31
(some coffee might help, next time ;)
- introduce TOK_PPSTR - to have character constants as
written in the file (similar to TOK_PPNUM)
- allow '\' appear in macros
- new functions begin/end_macro to:
- fix switching macro levels during expansion
- allow unget_tok to unget more than one tok
- slight speedup by using bitflags in isidnum_table
Also:
- x86_64.c : fix decl after statements
- i386-gen,c : fix a vstack leak with VLA on windows
- configure/Makefile : build on windows (MSYS) was broken
- tcc_warning: fflush stderr to keep output order (win32)
2015-05-09 15:29:39 +03:00
|
|
|
TESTS := $(filter-out $(BTESTS),$(TESTS))
|
2012-06-27 21:04:27 +04:00
|
|
|
endif
|
2017-04-25 22:01:54 +03:00
|
|
|
ifdef CONFIG_OSX # -run only
|
|
|
|
TESTS := hello-run libtest tests2-dir pp-dir
|
2012-06-27 21:04:27 +04:00
|
|
|
endif
|
2017-02-20 20:58:08 +03:00
|
|
|
ifeq (,$(filter arm64 i386 x86_64,$(ARCH)))
|
2013-04-27 23:39:34 +04:00
|
|
|
TESTS := $(filter-out vla_test-run,$(TESTS))
|
|
|
|
endif
|
2015-03-04 09:52:47 +03:00
|
|
|
ifeq ($(CONFIG_arm_eabi),yes)
|
|
|
|
TESTS := $(filter-out test3,$(TESTS))
|
|
|
|
endif
|
2017-02-20 20:58:08 +03:00
|
|
|
ifeq (,$(filter i386 x86_64,$(ARCH)))
|
2016-12-15 19:04:07 +03:00
|
|
|
TESTS := $(filter-out dlltest,$(TESTS))
|
|
|
|
endif
|
2017-05-13 09:59:06 +03:00
|
|
|
ifndef CONFIG_cross
|
2017-02-25 14:49:47 +03:00
|
|
|
TESTS := $(filter-out cross-%,$(TESTS))
|
|
|
|
endif
|
2009-04-18 16:31:35 +04:00
|
|
|
|
2012-06-27 21:04:27 +04:00
|
|
|
ifdef CONFIG_WIN32
|
2017-04-25 22:01:54 +03:00
|
|
|
SEP = $(if $(findstring :\,$(PATH)),;,:)
|
|
|
|
PATH := $(CURDIR)/$(TOP)$(SEP)$(PATH) # for libtcc_test to find libtcc.dll
|
2011-05-14 18:21:45 +04:00
|
|
|
endif
|
|
|
|
|
2017-02-25 14:49:47 +03:00
|
|
|
RUN_TCC = $(NATIVE_DEFINES) -DONE_SOURCE -run $(TOPSRC)/tcc.c $(TCCFLAGS)
|
2016-10-01 22:06:33 +03:00
|
|
|
DISAS = objdump -d
|
2017-04-25 22:01:54 +03:00
|
|
|
DUMPTCC = (set -x; $(TOP)/tcc -vv; ldd $(TOP)/tcc; exit 1)
|
2016-10-01 22:06:33 +03:00
|
|
|
|
|
|
|
all test : clean-s $(TESTS)
|
2013-02-05 17:27:38 +04:00
|
|
|
|
2013-02-10 03:38:40 +04:00
|
|
|
hello-exe: ../examples/ex1.c
|
|
|
|
@echo ------------ $@ ------------
|
2017-04-25 22:01:54 +03:00
|
|
|
$(TCC) $< -o hello$(EXESUF) && ./hello$(EXESUF) || $(DUMPTCC)
|
2013-02-10 03:38:40 +04:00
|
|
|
|
|
|
|
hello-run: ../examples/ex1.c
|
2013-02-05 17:27:38 +04:00
|
|
|
@echo ------------ $@ ------------
|
2017-04-25 22:01:54 +03:00
|
|
|
$(TCC) -run $< || $(DUMPTCC)
|
2013-02-05 17:27:38 +04:00
|
|
|
|
2016-10-01 22:06:33 +03:00
|
|
|
libtest: libtcc_test$(EXESUF)
|
2009-04-18 16:31:35 +04:00
|
|
|
@echo ------------ $@ ------------
|
tccpp: fix issues, add tests
* fix some macro expansion issues
* add some pp tests in tests/pp
* improved tcc -E output for better diff'ability
* remove -dD feature (quirky code, exotic feature,
didn't work well)
Based partially on ideas / researches from PipCet
Some issues remain with VA_ARGS macros (if used in a
rather tricky way).
Also, to keep it simple, the pp doesn't automtically
add any extra spaces to separate tokens which otherwise
would form wrong tokens if re-read from tcc -E output
(such as '+' '=') GCC does that, other compilers don't.
* cleanups
- #line 01 "file" / # 01 "file" processing
- #pragma comment(lib,"foo")
- tcc -E: forward some pragmas to output (pack, comment(lib))
- fix macro parameter list parsing mess from
a3fc54345949535524d01319e1ca6378b7c2c201
a715d7143d9d17da17e67fec6af1c01409a71a31
(some coffee might help, next time ;)
- introduce TOK_PPSTR - to have character constants as
written in the file (similar to TOK_PPNUM)
- allow '\' appear in macros
- new functions begin/end_macro to:
- fix switching macro levels during expansion
- allow unget_tok to unget more than one tok
- slight speedup by using bitflags in isidnum_table
Also:
- x86_64.c : fix decl after statements
- i386-gen,c : fix a vstack leak with VLA on windows
- configure/Makefile : build on windows (MSYS) was broken
- tcc_warning: fflush stderr to keep output order (win32)
2015-05-09 15:29:39 +03:00
|
|
|
./libtcc_test$(EXESUF) $(TCCFLAGS)
|
2009-04-18 16:31:35 +04:00
|
|
|
|
2016-10-01 22:06:33 +03:00
|
|
|
libtcc_test$(EXESUF): libtcc_test.c $(LIBTCC)
|
|
|
|
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
|
2009-04-18 16:31:35 +04:00
|
|
|
|
tccpp: fix issues, add tests
* fix some macro expansion issues
* add some pp tests in tests/pp
* improved tcc -E output for better diff'ability
* remove -dD feature (quirky code, exotic feature,
didn't work well)
Based partially on ideas / researches from PipCet
Some issues remain with VA_ARGS macros (if used in a
rather tricky way).
Also, to keep it simple, the pp doesn't automtically
add any extra spaces to separate tokens which otherwise
would form wrong tokens if re-read from tcc -E output
(such as '+' '=') GCC does that, other compilers don't.
* cleanups
- #line 01 "file" / # 01 "file" processing
- #pragma comment(lib,"foo")
- tcc -E: forward some pragmas to output (pack, comment(lib))
- fix macro parameter list parsing mess from
a3fc54345949535524d01319e1ca6378b7c2c201
a715d7143d9d17da17e67fec6af1c01409a71a31
(some coffee might help, next time ;)
- introduce TOK_PPSTR - to have character constants as
written in the file (similar to TOK_PPNUM)
- allow '\' appear in macros
- new functions begin/end_macro to:
- fix switching macro levels during expansion
- allow unget_tok to unget more than one tok
- slight speedup by using bitflags in isidnum_table
Also:
- x86_64.c : fix decl after statements
- i386-gen,c : fix a vstack leak with VLA on windows
- configure/Makefile : build on windows (MSYS) was broken
- tcc_warning: fflush stderr to keep output order (win32)
2015-05-09 15:29:39 +03:00
|
|
|
%-dir:
|
2013-02-05 17:27:38 +04:00
|
|
|
@echo ------------ $@ ------------
|
tccpp: fix issues, add tests
* fix some macro expansion issues
* add some pp tests in tests/pp
* improved tcc -E output for better diff'ability
* remove -dD feature (quirky code, exotic feature,
didn't work well)
Based partially on ideas / researches from PipCet
Some issues remain with VA_ARGS macros (if used in a
rather tricky way).
Also, to keep it simple, the pp doesn't automtically
add any extra spaces to separate tokens which otherwise
would form wrong tokens if re-read from tcc -E output
(such as '+' '=') GCC does that, other compilers don't.
* cleanups
- #line 01 "file" / # 01 "file" processing
- #pragma comment(lib,"foo")
- tcc -E: forward some pragmas to output (pack, comment(lib))
- fix macro parameter list parsing mess from
a3fc54345949535524d01319e1ca6378b7c2c201
a715d7143d9d17da17e67fec6af1c01409a71a31
(some coffee might help, next time ;)
- introduce TOK_PPSTR - to have character constants as
written in the file (similar to TOK_PPNUM)
- allow '\' appear in macros
- new functions begin/end_macro to:
- fix switching macro levels during expansion
- allow unget_tok to unget more than one tok
- slight speedup by using bitflags in isidnum_table
Also:
- x86_64.c : fix decl after statements
- i386-gen,c : fix a vstack leak with VLA on windows
- configure/Makefile : build on windows (MSYS) was broken
- tcc_warning: fflush stderr to keep output order (win32)
2015-05-09 15:29:39 +03:00
|
|
|
$(MAKE) -k -C $*
|
2014-01-06 22:56:26 +04:00
|
|
|
|
2014-03-09 18:54:48 +04:00
|
|
|
# test.ref - generate using cc
|
2009-04-18 16:31:35 +04:00
|
|
|
test.ref: tcctest.c
|
2016-10-01 22:06:33 +03:00
|
|
|
$(CC) -o tcctest.gcc $< $(NATIVE_DEFINES) $(CFLAGS) -w -O0 -std=gnu99 -fno-omit-frame-pointer
|
|
|
|
./tcctest.gcc > $@
|
2009-04-18 16:31:35 +04:00
|
|
|
|
|
|
|
# auto test
|
2014-01-21 16:25:14 +04:00
|
|
|
test1 test1b: tcctest.c test.ref
|
2009-04-18 16:31:35 +04:00
|
|
|
@echo ------------ $@ ------------
|
2014-01-06 22:56:26 +04:00
|
|
|
$(TCC) -run $< > test.out1
|
2014-01-21 16:25:14 +04:00
|
|
|
@diff -u test.ref test.out1 && echo "Auto Test OK"
|
2009-04-18 16:31:35 +04:00
|
|
|
|
|
|
|
# iterated test2 (compile tcc then compile tcctest.c !)
|
2014-01-21 16:25:14 +04:00
|
|
|
test2 test2b: tcctest.c test.ref
|
2009-04-18 16:31:35 +04:00
|
|
|
@echo ------------ $@ ------------
|
2014-01-06 22:56:26 +04:00
|
|
|
$(TCC) $(RUN_TCC) $(RUN_TCC) -run $< > test.out2
|
2014-01-21 16:25:14 +04:00
|
|
|
@diff -u test.ref test.out2 && echo "Auto Test2 OK"
|
2009-04-18 16:31:35 +04:00
|
|
|
|
|
|
|
# iterated test3 (compile tcc then compile tcc then compile tcctest.c !)
|
2014-01-21 16:25:14 +04:00
|
|
|
test3 test3b: tcctest.c test.ref
|
2009-04-18 16:31:35 +04:00
|
|
|
@echo ------------ $@ ------------
|
2014-01-06 22:56:26 +04:00
|
|
|
$(TCC) $(RUN_TCC) $(RUN_TCC) $(RUN_TCC) -run $< > test.out3
|
2014-01-21 16:25:14 +04:00
|
|
|
@diff -u test.ref test.out3 && echo "Auto Test3 OK"
|
|
|
|
|
|
|
|
test%b : TCCFLAGS += -b
|
2009-04-18 16:31:35 +04:00
|
|
|
|
|
|
|
# binary output test
|
2014-01-06 22:56:26 +04:00
|
|
|
test4: tcctest.c test.ref
|
2009-04-18 16:31:35 +04:00
|
|
|
@echo ------------ $@ ------------
|
|
|
|
# object + link output
|
2014-01-06 22:56:26 +04:00
|
|
|
$(TCC) -c -o tcctest3.o $<
|
2009-04-18 16:31:35 +04:00
|
|
|
$(TCC) -o tcctest3 tcctest3.o
|
|
|
|
./tcctest3 > test3.out
|
|
|
|
@if diff -u test.ref test3.out ; then echo "Object Auto Test OK"; fi
|
2013-02-05 17:27:38 +04:00
|
|
|
# dynamic output
|
2014-01-06 22:56:26 +04:00
|
|
|
$(TCC) -o tcctest1 $<
|
2013-02-05 17:27:38 +04:00
|
|
|
./tcctest1 > test1.out
|
|
|
|
@if diff -u test.ref test1.out ; then echo "Dynamic Auto Test OK"; fi
|
2009-04-18 16:31:35 +04:00
|
|
|
# dynamic output + bound check
|
2014-01-06 22:56:26 +04:00
|
|
|
$(TCC) -b -o tcctest4 $<
|
2009-04-18 16:31:35 +04:00
|
|
|
./tcctest4 > test4.out
|
|
|
|
@if diff -u test.ref test4.out ; then echo "BCheck Auto Test OK"; fi
|
2013-02-05 17:27:38 +04:00
|
|
|
# static output
|
2014-01-06 22:56:26 +04:00
|
|
|
$(TCC) -static -o tcctest2 $<
|
2013-02-05 17:27:38 +04:00
|
|
|
./tcctest2 > test2.out
|
|
|
|
@if diff -u test.ref test2.out ; then echo "Static Auto Test OK"; fi
|
2009-04-18 16:31:35 +04:00
|
|
|
|
2016-12-15 19:04:07 +03:00
|
|
|
# use tcc to create libtcc.so/.dll and the tcc(.exe) frontend and run them
|
|
|
|
dlltest:
|
|
|
|
@echo ------------ $@ ------------
|
2016-12-20 20:05:33 +03:00
|
|
|
$(TCC) -DONE_SOURCE $(NATIVE_DEFINES) -DLIBTCC_AS_DLL $(TOPSRC)/libtcc.c $(LIBS) -shared -o libtcc2$(DLLSUF)
|
|
|
|
$(TCC) $(NATIVE_DEFINES) $(TOPSRC)/tcc.c libtcc2$(DLLSUF) $(LIBS) -Wl,-rpath=. -o tcc2$(EXESUF)
|
|
|
|
./tcc2$(EXESUF) $(TCCFLAGS) $(RUN_TCC) -run $(TOPSRC)/examples/ex1.c
|
2016-12-15 19:04:07 +03:00
|
|
|
ifndef CONFIG_WIN32
|
|
|
|
@echo ------------ $@ with PIC ------------
|
2016-12-20 20:05:33 +03:00
|
|
|
$(CC) $(CFLAGS) -fPIC -DONE_SOURCE $(NATIVE_DEFINES) -DLIBTCC_AS_DLL -c $(TOPSRC)/libtcc.c
|
2016-12-15 19:04:07 +03:00
|
|
|
$(TCC) libtcc.o $(LIBS) -shared -o libtcc2$(DLLSUF)
|
2016-12-20 20:05:33 +03:00
|
|
|
$(TCC) $(NATIVE_DEFINES) $(TOPSRC)/tcc.c libtcc2$(DLLSUF) $(LIBS) -Wl,-rpath=. -o tcc2$(EXESUF)
|
|
|
|
./tcc2$(EXESUF) $(TCCFLAGS) $(RUN_TCC) -run $(TOPSRC)/examples/ex1.c
|
2016-12-15 19:04:07 +03:00
|
|
|
endif
|
|
|
|
@rm tcc2$(EXESUF) libtcc2$(DLLSUF)
|
|
|
|
|
2016-12-19 00:05:42 +03:00
|
|
|
memtest:
|
|
|
|
@echo ------------ $@ ------------
|
2016-12-20 20:05:33 +03:00
|
|
|
$(CC) $(CFLAGS) $(NATIVE_DEFINES) -DONE_SOURCE -DMEM_DEBUG=2 $(TOPSRC)/tcc.c $(LIBS) -o memtest-tcc$(EXESUF)
|
|
|
|
./memtest-tcc$(EXESUF) $(TCCFLAGS) $(NATIVE_DEFINES) -DONE_SOURCE $(TOPSRC)/tcc.c $(LIBS)
|
|
|
|
./memtest-tcc$(EXESUF) $(TCCFLAGS) $(NATIVE_DEFINES) -DONE_SOURCE -run $(TOPSRC)/tcc.c $(TCCFLAGS) $(TOPSRC)/tests/tcctest.c
|
2016-12-19 00:05:42 +03:00
|
|
|
|
2016-12-15 19:04:07 +03:00
|
|
|
|
2009-04-18 16:31:35 +04:00
|
|
|
# memory and bound check auto test
|
2009-07-19 00:06:54 +04:00
|
|
|
BOUNDS_OK = 1 4 8 10 14
|
|
|
|
BOUNDS_FAIL= 2 5 7 9 11 12 13 15
|
2009-04-18 16:31:35 +04:00
|
|
|
|
2013-02-05 17:27:38 +04:00
|
|
|
btest: boundtest.c
|
2009-04-18 16:31:35 +04:00
|
|
|
@echo ------------ $@ ------------
|
|
|
|
@for i in $(BOUNDS_OK); do \
|
2009-07-06 23:10:14 +04:00
|
|
|
echo ; echo --- boundtest $$i ---; \
|
2014-01-21 16:25:14 +04:00
|
|
|
if $(TCC) -b -run $< $$i ; then \
|
2014-04-07 15:31:00 +04:00
|
|
|
echo succeeded as expected; \
|
2009-04-18 16:31:35 +04:00
|
|
|
else\
|
|
|
|
echo Failed positive test $$i ; exit 1 ; \
|
|
|
|
fi ;\
|
|
|
|
done ;\
|
|
|
|
for i in $(BOUNDS_FAIL); do \
|
2009-07-06 23:10:14 +04:00
|
|
|
echo ; echo --- boundtest $$i ---; \
|
2014-01-21 16:25:14 +04:00
|
|
|
if $(TCC) -b -run $< $$i ; then \
|
2009-04-18 16:31:35 +04:00
|
|
|
echo Failed negative test $$i ; exit 1 ;\
|
|
|
|
else\
|
2009-07-06 23:10:14 +04:00
|
|
|
echo failed as expected; \
|
2009-04-18 16:31:35 +04:00
|
|
|
fi ;\
|
|
|
|
done ;\
|
2009-07-06 23:10:14 +04:00
|
|
|
echo; echo Bound test OK
|
2009-04-18 16:31:35 +04:00
|
|
|
|
|
|
|
# speed test
|
2009-07-06 23:11:19 +04:00
|
|
|
speedtest: ex2 ex3
|
2009-04-18 16:31:35 +04:00
|
|
|
@echo ------------ $@ ------------
|
|
|
|
time ./ex2 1238 2 3 4 10 13 4
|
2016-10-01 22:06:53 +03:00
|
|
|
time $(TCC) -run $(TOPSRC)/examples/ex2.c 1238 2 3 4 10 13 4
|
2009-04-18 16:31:35 +04:00
|
|
|
time ./ex3 35
|
2016-10-01 22:06:53 +03:00
|
|
|
time $(TCC) -run $(TOPSRC)/examples/ex3.c 35
|
2009-04-18 16:31:35 +04:00
|
|
|
|
2014-01-06 22:56:26 +04:00
|
|
|
weaktest: tcctest.c test.ref
|
2016-10-01 22:06:33 +03:00
|
|
|
$(TCC) -c $< -o weaktest.tcc.o
|
2017-02-13 21:03:29 +03:00
|
|
|
$(CC) -c $< -o weaktest.gcc.o $(NATIVE_DEFINES) $(CFLAGS) -w -O0 -std=gnu99 -fno-omit-frame-pointer
|
2011-02-01 20:41:03 +03:00
|
|
|
objdump -t weaktest.tcc.o | grep ' w ' | sed -e 's/.* \([a-zA-Z0-9_]*\)$$/\1/' | LC_ALL=C sort > weaktest.tcc.o.txt
|
2016-10-01 22:06:33 +03:00
|
|
|
objdump -t weaktest.gcc.o | grep ' w ' | sed -e 's/.* \([a-zA-Z0-9_]*\)$$/\1/' | LC_ALL=C sort > weaktest.gcc.o.txt
|
|
|
|
diff weaktest.gcc.o.txt weaktest.tcc.o.txt && echo "Weak Auto Test OK"
|
2011-02-01 20:41:03 +03:00
|
|
|
|
2016-10-01 22:06:53 +03:00
|
|
|
ex%: $(TOPSRC)/examples/ex%.c
|
2016-10-01 22:06:33 +03:00
|
|
|
$(CC) -o $@ $< $(CFLAGS)
|
2009-04-18 16:31:35 +04:00
|
|
|
|
|
|
|
# tiny assembler testing
|
|
|
|
asmtest.ref: asmtest.S
|
2016-05-11 19:58:14 +03:00
|
|
|
$(CC) -Wa,-W -o asmtest.ref.o -c asmtest.S
|
2009-07-06 23:11:19 +04:00
|
|
|
objdump -D asmtest.ref.o > asmtest.ref
|
2009-04-18 16:31:35 +04:00
|
|
|
|
2016-10-02 02:38:22 +03:00
|
|
|
asmtest asmtest2: asmtest.ref
|
2009-04-18 16:31:35 +04:00
|
|
|
@echo ------------ $@ ------------
|
2016-10-02 02:38:22 +03:00
|
|
|
$(TCC) $(MAYBE_RUN_TCC) -c asmtest.S
|
2009-07-06 23:11:19 +04:00
|
|
|
objdump -D asmtest.o > asmtest.out
|
2009-04-18 16:31:35 +04:00
|
|
|
@if diff -u --ignore-matching-lines="file format" asmtest.ref asmtest.out ; then echo "ASM Auto Test OK"; fi
|
|
|
|
|
2016-10-02 02:38:22 +03:00
|
|
|
# test assembler with tcc compiled by itself
|
|
|
|
asmtest2: MAYBE_RUN_TCC = $(RUN_TCC)
|
|
|
|
|
2013-04-18 00:51:51 +04:00
|
|
|
# Check that code generated by libtcc is binary compatible with
|
|
|
|
# that generated by CC
|
2016-10-01 22:06:33 +03:00
|
|
|
abitest-cc$(EXESUF): abitest.c $(LIBTCC)
|
|
|
|
$(CC) -o $@ $^ $(CFLAGS) $(LIBS) -w
|
2013-04-18 20:27:34 +04:00
|
|
|
|
2014-01-21 16:25:14 +04:00
|
|
|
abitest-tcc$(EXESUF): abitest.c libtcc.c
|
2016-10-01 22:06:33 +03:00
|
|
|
$(TCC) -o $@ $^ $(NATIVE_DEFINES) -DONE_SOURCE $(LIBS)
|
2013-04-18 00:51:51 +04:00
|
|
|
|
2015-03-04 09:52:47 +03:00
|
|
|
ABITESTS := abitest-cc$(EXESUF)
|
|
|
|
ifneq ($(CONFIG_arm_eabi),yes) # not ARM soft-float
|
2016-10-01 22:06:33 +03:00
|
|
|
ABITESTS += abitest-tcc$(EXESUF)
|
2015-03-04 09:52:47 +03:00
|
|
|
endif
|
|
|
|
|
|
|
|
abitest: $(ABITESTS)
|
2013-04-18 00:51:51 +04:00
|
|
|
@echo ------------ $@ ------------
|
tccpp: fix issues, add tests
* fix some macro expansion issues
* add some pp tests in tests/pp
* improved tcc -E output for better diff'ability
* remove -dD feature (quirky code, exotic feature,
didn't work well)
Based partially on ideas / researches from PipCet
Some issues remain with VA_ARGS macros (if used in a
rather tricky way).
Also, to keep it simple, the pp doesn't automtically
add any extra spaces to separate tokens which otherwise
would form wrong tokens if re-read from tcc -E output
(such as '+' '=') GCC does that, other compilers don't.
* cleanups
- #line 01 "file" / # 01 "file" processing
- #pragma comment(lib,"foo")
- tcc -E: forward some pragmas to output (pack, comment(lib))
- fix macro parameter list parsing mess from
a3fc54345949535524d01319e1ca6378b7c2c201
a715d7143d9d17da17e67fec6af1c01409a71a31
(some coffee might help, next time ;)
- introduce TOK_PPSTR - to have character constants as
written in the file (similar to TOK_PPNUM)
- allow '\' appear in macros
- new functions begin/end_macro to:
- fix switching macro levels during expansion
- allow unget_tok to unget more than one tok
- slight speedup by using bitflags in isidnum_table
Also:
- x86_64.c : fix decl after statements
- i386-gen,c : fix a vstack leak with VLA on windows
- configure/Makefile : build on windows (MSYS) was broken
- tcc_warning: fflush stderr to keep output order (win32)
2015-05-09 15:29:39 +03:00
|
|
|
./abitest-cc$(EXESUF) $(TCCFLAGS)
|
2016-10-01 22:06:33 +03:00
|
|
|
ifneq ($(CONFIG_arm_eabi),yes) # not ARM soft-float
|
|
|
|
./abitest-tcc$(EXESUF) $(TCCFLAGS)
|
|
|
|
endif
|
2013-04-18 00:51:51 +04:00
|
|
|
|
2013-04-27 23:39:34 +04:00
|
|
|
vla_test$(EXESUF): vla_test.c
|
2016-10-01 22:06:33 +03:00
|
|
|
$(TCC) -o $@ $^
|
|
|
|
|
2013-04-27 23:39:34 +04:00
|
|
|
vla_test-run: vla_test$(EXESUF)
|
|
|
|
@echo ------------ $@ ------------
|
|
|
|
./vla_test$(EXESUF)
|
|
|
|
|
2017-02-25 14:49:47 +03:00
|
|
|
cross-test :
|
|
|
|
@echo ------------ $@ ------------
|
|
|
|
$(TOP)/i386-tcc$(EXESUF) $(TCCFLAGS-unx) -c $(TOPSRC)/examples/ex3.c && echo "ok"
|
|
|
|
$(TOP)/x86_64-tcc$(EXESUF) $(TCCFLAGS-unx) -c $(TOPSRC)/examples/ex3.c && echo "ok"
|
|
|
|
$(TOP)/arm-tcc$(EXESUF) $(TCCFLAGS-unx) -c $(TOPSRC)/examples/ex3.c && echo "ok"
|
|
|
|
$(TOP)/c67-tcc$(EXESUF) $(TCCFLAGS-unx) -c $(TOPSRC)/examples/ex3.c && echo "ok"
|
|
|
|
$(TOP)/i386-win32-tcc$(EXESUF) $(TCCFLAGS-win) $(TOPSRC)/win32/examples/hello_win.c && echo "ok"
|
|
|
|
$(TOP)/x86_64-win32-tcc$(EXESUF) $(TCCFLAGS-win) $(TOPSRC)/win32/examples/hello_win.c && echo "ok"
|
|
|
|
$(TOP)/arm-wince-tcc$(EXESUF) $(TCCFLAGS-win) -c $(TOPSRC)/win32/examples/hello_win.c && echo "ok"
|
|
|
|
|
2009-04-18 16:31:35 +04:00
|
|
|
# targets for development
|
|
|
|
%.bin: %.c tcc
|
|
|
|
$(TCC) -g -o $@ $<
|
|
|
|
$(DISAS) $@
|
|
|
|
|
|
|
|
instr: instr.o
|
|
|
|
objdump -d instr.o
|
|
|
|
|
|
|
|
instr.o: instr.S
|
|
|
|
$(CC) -o $@ -c $< -O2 -Wall -g
|
|
|
|
|
|
|
|
cache: tcc_g
|
|
|
|
cachegrind ./tcc_g -o /tmp/linpack -lm bench/linpack.c
|
|
|
|
vg_annotate tcc.c > /tmp/linpack.cache.log
|
|
|
|
|
|
|
|
# clean
|
|
|
|
clean:
|
2017-04-25 22:01:54 +03:00
|
|
|
rm -f *~ *.o *.a *.bin *.i *.ref *.out *.out? *.out?b *.cc *.gcc
|
|
|
|
rm -f *-cc *-gcc *-tcc *.exe hello libtcc_test vla_test tcctest[1234]
|
|
|
|
rm -f ex? tcc_g weaktest.*.txt *.def
|
|
|
|
@$(MAKE) -C tests2 $@
|
|
|
|
@$(MAKE) -C pp $@
|
2016-10-01 22:06:33 +03:00
|
|
|
|
|
|
|
# silent clean, used before running tests
|
|
|
|
clean-s:
|
|
|
|
@$(MAKE) -s --no-print-directory clean
|