You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 26, 2024. It is now read-only.
Since the --no-undefined-version flag has been flipped in lld (https://reviews.llvm.org/D135402), this repo will fail to link due to the following incorrect version script assignments:
ld.lld: error: version script assignment of 'OPENCL_1.0' to symbol 'clCreateFromD3D10Buffer' failed: symbol not defined
ld.lld: error: version script assignment of 'OPENCL_1.0' to symbol 'clCreateImageFromD3D10Resource' failed: symbol not defined
ld.lld: error: version script assignment of 'OPENCL_1.0' to symbol 'clEnqueueAcquireExternalObjects' failed: symbol not defined
ld.lld: error: version script assignment of 'OPENCL_1.0' to symbol 'clEnqueueReleaseExternalObjects' failed: symbol not defined
ld.lld: error: version script assignment of 'OPENCL_1.1' to symbol 'aclGetTargetInfo' failed: symbol not defined
ld.lld: error: version script assignment of 'OPENCL_1.1' to symbol 'aclCompilerInit' failed: symbol not defined
ld.lld: error: version script assignment of 'OPENCL_1.1' to symbol 'aclCompilerFini' failed: symbol not defined
ld.lld: error: version script assignment of 'OPENCL_1.1' to symbol 'aclReadFromMem' failed: symbol not defined
ld.lld: error: version script assignment of 'OPENCL_1.1' to symbol 'aclReadFromFile' failed: symbol not defined
ld.lld: error: version script assignment of 'OPENCL_1.1' to symbol 'aclBinaryInit' failed: symbol not defined
ld.lld: error: version script assignment of 'OPENCL_1.1' to symbol 'aclBinaryFini' failed: symbol not defined
ld.lld: error: version script assignment of 'OPENCL_1.1' to symbol 'aclWriteToMem' failed: symbol not defined
ld.lld: error: version script assignment of 'OPENCL_1.1' to symbol 'aclInsertSection' failed: symbol not defined
ld.lld: error: version script assignment of 'OPENCL_1.1' to symbol 'aclExtractSection' failed: symbol not defined
ld.lld: error: version script assignment of 'OPENCL_1.1' to symbol 'aclRemoveSection' failed: symbol not defined
ld.lld: error: version script assignment of 'OPENCL_1.1' to symbol 'aclQueryInfo' failed: symbol not defined
ld.lld: error: version script assignment of 'OPENCL_1.1' to symbol 'aclDbgAddArgument' failed: symbol not defined
ld.lld: error: version script assignment of 'OPENCL_1.1' to symbol 'aclExtractSymbol' failed: symbol not defined
ld.lld: error: version script assignment of 'OPENCL_1.1' to symbol 'aclInsertSymbol' failed: symbol not defined
ld.lld: error: version script assignment of 'OPENCL_1.1' to symbol 'aclRemoveSymbol' failed: symbol not defined
grepping these symbols indeed seems to expose them all as undefined, except for clCreateImageFromD3D10Resource which seems to have some other issue.
On a side note, I noticed that amdocl.map and amdocl.def are tracked in this repo despite having *.in generator files. It may be a good idea to remove the generated files to avoid redundancy.
Since the
--no-undefined-versionflag has been flipped in lld (https://reviews.llvm.org/D135402), this repo will fail to link due to the following incorrect version script assignments:grepping these symbols indeed seems to expose them all as undefined, except forclCreateImageFromD3D10Resourcewhich seems to have some other issue.On a side note, I noticed that
amdocl.mapandamdocl.defare tracked in this repo despite having*.ingenerator files. It may be a good idea to remove the generated files to avoid redundancy.