-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Write a pigweed version.cc instead of using the one from the shared platform files, as the shared platform adds a section to the DLL in a way incompatible with mac compilers. Bug: b/300633363 Change-Id: I95e2510f1bc36b137a5ec453ef75f9253050b87e Reviewed-on: https://pigweed-review.googlesource.com/c/pigweed/pigweed/+/170790 Reviewed-by: Armando Montanez <amontanez@google.com> Commit-Queue: David Gilhooley <dgilhooley@google.com>
- Loading branch information
1 parent
ac288ee
commit 4b9353e
Showing
3 changed files
with
34 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,5 +20,6 @@ filegroup( | |
name = "chre", | ||
srcs = [ | ||
"integration_test.cc", | ||
"version.cc", | ||
], | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
// Copyright 2023 The Pigweed Authors | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); you may not | ||
// use this file except in compliance with the License. You may obtain a copy of | ||
// the License at | ||
// | ||
// https://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
// License for the specific language governing permissions and limitations under | ||
// the License. | ||
|
||
#include "chre/platform/version.h" | ||
|
||
#ifndef CHRE_VERSION_STRING | ||
#define CHRE_VERSION_STRING "undefined" | ||
#endif // CHRE_VERSION_STRING | ||
|
||
namespace chre { | ||
|
||
// TODO(b/300633363): Use CHRE's version when it compiles on MacOS. | ||
const char* getChreVersionString() { return CHRE_VERSION_STRING; } | ||
|
||
} // namespace chre |