aboutsummaryrefslogtreecommitdiff
path: root/test/unit/preprocess.lua
diff options
context:
space:
mode:
authorJames McCoy <jamessan@jamessan.com>2021-08-16 07:55:38 -0400
committerGitHub <noreply@github.com>2021-08-16 07:55:38 -0400
commitfe815244f0c94ff543e5a9a81899b36c395ead54 (patch)
tree51d40f6556570055c2a8f3063a6a61d7195d0f74 /test/unit/preprocess.lua
parent56d86970b0a712c604ba4c6b06f4e82b2fb9cda4 (diff)
parentc417d573a317087886f0efab8eecf1713d71792e (diff)
downloadrneovim-fe815244f0c94ff543e5a9a81899b36c395ead54.tar.gz
rneovim-fe815244f0c94ff543e5a9a81899b36c395ead54.tar.bz2
rneovim-fe815244f0c94ff543e5a9a81899b36c395ead54.zip
Merge pull request #15389 from jamessan/32-bit-revert
[release-0.5] Revert "tests: unit: fix preprocess: pass -m32 for 32bit ABI (#11073)"
Diffstat (limited to 'test/unit/preprocess.lua')
-rw-r--r--test/unit/preprocess.lua4
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