Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | meta-openembedded/all: adapt to UNPACKDIR changes | Alexander Kanavin | 2025-06-25 | 1 | -2/+1 |
| | | | | | | | | | | | | | Please see https://git.yoctoproject.org/poky/commit/?id=4dd321f8b83afecd962393101b2a6861275b5265 for what changes are needed, and sed commands that can be used to make them en masse. I've verified that bitbake -c patch world works with these, but did not run a world build; the majority of recipes shouldn't need further fixups, but if there are some that still fall out, they can be fixed in followups. Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||||
* | linpack: fix build with gcc-15.0.1 | mark.yang | 2025-04-01 | 2 | -0/+53 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * fix following error: linpacknew.c: In function 'dgefa': linpacknew.c:257:9: error: conflicting types for 'idamax'; have 'int(void)' 257 | int idamax(),j,k,kp1,l,nm1; | ^~~~~~ linpacknew.c:63:13: note: previous declaration of 'idamax' with type 'int(int, REAL *, int)' {aka 'int(int, double *, int)'} 63 | static int idamax (int n,REAL *dx,int incx); | ^~~~~~ linpacknew.c:272:21: error: too many arguments to function 'idamax'; expected 0, have 3 272 | l = idamax(n-k,&a[lda*k+k],1) + k; | ^~~~~~ ~~~ linpacknew.c:257:9: note: declared here 257 | int idamax(),j,k,kp1,l,nm1; | ^~~~~~ linpacknew.c:326:21: error: too many arguments to function 'idamax'; expected 0, have 3 326 | l = idamax(n-k,&a[lda*k+k],1) + k; | ^~~~~~ ~~~ linpacknew.c:257:9: note: declared here 257 | int idamax(),j,k,kp1,l,nm1; | ^~~~~~ The function was already declared as static int idamax(int n, REAL *dx, int incx); on line 63, but it was redeclared as int idamax() inside the dgefa function on line 257, causing a conflict. where functions are redeclared without parameters, causing conflicts with the original function definitions. Signed-off-by: mark.yang <mark.yang@lge.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||||
* | recipes: Fix variable assignment whitespace | Richard Purdie | 2025-01-31 | 1 | -1/+1 |
| | | | | | | | | | | | | Recipes are much more readable with whitespace around the assignment operators. Fix various assignments in meta-openembedded recipes to show this is definitely the preferred formatting. This fixes recipes with larger numbers of issues but there are just under 100 other references left to fix. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||||
* | Drop unnecessary SRC_URI md5sum from the recipes in meta-oe. | J. S. | 2024-11-05 | 1 | -1/+0 |
| | | | | | Signed-off-by: Jason Schonberg <schonm@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||||
* | recipes: Switch away from S = WORKDIR | Khem Raj | 2024-05-23 | 1 | -1/+2 |
| | | | | | | Make it dependent on UNPACKDIR instead Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||||
* | recipes: Start WORKDIR -> UNPACKDIR transition | Khem Raj | 2024-05-23 | 1 | -1/+1 |
| | | | | | | | Replace references of WORKDIR with UNPACKDIR where it makes sense to do so in preparation for changing the default value of UNPACKDIR. Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||||
* | linpack: Build both sp and dp binaries | Khem Raj | 2021-11-11 | 2 | -3/+39 |
| | | | | | | This eases out running single-precision and double-precision benchmarks. Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||||
* | linpack_1.0.bb: Add linpack benchmark | Manjukumar Matha | 2017-11-15 | 1 | -0/+20 |
The LINPACK Benchmarks are a measure of a system's floating point computing power. Introduced by Jack Dongarra, they measure how fast a computer solves a dense n by n system of linear equations Ax = b, which is a common task in engineering. https://en.wikipedia.org/wiki/LINPACK_benchmarks Signed-off-by: Manjukumar Matha <manjukumar.harthikote-matha@xilinx.com> Signed-off-by: Armin Kuster <akuster808@gmail.com> |