diff options
author | PeaceSells <peacesells50@gmail.com> | 2015-07-23 18:04:50 -0600 |
---|---|---|
committer | PeaceSells <peacesells50@gmail.com> | 2015-07-24 13:12:23 -0600 |
commit | 9983ceecf25a4110793aeeae0378b2b50316f34d (patch) | |
tree | 53123a8db8e5efe0ff86e9b06654fba1a37aa326 /drivers/png | |
parent | d50ebbb441cd6e1d2227d26cc168e76c7bff2b62 (diff) |
Fixes compile bug for Android template on Windows.
Diffstat (limited to 'drivers/png')
-rw-r--r-- | drivers/png/SCsub | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/png/SCsub b/drivers/png/SCsub index c3919567bc..7b937d4dfb 100644 --- a/drivers/png/SCsub +++ b/drivers/png/SCsub @@ -27,7 +27,10 @@ if ("neon_enabled" in env and env["neon_enabled"]): if "S_compiler" in env: env_neon['CC'] = env['S_compiler'] env_neon.Append(CPPFLAGS=["-DPNG_ARM_NEON"]) - png_sources.append(env_neon.Object("#drivers/png/filter_neon.S")) + import os + # Currently .ASM filter_neon.S does not compile on NT. + if (os.name!="nt"): + png_sources.append(env_neon.Object("#drivers/png/filter_neon.S")) env.drivers_sources+=png_sources |