From aaf816a829584ffa9178b74bdc294fbf787f8070 Mon Sep 17 00:00:00 2001 From: Michael Marineau Date: Wed, 2 Sep 2015 19:49:28 -0700 Subject: [PATCH] profiles: re-enable debug symbols for board packages Commit f066db21 dropped generating debug symbols because at the time we were never using them. Well we want to use them now. :) --- .../coreos-overlay/profiles/coreos/amd64/generic/make.defaults | 2 +- .../coreos-overlay/profiles/coreos/arm64/generic/make.defaults | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sdk_container/src/third_party/coreos-overlay/profiles/coreos/amd64/generic/make.defaults b/sdk_container/src/third_party/coreos-overlay/profiles/coreos/amd64/generic/make.defaults index 254f8753a5..08b984e03f 100644 --- a/sdk_container/src/third_party/coreos-overlay/profiles/coreos/amd64/generic/make.defaults +++ b/sdk_container/src/third_party/coreos-overlay/profiles/coreos/amd64/generic/make.defaults @@ -1,3 +1,3 @@ # Enable optimizations for common x86_64 CPUs -CFLAGS="-O2 -pipe -mtune=generic" +CFLAGS="-O2 -pipe -mtune=generic -g" CXXFLAGS="${CFLAGS}" diff --git a/sdk_container/src/third_party/coreos-overlay/profiles/coreos/arm64/generic/make.defaults b/sdk_container/src/third_party/coreos-overlay/profiles/coreos/arm64/generic/make.defaults index 01f715c2c2..a7f431d3ca 100644 --- a/sdk_container/src/third_party/coreos-overlay/profiles/coreos/arm64/generic/make.defaults +++ b/sdk_container/src/third_party/coreos-overlay/profiles/coreos/arm64/generic/make.defaults @@ -1,2 +1,2 @@ -CFLAGS="-O2 -pipe -mtune=generic" +CFLAGS="-O2 -pipe -mtune=generic -g" CXXFLAGS="${CFLAGS}"