From da3f7215336b19c26b69df4b88e41d1112a7395e Mon Sep 17 00:00:00 2001 From: "Dmitriy A. Gerasimov" <dmitriy.gerasimov@demlabs.net> Date: Tue, 28 Apr 2020 02:38:06 +0700 Subject: [PATCH] [*] Link fixes --- CMakeLists.txt | 8 -------- src/GOST/dll_import.h | 2 +- {src/GOST => test/crypto}/testgost.c | 0 3 files changed, 1 insertion(+), 9 deletions(-) rename {src/GOST => test/crypto}/testgost.c (100%) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9ccbf04..7124f51 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,14 +3,6 @@ project (dap_crypto) # fix implicit declaration warnings add_definitions ("-D_GNU_SOURCE") - -#set(CMAKE_C_FLAGS "-std=c11 -O2 -Wall -Wextra -fPIC -fno-pie -no-pie -fno-ident ") -#set(CMAKE_ASM_FLAGS "-std=c11 -O2 -Wall -Wextra -fPIC -fno-pie -no-pie -fno-ident ") -#set(CMAKE_C_FLAGS "-std=c11 -O3 -Wall -Wextra -fPIC -fno-pie -no-pie -fno-ident -ffast-math -ftree-vectorize -mfpmath=sse -mmmx -msse2 -fno-asynchronous-unwind-tables -ffunction-sections -Wl,--gc-sections -Wl,--strip-all") -#set(CMAKE_ASM_FLAGS "-std=c11 -O3 -Wall -Wextra -fPIC -fno-pie -no-pie -fno-ident -ffast-math -ftree-vectorize -mfpmath=sse -mmmx -msse2 -fno-asynchronous-unwind-tables -ffunction-sections -Wl,--gc-sections -Wl,--strip-all") -#set(CMAKE_C_FLAGS "-static -Wall -O3 -fno-ident -ffast-math -ftree-vectorize -mfpmath=sse -mmmx -msse2 -fno-asynchronous-unwind-tables -ffunction-sections -Wl,--gc-sections -Wl,--strip-all") -#set(CMAKE_ASM_FLAGS "-static -Wall -O3 -fno-ident -ffast-math -ftree-vectorize -mfpmath=sse -mmmx -msse2 -fno-asynchronous-unwind-tables -ffunction-sections -Wl,--gc-sections -Wl,--strip-all") - if(NOT SUBMODULES_NO_BUILD) # Check whether we're on a 32-bit or 64-bit system diff --git a/src/GOST/dll_import.h b/src/GOST/dll_import.h index b8216a0..025d39d 100644 --- a/src/GOST/dll_import.h +++ b/src/GOST/dll_import.h @@ -12,7 +12,7 @@ #ifdef WIN32 #define DLL_IMPORT __stdcall #else - #define DLL_IMPORT __attribute__((stdcall)) + #define DLL_IMPORT #endif #endif diff --git a/src/GOST/testgost.c b/test/crypto/testgost.c similarity index 100% rename from src/GOST/testgost.c rename to test/crypto/testgost.c -- GitLab