luajit: Remove checkdef for SSE

This isn't actually set in luajit's Makefile. Maybe it was at some
point in the past, but there's no trace of it now.

Fixes arch1t3cht/Aegisub#98 .
This commit is contained in:
arch1t3cht 2023-11-21 21:19:06 +01:00
parent 24c8144e91
commit 4576ac0638
1 changed files with 0 additions and 4 deletions

View File

@ -25,10 +25,6 @@ checkdefs = [
['LJ_ABI_PAUTH', '1', ['-D', 'PAUTH']],
]
if host_machine.cpu_family() == 'x86'
checkdefs += ['__SSE2__', '1', ['-D', 'SSE']]
endif
foreach def: checkdefs
if cc.get_define(def[0], prefix: hpre) == def[1]
dasm += def[2]