Skip to content
This repository was archived by the owner on Jan 7, 2023. It is now read-only.

Commit dcfe679

Browse files
committed
Fix build error with intel-ipsec-mb.
Signed-off-by: Todd Malsbary <[email protected]>
1 parent 7d7ae10 commit dcfe679

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

ext/SConscript.intel-ipsec-mb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,16 @@ if env['TARGET_ARCH'] != 'x86' and env.Detect('nasm') != None:
1515
chdir = 'ext/intel-ipsec-mb')
1616

1717
sources = [
18-
'./intel-ipsec-mb/sse/sha512_one_block_sse.asm',
19-
'./intel-ipsec-mb/avx/sha512_one_block_avx.asm'
18+
'./intel-ipsec-mb/lib/sse/sha512_one_block_sse.asm',
19+
'./intel-ipsec-mb/lib/avx/sha512_one_block_avx.asm'
2020
]
2121

2222
if mbenv['PLATFORM'] == 'win32':
2323
mbenv['ASFLAGS'] = [
2424
'-fwin64',
2525
'-Xvc',
2626
'-DWIN_ABI',
27-
'-I./ext/intel-ipsec-mb/'
27+
'-I./ext/intel-ipsec-mb/lib/'
2828
]
2929
else:
3030
mbenv['ASFLAGS'] = [
@@ -33,7 +33,7 @@ if env['TARGET_ARCH'] != 'x86' and env.Detect('nasm') != None:
3333
'-gdwarf',
3434
'-DLINUX',
3535
'-D__linux__',
36-
'-I./ext/intel-ipsec-mb/'
36+
'-I./ext/intel-ipsec-mb/lib/'
3737
]
3838

3939
objs = mbenv.Object(sources)

0 commit comments

Comments
 (0)