Advertisement
Guest User

Untitled

a guest
Jan 16th, 2017
660
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. diff --git a/platforms/flower/module.build/00-gcc.conf.py b/platforms/flower/module.build/00-gcc.conf.py
  2. index ab24053..f61a260 100644
  3. --- a/platforms/flower/module.build/00-gcc.conf.py
  4. +++ b/platforms/flower/module.build/00-gcc.conf.py
  5. @@ -77,7 +77,7 @@ class GCC(object):
  6. if config.optimizeSize:
  7. flags += ['-Os', '-ffast-math', '-fno-unsafe-math-optimizations']
  8. else:
  9. - flags += ['-O3', '-fno-tree-vectorize'] # tree vectorization causes a crash fillRect
  10. + flags += ['-O3', '-fno-tree-vectorize', '-fno-strict-aliasing', '-fno-delete-null-pointer-checks'] # tree vectorization causes a crash fillRect
  11. if config.LTO:
  12. flags += ['-flto=' + str(self.LTOJobs), '-fuse-linker-plugin', '-fno-fat-lto-objects']
  13. return flags
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement