You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by jb...@apache.org on 2017/04/06 20:17:13 UTC

geode-native git commit: GEODE-2758: Fixes path to Solaris SPARC assembly source.

Repository: geode-native
Updated Branches:
  refs/heads/develop 67e50b759 -> 90b9da986


GEODE-2758: Fixes path to Solaris SPARC assembly source.


Project: http://git-wip-us.apache.org/repos/asf/geode-native/repo
Commit: http://git-wip-us.apache.org/repos/asf/geode-native/commit/90b9da98
Tree: http://git-wip-us.apache.org/repos/asf/geode-native/tree/90b9da98
Diff: http://git-wip-us.apache.org/repos/asf/geode-native/diff/90b9da98

Branch: refs/heads/develop
Commit: 90b9da986f9fa84a762a7a79f290f3b18ad2579f
Parents: 67e50b7
Author: Jacob Barrett <jb...@pivotal.io>
Authored: Thu Apr 6 12:19:22 2017 -0700
Committer: Jacob Barrett <jb...@pivotal.io>
Committed: Thu Apr 6 13:16:32 2017 -0700

----------------------------------------------------------------------
 src/cppcache/src/CMakeLists.txt | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/geode-native/blob/90b9da98/src/cppcache/src/CMakeLists.txt
----------------------------------------------------------------------
diff --git a/src/cppcache/src/CMakeLists.txt b/src/cppcache/src/CMakeLists.txt
index 5a64d8a..e92c6d7 100644
--- a/src/cppcache/src/CMakeLists.txt
+++ b/src/cppcache/src/CMakeLists.txt
@@ -88,8 +88,7 @@ if(CMAKE_SYSTEM_NAME STREQUAL "SunOS")
     set(CMAKE_ASM_SOURCE_FILE_EXTENSIONS asm)
     set(CMAKE_ASM_COMPILE_OBJECT "<CMAKE_ASM_COMPILER> -m64 -K PIC -L -s -P -o <OBJECT> <SOURCE>")
     enable_language(ASM)
-    add_library(gfcppasm OBJECT impl/hostsolaris.asm)
-    set(SOURCES ${SOURCES} $<TARGET_OBJECTS:gfcppasm>)
+    set(SOURCES_ALL ${SOURCES_ALL} hostsolaris.asm)
   endif()
 endif()
 if (${WIN32})