2015-01-18 15:15:55 -08:00
|
|
|
import sys
|
|
|
|
|
|
|
|
Import('env')
|
|
|
|
|
|
|
|
test_env = env.Clone()
|
|
|
|
|
|
|
|
test_env.Append(LINKFLAGS = ['-nostdlib'])
|
|
|
|
test_env.Append(CPPFLAGS = ['-fno-builtin', '-nostdinc'])
|
|
|
|
test_env.Append(CPPPATH = ['#build/include'])
|
|
|
|
test_env.Append(LIBPATH = ['#build/lib/libc'], LIBS = ['c'])
|
|
|
|
|
2015-02-27 15:57:07 -08:00
|
|
|
threadtest_src = []
|
|
|
|
threadtest_src.append(env["CRTBEGIN"])
|
|
|
|
threadtest_src.append(["threadtest.c"])
|
|
|
|
threadtest_src.append(env["CRTEND"])
|
|
|
|
test_env.Program("threadtest", threadtest_src)
|
|
|
|
|
|
|
|
pthreadtest_src = []
|
|
|
|
pthreadtest_src.append(env["CRTBEGIN"])
|
2015-02-27 16:06:12 -08:00
|
|
|
pthreadtest_src.append(["pthreadtest.c"])
|
2015-02-27 15:57:07 -08:00
|
|
|
pthreadtest_src.append(env["CRTEND"])
|
|
|
|
test_env.Program("pthreadtest", pthreadtest_src)
|
2015-01-18 15:15:55 -08:00
|
|
|
|
2019-07-31 17:30:50 -04:00
|
|
|
#test_netenv = env.Clone()
|
|
|
|
#
|
|
|
|
#test_netenv.Append(LINKFLAGS = ['-nostdlib'])
|
|
|
|
#test_netenv.Append(CPPFLAGS = ['-fno-builtin', '-nostdinc'])
|
|
|
|
#test_netenv.Append(CPPPATH = ['#build/include', '#build/include/ipv4'])
|
|
|
|
#test_netenv.Append(LIBPATH = ['#build/lib/libc', '#build/lib/liblwip'],
|
|
|
|
# LIBS = ['lwip', 'c'])
|
|
|
|
#
|
|
|
|
#lwiptest_src = []
|
|
|
|
#lwiptest_src.append(env["CRTBEGIN"])
|
|
|
|
#lwiptest_src.append(["lwiptest.c"])
|
|
|
|
#lwiptest_src.append(env["CRTEND"])
|
|
|
|
#test_netenv.Program("lwiptest", lwiptest_src)
|
2015-02-03 14:07:22 -08:00
|
|
|
|