代码拉取完成,页面将自动刷新
# CrazyCube C++
# c
# 参考:https://community.platformio.org/t/separate-settings-for-c-and-c-versions/21647/2
# CPPFLAGS for all, CFLAGS for C, CXXFLAGS for C++
Import("env")
cpp = env["CPPFLAGS"]
# cpp += ["-Wno-write-strings"]
env.Replace(CPPFLAGS=cpp)
Import("env")
c = env["CFLAGS"]
c = [x for x in c if not "-std" in x]
c += ["-std=gnu11"]
# c += ["-Wno-implicit-function-declaration"]
env.Replace(CFLAGS=c)
cxx = env["CXXFLAGS"]
cxx = [x for x in cxx if not "-std" in x]
cxx += ["-std=gnu++17"]
# cxx += ["-Wno-narrowing"]
# cxx += ["-Wno-reorder"]
# cxx += ["-Wno-parentheses"]
# cxx += ["-Wno-sizeof-pointer-memaccess"]
# cxx += ["-Wno-cpp"]
# cxx += ["-Wno-register"]
env.Replace(CXXFLAGS=cxx)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。