event/octeontx2: add libatomic dependency for 32-bit clang
When compiling with clang on 32-bit platforms, we are missing
copies of 64-bit atomic functions. We can solve this by linking
against libatomic for the drivers and libs which need those
atomic ops.
Fixes: f0b9982cb3
("event/octeontx2: add TIM bucket operations")
Signed-off-by: Pavan Nikhilesh <pbhagavatula@marvell.com>
This commit is contained in:
parent
e66a5a8270
commit
cea66312b4
@ -20,6 +20,11 @@ if not dpdk_conf.get('RTE_ARCH_64')
|
||||
extra_flags += ['-Wno-int-to-pointer-cast', '-Wno-pointer-to-int-cast']
|
||||
endif
|
||||
|
||||
# for clang 32-bit compiles we need libatomic for 64-bit atomic ops
|
||||
if cc.get_id() == 'clang' and dpdk_conf.get('RTE_ARCH_64') == false
|
||||
ext_deps += cc.find_library('atomic')
|
||||
endif
|
||||
|
||||
foreach flag: extra_flags
|
||||
if cc.has_argument(flag)
|
||||
cflags += flag
|
||||
|
Loading…
Reference in New Issue
Block a user