WAGO-750-860.patch 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. From 97515341454f26fcd14e50d5980f5f0361307814 Mon Sep 17 00:00:00 2001
  2. From: FlorianPalm <f.palm@plt.rwth-aachen.de>
  3. Date: Mon, 12 Jan 2015 18:45:01 +0100
  4. Subject: [PATCH] fixes to the patch
  5. ---
  6. CMakeLists.txt | 19 ++++++++-----------
  7. src/ua_util.h | 2 +-
  8. 2 files changed, 9 insertions(+), 12 deletions(-)
  9. diff --git a/CMakeLists.txt b/CMakeLists.txt
  10. index c785182..9e66da0 100644
  11. --- a/CMakeLists.txt
  12. +++ b/CMakeLists.txt
  13. @@ -47,19 +47,16 @@ set(lib_sources src/ua_types.c
  14. # compiler flags
  15. if(CMAKE_COMPILER_IS_GNUCC OR "${CMAKE_C_COMPILER_ID}" STREQUAL "Clang")
  16. -add_definitions(-std=c99 -pedantic -pipe -Wall -Wextra -Werror -Wformat
  17. - -Wno-unused-parameter -Wno-unused-function -Wno-unused-label -Wpointer-arith -Wreturn-type -Wsign-compare -Wmultichar
  18. - -Wshadow -Wcast-align -Wcast-qual -Wmissing-prototypes -Wstrict-prototypes # -Wconversion
  19. - -Winit-self -Wuninitialized -Wno-deprecated -Wformat-security -ffunction-sections -fdata-sections)
  20. +add_definitions(-std=c99 -fomit-frame-pointer -pipe -msoft-float -fno-builtin -DEMBED -fno-strict-aliasing)
  21. if(NOT "${CMAKE_C_COMPILER_ID}" STREQUAL "Clang")
  22. add_definitions(-Wformat-nonliteral)
  23. - set (CMAKE_C_LINK_FLAGS "${CMAKE_C_LINK_FLAGS} -Wl,--gc-sections")
  24. - set (CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,--gc-sections")
  25. + set (CMAKE_C_LINK_FLAGS "${CMAKE_C_LINK_FLAGS} -Wl,-elf2flt -msoft-float")
  26. + set (CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,-elf2flt -msoft-float")
  27. else()
  28. add_definitions(-Wno-gnu-statement-expression)
  29. endif()
  30. if(NOT WIN32)
  31. - add_definitions(-fstack-protector -fPIC -fvisibility=hidden)
  32. + # add_definitions(-fPIC)
  33. endif()
  34. endif()
  35. @@ -150,8 +147,8 @@ else()
  36. endif()
  37. add_library(open62541-objects OBJECT ${lib_sources}) # static version that exports all symbols
  38. -add_library(open62541 SHARED $<TARGET_OBJECTS:open62541-objects>)
  39. -target_compile_definitions(open62541-objects PUBLIC UA_DYNAMIC_LINKING)
  40. +add_library(open62541 $<TARGET_OBJECTS:open62541-objects>)
  41. +#target_compile_definitions(open62541-objects PUBLIC UA_DYNAMIC_LINKING)
  42. ## logging
  43. set(UA_LOGLEVEL 400 CACHE STRING "Level at which logs shall be reported")
  44. @@ -170,7 +167,7 @@ endif()
  45. configure_file("src/ua_config.h.in" "${PROJECT_BINARY_DIR}/src_generated/ua_config.h")
  46. # download queue.h if required
  47. -if(WIN32)
  48. +#if(WIN32)
  49. if(NOT EXISTS "${PROJECT_BINARY_DIR}/src_generated/queue.h")
  50. file(DOWNLOAD "http://openbsd.cs.toronto.edu/cgi-bin/cvsweb/~checkout~/src/sys/sys/queue.h" "${PROJECT_BINARY_DIR}/src_generated/queue.h" STATUS result)
  51. list(GET result 0 download_ok)
  52. @@ -179,7 +176,7 @@ if(WIN32)
  53. message(FATAL_ERROR "queue.h could not be downloaded")
  54. endif()
  55. endif()
  56. -endif(WIN32)
  57. +#endif(WIN32)
  58. # generate code from xml definitions
  59. file(MAKE_DIRECTORY "${PROJECT_BINARY_DIR}/src_generated")
  60. diff --git a/src/ua_util.h b/src/ua_util.h
  61. index 5ec1191..65e1a4d 100644
  62. --- a/src/ua_util.h
  63. +++ b/src/ua_util.h
  64. @@ -5,7 +5,7 @@
  65. #include <stddef.h> /* Needed for sys/queue.h */
  66. #ifndef _WIN32
  67. -#include <sys/queue.h>
  68. +#include "queue.h"
  69. #include <alloca.h>
  70. #else
  71. #include "queue.h"
  72. --
  73. 2.2.0