My Marlin configs for Fabrikator Mini and CTC i3 Pro B
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

common-cxxflags.py 265B

123456789101112
  1. #
  2. # common-cxxflags.py
  3. # Convenience script to apply customizations to CPP flags
  4. #
  5. Import("env")
  6. env.Append(CXXFLAGS=[
  7. "-Wno-register"
  8. #"-Wno-incompatible-pointer-types",
  9. #"-Wno-unused-const-variable",
  10. #"-Wno-maybe-uninitialized",
  11. #"-Wno-sign-compare"
  12. ])