-
Notifications
You must be signed in to change notification settings - Fork 14
Update packages #297
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
base: master
Are you sure you want to change the base?
Update packages #297
Conversation
jkloetzke
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just some small things...
| --enable-utf8 \ | ||
| --enable-unicode-properties | ||
| --enable-unicode-properties \ | ||
| --with-sysroot=$(${CC} --print-sysroot) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Any chance you remember why this is needed? This is unusual because the compiler knows the sysroot by itself...
| @@ -1,4 +1,4 @@ | |||
| inherit: [make, install] | |||
| inherit: [make, install, 'basement::bits::libs'] | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Usually, the basement::bits:: classes are implementation details that should not be inherited by regular recipes. I'd suggest to use cpackage here.
| mkdir -p install | ||
| DYNAMIC=no | ||
| if basementBitsCrossCompiling; then |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it really about cross compilation or whether the library is built shared or static? In this case cpackageLibraryType (returns static/shared/both) is more appropriate...
| checkoutSCM: | ||
| scm: url | ||
| url: ${SOURCEWARE_MIRROR}/newlib/newlib-${PKG_VERSION}.tar.gz | ||
| digestSHA1: "3f2536b591598e8e5c36f20f4d969266f81ab1ed" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No description provided.