From 5e058cf1a0f66082ecb6f255d2b346c0dfa441c9 Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Thu, 25 Feb 2021 10:50:28 +0100 Subject: Fixing compilation on Linux by removing wrt ..plt in extern declaration --- libasm.s | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 libasm.s (limited to 'libasm.s') diff --git a/libasm.s b/libasm.s new file mode 100644 index 0000000..78b5736 --- /dev/null +++ b/libasm.s @@ -0,0 +1,18 @@ +; ############################################################################ ; +; ; +; ::: :::::::: ; +; libasm.s :+: :+: :+: ; +; +:+ +:+ +:+ ; +; By: cacharle +#+ +:+ +#+ ; +; +#+#+#+#+#+ +#+ ; +; Created: 2021/02/25 10:38:57 by cacharle #+# #+# ; +; Updated: 2021/02/25 10:45:55 by cacharle ### ########.fr ; +; ; +; ############################################################################ ; + + +%ifdef __LINUX__ + %define M_EXTERN_CALL_SUFFIX wrt ..plt +%else + %define M_EXTERN_CALL_SUFFIX +%endif -- cgit