-
Notifications
You must be signed in to change notification settings - Fork 124
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Core: use the right ODP macro names from ODP_TIME_* family #1
Closed
Conversation
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
CUnit is a flag that will be enabled/disabled between different builds and its more convenient to see if it got enabled or disabled at the bottom of the output from configure than scrolling through all the output. Signed-off-by: Anders Roxell <anders.roxell@linaro.org> Tested-by: José Pekkarinen<jose.pekkarinen@nokia.com> Reviewed-by: José Pekkarinen<jose.pekkarinen@nokia.com>
To run a tool like lcov on the tests we need to be able to compile the tests and not run them. Signed-off-by: Anders Roxell <anders.roxell@linaro.org> Tested-by: José Pekkarinen<jose.pekkarinen@nokia.com> Reviewed-by: José Pekkarinen<jose.pekkarinen@nokia.com>
This uses libodp.pc file to do the checks. Signed-off-by: Anders Roxell <anders.roxell@linaro.org> Reviewed-and-tested-by: Sorin Vultureanu <sorin.vultureanu@enea.com>
Signed-off-by: Bogdan Pricope <Bogdan.Pricope@enea.com> Reviewed-and-tested-by: José Pekkarinen <jose.pekkarinen@nokia.com>
The latest version of ODP, have renamed the ODP_TIME macros, the new definitions is as follows: /* Time in nanoseconds */ #define ODP_TIME_USEC_IN_NS 1000ULL /**< Microsecond in nsec */ #define ODP_TIME_MSEC_IN_NS 1000000ULL /**< Millisecond in nsec */ #define ODP_TIME_SEC_IN_NS 1000000000ULL /**< Second in nsec */ This patch fix the macros name so the program can compile properly. Signed-off-by: Eduardo Silva <eduardo@monkey.io>
I'm afraid that updating only those definitions is not enough, there are other symbols whose name also changed. |
Pekkari
force-pushed
the
master
branch
2 times, most recently
from
January 27, 2016 08:59
a890fb2
to
abad7e9
Compare
This was referenced Jan 24, 2017
Note: the comment was created automatically with bugzilla2github tool Bugzilla bug ID: 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The latest version of ODP, have renamed the ODP_TIME macros, the new definitions is
as follows:
/* Time in nanoseconds /
#define ODP_TIME_USEC_IN_NS 1000ULL /< Microsecond in nsec */
#define ODP_TIME_MSEC_IN_NS 1000000ULL /< Millisecond in nsec */
#define ODP_TIME_SEC_IN_NS 1000000000ULL /*< Second in nsec */
This patch fix the macros name so the program can compile properly.
Signed-off-by: Eduardo Silva eduardo@monkey.io