| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
| |
Fixes
do_populate_lic: ${COREBASE}/LICENSE is not a valid license file, please use '${COMMON_LICENSE_DIR}/MIT' for a MIT License file in LIC_FILES_CHKSUM
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This package does not provide binary files and is just to glue the
paths for proper use by Clang so disabling debug avoids the packaging
error we were seeing:
,----
| ERROR: nativesdk-clang-glue-4.0.0-r0 do_package: File
| './usr/lib/debug' cannot be packaged into 'nativesdk-clang-glue-dbg'
| because its parent directory structure does not exist. One of its
| parent directories is a symlink whose target directory is not included
| in the package.
`----
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
|
|
|
|
|
|
| |
We were mixing tabs and spaces. Now we moved to use spaces only.
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
|
|
clang differs subtly when it comes to sysroot support as compared to gcc
where the gcc driver is compiled with lot of the paths and information
clang is not, nativesdk sysroot is tuned to where gcc expects it, this
does not work well for clang, since clang looks for all
headers/libraries/compiler-runtime under same sysroot whereas gcc has
diffrent understanding of sysroot for target and where it expects gcc
headers and other tools needed for compilation. Anyway short story is
that we create symlinks into directories for include/ and usr/lib so
clang is happy and it does not affect gcc crosssdk
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|