diff options
author | James McCoy <jamessan@jamessan.com> | 2021-08-16 00:02:22 -0400 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2021-08-16 00:02:22 -0400 |
commit | c417d573a317087886f0efab8eecf1713d71792e (patch) | |
tree | d5138585b82a327bc26f6555645270a6988db8e9 | |
parent | 84910773140b9a82bc78c577db5b2c7779cc1a36 (diff) | |
download | rneovim-c417d573a317087886f0efab8eecf1713d71792e.tar.gz rneovim-c417d573a317087886f0efab8eecf1713d71792e.tar.bz2 rneovim-c417d573a317087886f0efab8eecf1713d71792e.zip |
Revert "tests: unit: fix preprocess: pass -m32 for 32bit ABI (#11073)"
This reverts commit ed11721b6bb36042ab065b5045c8eb01115b8902.
It broke multiple 32-bit builds and isn't actually required for building
in a true x86 32-bit environment.
-rw-r--r-- | test/unit/preprocess.lua | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/test/unit/preprocess.lua b/test/unit/preprocess.lua index 3786bc2122..1073855a7d 100644 --- a/test/unit/preprocess.lua +++ b/test/unit/preprocess.lua @@ -89,10 +89,6 @@ local Gcc = { get_defines_extra_flags = {'-std=c99', '-dM', '-E'}, get_declarations_extra_flags = {'-std=c99', '-P', '-E'}, } -if ffi.abi("32bit") then - table.insert(Gcc.get_defines_extra_flags, '-m32') - table.insert(Gcc.get_declarations_extra_flags, '-m32') -end function Gcc:define(name, args, val) local define = '-D' .. name |