[oe-commits] Robert Schuster : llvm2.6-native 2.5+svnr20090504: New recipe.

GIT User account git at amethyst.openembedded.net
Fri May 8 14:27:41 UTC 2009


Module: openembedded.git
Branch: org.openembedded.dev
Commit: 1bff258e44b63c1c532f922cf6d80a8f364e2889
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=1bff258e44b63c1c532f922cf6d80a8f364e2889

Author: Robert Schuster <robertschuster at fsfe.org>
Date:   Fri May  8 16:20:13 2009 +0200

llvm2.6-native 2.5+svnr20090504: New recipe.
llvm2.6 2.5+svnr20090504: New recipe.

---

 recipes/llvm/llvm2.6-native_2.5+svnr20090504.bb    |   18 ++++++++++++
 recipes/llvm/llvm2.6/fix-build.patch               |   13 +++++++++
 .../llvm/llvm2.6/llvm-debugonly-zeroormore.patch   |   13 +++++++++
 .../llvm/llvm2.6/llvm-fix-have_libpthread.patch    |   29 ++++++++++++++++++++
 recipes/llvm/llvm2.6/llvm-fix-pthreads_h.patch     |   14 +++++++++
 recipes/llvm/llvm2.6_2.5+svnr20090504.bb           |   21 ++++++++++++++
 6 files changed, 108 insertions(+), 0 deletions(-)

diff --git a/recipes/llvm/llvm2.6-native_2.5+svnr20090504.bb b/recipes/llvm/llvm2.6-native_2.5+svnr20090504.bb
new file mode 100644
index 0000000..86397c9
--- /dev/null
+++ b/recipes/llvm/llvm2.6-native_2.5+svnr20090504.bb
@@ -0,0 +1,18 @@
+require llvm-native.inc
+
+SRCREV = "70854"
+
+PV = "2.5+svnr${SRCREV}"
+
+PR = "r0"
+
+SRC_URI = "\
+  svn://llvm.org/svn/llvm-project/llvm/;proto=http;module=trunk \
+  file://fix-build.patch;patch=1 \
+  file://llvm-enable-threads-macro.patch;patch=1;pnum=0 \
+  file://llvm-debugonly-zeroormore.patch;patch=1;pnum=0 \
+"
+
+S = "${WORKDIR}/trunk"
+
+LLVM_RELEASE = "2.6"
diff --git a/recipes/llvm/llvm2.6/fix-build.patch b/recipes/llvm/llvm2.6/fix-build.patch
new file mode 100644
index 0000000..5539656
--- /dev/null
+++ b/recipes/llvm/llvm2.6/fix-build.patch
@@ -0,0 +1,13 @@
+Index: tools/llvm-config/CMakeLists.txt
+===================================================================
+--- a/tools.orig/llvm-config/CMakeLists.txt	2009-04-09 10:45:01.000000000 +0200
++++ b/tools/llvm-config/CMakeLists.txt	2009-04-09 10:43:52.000000000 +0200
+@@ -90,7 +90,7 @@
+ add_custom_command(OUTPUT ${LLVM_CONFIG}
+   COMMAND echo 's!@LLVM_CPPFLAGS@!${CPP_FLGS}!' > temp.sed
+   COMMAND echo 's!@LLVM_CFLAGS@!${C_FLGS}!' >> temp.sed
+-  COMMAND echo 's!@LLVM_CXXFLAGS@!${CXX_FLGS}!' >> temp.sed
++  COMMAND echo 's!@LLVM_CXXFLAGS@!${CXX_FLGS} -fpermissive -fvisibility-inlines-hidden!' >> temp.sed
+   # TODO: Use general flags for linking! not just for shared libs:
+   COMMAND echo 's!@LLVM_LDFLAGS@!${CMAKE_SHARED_LINKER_FLAGS}!' >> temp.sed
+   COMMAND echo 's!@LIBS@!!' >> temp.sed                    # TODO: System libs
diff --git a/recipes/llvm/llvm2.6/llvm-debugonly-zeroormore.patch b/recipes/llvm/llvm2.6/llvm-debugonly-zeroormore.patch
new file mode 100644
index 0000000..8888884
--- /dev/null
+++ b/recipes/llvm/llvm2.6/llvm-debugonly-zeroormore.patch
@@ -0,0 +1,13 @@
+Index: lib/Support/Debug.cpp
+===================================================================
+--- lib/Support/Debug.cpp	(Revision 71077)
++++ lib/Support/Debug.cpp	(Arbeitskopie)
+@@ -48,7 +48,7 @@
+   static cl::opt<DebugOnlyOpt, true, cl::parser<std::string> >
+   DebugOnly("debug-only", cl::desc("Enable a specific type of debug output"),
+             cl::Hidden, cl::value_desc("debug string"),
+-            cl::location(DebugOnlyOptLoc), cl::ValueRequired);
++            cl::location(DebugOnlyOptLoc), cl::ValueRequired, cl::ZeroOrMore);
+ #endif
+ }
+ 
diff --git a/recipes/llvm/llvm2.6/llvm-fix-have_libpthread.patch b/recipes/llvm/llvm2.6/llvm-fix-have_libpthread.patch
new file mode 100644
index 0000000..f1072d9
--- /dev/null
+++ b/recipes/llvm/llvm2.6/llvm-fix-have_libpthread.patch
@@ -0,0 +1,29 @@
+Index: trunk/include/llvm/Config/config.h.cmake
+===================================================================
+--- trunk.orig/include/llvm/Config/config.h.cmake	2009-05-06 16:39:19.957841609 +0200
++++ trunk/include/llvm/Config/config.h.cmake	2009-05-06 16:39:20.185842055 +0200
+@@ -194,7 +194,7 @@
+ #cmakedefine HAVE_LIBPSAPI ${HAVE_LIBPSAPI}
+ 
+ /* Define to 1 if you have the `pthread' library (-lpthread). */
+-#undef HAVE_LIBPTHREAD
++#cmakedefine HAVE_LIBPTHREAD ${HAVE_LIBPTHREAD}
+ 
+ /* Define to 1 if you have the `udis86' library (-ludis86). */
+ #undef HAVE_LIBUDIS86
+Index: trunk/cmake/config-ix.cmake
+===================================================================
+--- trunk.orig/cmake/config-ix.cmake	2009-05-06 16:49:45.121841057 +0200
++++ trunk/cmake/config-ix.cmake	2009-05-06 16:50:25.738552620 +0200
+@@ -98,6 +98,11 @@
+   if( HAVE_PTHREAD_H OR WIN32 )
+     set(ENABLE_THREADS 1)
+   endif()
++
++# FIXME: Actually check for the library
++  if( HAVE_PTHREAD_H )
++    set(HAVE_LIBPTHREAD 1)
++  endif()
+ endif()
+ 
+ if( ENABLE_THREADS )
diff --git a/recipes/llvm/llvm2.6/llvm-fix-pthreads_h.patch b/recipes/llvm/llvm2.6/llvm-fix-pthreads_h.patch
new file mode 100644
index 0000000..6f17b85
--- /dev/null
+++ b/recipes/llvm/llvm2.6/llvm-fix-pthreads_h.patch
@@ -0,0 +1,14 @@
+Index: include/llvm/Config/config.h.cmake
+===================================================================
+--- include/llvm/Config/config.h.cmake	(Revision 71077)
++++ include/llvm/Config/config.h.cmake	(Arbeitskopie)
+@@ -276,6 +276,9 @@
+ /* Define to have the %a format string */
+ #undef HAVE_PRINTF_A
+ 
++/* Have pthread.h */
++#cmakedefine HAVE_PTHREAD_H ${HAVE_PTHREAD_H}
++
+ /* Have pthread_mutex_lock */
+ #cmakedefine HAVE_PTHREAD_MUTEX_LOCK ${HAVE_PTHREAD_MUTEX_LOCK}
+ 
diff --git a/recipes/llvm/llvm2.6_2.5+svnr20090504.bb b/recipes/llvm/llvm2.6_2.5+svnr20090504.bb
new file mode 100644
index 0000000..9ba13ce
--- /dev/null
+++ b/recipes/llvm/llvm2.6_2.5+svnr20090504.bb
@@ -0,0 +1,21 @@
+require llvm.inc
+
+SRCREV = "70854"
+
+PV = "2.5+svnr${SRCREV}"
+
+PR = "r0"
+
+DEPENDS = "llvm-common llvm2.6-native"
+
+SRC_URI = "\
+  svn://llvm.org/svn/llvm-project/llvm/;proto=http;module=trunk \
+  file://fix-build.patch;patch=1 \
+  file://llvm-debugonly-zeroormore.patch;patch=1;pnum=0 \
+  file://llvm-fix-pthreads_h.patch;patch=1;pnum=0 \
+  file://llvm-fix-have_libpthread.patch;patch=1 \
+"
+
+S = "${WORKDIR}/trunk"
+
+LLVM_RELEASE = "2.6"





More information about the Openembedded-commits mailing list