2014-02-10 02:10:30 +01:00
|
|
|
Import('env')
|
|
|
|
|
|
|
|
|
|
|
|
png_sources = [
|
|
|
|
"png/example.c",
|
|
|
|
"png/png.c",
|
|
|
|
"png/pngerror.c",
|
|
|
|
"png/pngget.c",
|
|
|
|
"png/pngmem.c",
|
|
|
|
"png/pngpread.c",
|
|
|
|
"png/pngread.c",
|
|
|
|
"png/pngrio.c",
|
|
|
|
"png/pngrtran.c",
|
|
|
|
"png/pngrutil.c",
|
|
|
|
"png/pngset.c",
|
|
|
|
"png/pngtrans.c",
|
|
|
|
"png/pngwio.c",
|
|
|
|
"png/pngwrite.c",
|
|
|
|
"png/pngwtran.c",
|
|
|
|
"png/pngwutil.c",
|
|
|
|
"png/resource_saver_png.cpp",
|
|
|
|
"png/image_loader_png.cpp"
|
|
|
|
]
|
|
|
|
|
2015-12-23 12:27:00 +01:00
|
|
|
if ("neon_enabled" in env and env["neon_enabled"]):
|
2015-12-23 13:11:46 +01:00
|
|
|
env.Append(CPPFLAGS=["-DPNG_ARM_NEON_OPT=2"])
|
2014-02-10 02:10:30 +01:00
|
|
|
env_neon = env.Clone();
|
|
|
|
if "S_compiler" in env:
|
|
|
|
env_neon['CC'] = env['S_compiler']
|
2015-12-23 12:27:00 +01:00
|
|
|
#env_neon.Append(CPPFLAGS=["-DPNG_ARM_NEON"])
|
2015-07-24 02:04:50 +02:00
|
|
|
import os
|
|
|
|
# Currently .ASM filter_neon.S does not compile on NT.
|
|
|
|
if (os.name!="nt"):
|
2015-12-21 09:20:54 +01:00
|
|
|
png_sources.append(env_neon.Object("#drivers/png/arm/arm_init.c"))
|
|
|
|
png_sources.append(env_neon.Object("#drivers/png/arm/filter_neon.S"))
|
2015-12-23 12:27:00 +01:00
|
|
|
else:
|
|
|
|
env.Append(CPPFLAGS=["-DPNG_ARM_NEON_OPT=0"])
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
env.drivers_sources+=png_sources
|
|
|
|
|
|
|
|
#env.add_source_files(env.drivers_sources, png_sources)
|
|
|
|
|
|
|
|
Export('env')
|