Vincent R. schrieb:
I am trying to compile llvm on latest cygwin and I get an error about
missing
definitions for Dl_info and dladdr.

const llvm::sys::Path&  CIndexer::getClangPath() {
   // Did we already compute the path?
   if (!ClangPath.empty())
     return ClangPath;

   // Find the location where this library lives (libCIndex.dylib).
#ifdef LLVM_ON_WIN32
   ...
#else
   // This silly cast below avoids a C++ warning.
   Dl_info info;
   if (dladdr((void *)(uintptr_t)clang_createTranslationUnit,&info) == 0)
     assert(0&&  "Call to dladdr() failed");

   llvm::sys::Path CIndexPath(info.dli_fname);

   // We now have the CIndex directory, locate clang relative to it.
   CIndexPath.eraseComponent();
   CIndexPath.eraseComponent();
   CIndexPath.appendComponent("bin");
   CIndexPath.appendComponent("clang");
#endif

   // Cache our result.
   ClangPath = CIndexPath;
   return ClangPath;
}

I have a working cygwin llvm and llvm-gcc,
but had no time to produce a proper package yet.
Attached are my cygport files and my local config.
No patches were needed.

But I haven't bothered to build clang yet,
just the Clang llvmc plugin and llvm-gcc,
which I thought is harder to build and gives us more gcc compatibility.

> Could it be possible to provide an implementation ?

cygwin has only dlsym() not the SGI DL_info + dladdr() yet.
clang just needs it to get the path for the CIndex dll.
This should be possible with the code in the LLVM_ON_WIN32 section,
and convert then the path from win to posix with cygwin_conv_path().
--
Reini Urban
http://phpwiki.org/  http://murbreak.at/
DESCRIPTION="Low Level Virtual Machine (LLVM)"
HOMEPAGE="http://llvm.org/";
SRC_URI="http://llvm.org/releases/${PV}/${PN}-${PV}.tar.gz";
LICENSE="University of Illinois/NCSA Open Source License "

src_compile() {
  cd ${B}
  cygconf
  cygmake
}

src_install () {
  cd ${B}
  cyginstall
}

DESCRIPTION="LLVM GCC Front End"
HOMEPAGE="http://llvm.org/";
# llvm-gcc4.2 => llvm-gcc-4.2
pn=$(echo ${PN}|sed -e's/gcc/gcc-/')
#http://llvm.org/releases/2.5/llvm-gcc-4.2-2.5.source.tar.gz
SRC_URI="http://llvm.org/releases/${PV}/${pn}-${PV}.source.tar.gz";
SRC_DIR="${PN}-${PV}.source"
LICENSE="University of Illinois/NCSA Open Source License "

EXTRALANGS=",java,objc,obj-c++"
CYGCONF_ARGS="-v --with-gmp=/usr --with-mpfr=/usr \
        --with-slibdir=/usr/bin \
        --enable-static --enable-bootstrap --enable-shared \
        --enable-shared-libgcc --enable-__cxa_atexit \
        --with-gnu-ld --with-gnu-as --with-dwarf2 --disable-sjlj-exceptions \
        --enable-languages=c,c++${EXTRALANGS} \
        --disable-symvers --enable-libjava \
        --enable-libgomp --enable-libssp --enable-threads=posix"
# configure: error: GMP 4.1 and MPFR 2.2.1 or newer versions required by fortran
# => require libmpfr-devel
# error with --datarootdir=/usr/share

# Ensure gcc-special autoconf-2.59, automake-1.9.4 are first in the path.
export PATH="/opt/gcc-tools/bin:${PATH}"

# override default src_compile
# autoreconfiguring never seems to work right.
# but! we have to do so a bit: reconfigure at
#   toplevel  libjava 
# automake at 
#   libffi libgfortran libgomp  libjava libobjc libssp libstdc++-v3
# also boehm-gc libffi libjava libmudflap libssp libstdc++-v3 zlib
src_compile() {
        test -f /opt/gcc-tools/bin/automake  || error "gcc-tools-automake not 
installed"
        test -f /usr/include/mpfr.h || error "libmpfr-devel  not installed"
        #cd ${S}
        #autoconf || exit -1
        #cd ${S}/libjava
        #autoconf || exit -1
        #cd ${S}/libffi
        #autoconf || exit -1
        cd ${S}
        for x in boehm-gc libffi libgfortran libgomp libjava libmudflap libssp 
libstdc++-v3 zlib;
        do
                pushd $x
                automake || exit -1
                popd
        done
        cd ${B}
        cygconf
        cygmake ENABLE_OPTIMIZED=1 EXTRALANGS=${EXTRALANGS} 
LLVM_VERSION_INFO=${PV}
}

src_xinstall () {
        cd ${B}
        cyginstall
}

DESCRIPTION="LLVM VMkit libraries"
HOMEPAGE="http://llvm.org/";
# requires llvm source package!
# vmkit-0.25 => llvm-2.5
pv=$(echo ${PV}|sed -e's/0\.\([0-9]\)/\1./')
SRC_URI="http://llvm.org/releases/${pv}/${PN}-${PV}.tar.bz2";
LICENSE="University of Illinois/NCSA Open Source License + Mono + LGPL + GPL"
#+ Mono libraries      vmkit/lib/N3/Mono
#+ PNetlib libraries   vmkit/lib/N3/PNe

CYGCONF_ARGS="--with-exception-type=dwarf 
--with-llvmobj=${top}/llvm-${pv}-1/build 
--with-llvmsrc=${top}/llvm-${pv}-1/src/llvm-${pv}"

src_compile() {
  cd ${B}
  cygconf
  cygmake
}

src_install () {
  cd ${B}
  cyginstall
}

#===-- Makefile.config - Local configuration for LLVM ------*- Makefile -*--===#
#
#                     The LLVM Compiler Infrastructure
#
# This file is distributed under the University of Illinois Open Source
# License. See LICENSE.TXT for details.
#
#===------------------------------------------------------------------------===#
#
# This file is included by Makefile.common.  It defines paths and other
# values specific to a particular installation of LLVM.
#
#===------------------------------------------------------------------------===#

# Define LLVM specific info and directories based on the autoconf variables
LLVMPackageName   := llvm
LLVMVersion       := 2.5
LLVM_CONFIGTIME   := Tue Apr 14 14:52:06 WEDT 2009

###########################################################################
# Directory Configuration
#       This section of the Makefile determines what is where.  To be
#       specific, there are several locations that need to be defined:
#
#       o LLVM_SRC_ROOT  : The root directory of the LLVM source code.
#       o LLVM_OBJ_ROOT  : The root directory containing the built LLVM code.
#
#       o PROJ_SRC_DIR  : The directory containing the code to build.
#       o PROJ_SRC_ROOT : The root directory of the code to build.
#
#       o PROJ_OBJ_DIR  : The directory in which compiled code will be placed.
#       o PROJ_OBJ_ROOT : The root directory in which compiled code is placed.
#
###########################################################################

PWD := /usr/bin/pwd
# Set the project name to LLVM if its not defined
ifndef PROJECT_NAME
PROJECT_NAME := $(LLVMPackageName)
endif

PROJ_OBJ_DIR  := $(shell $(PWD))
PROJ_OBJ_ROOT := $(shell cd $(PROJ_OBJ_DIR)/$(LEVEL); $(PWD))

ifeq ($(PROJECT_NAME),llvm)
LLVM_SRC_ROOT   := $(shell cd /usr/src/llvm/llvm-2.5; $(PWD))
LLVM_OBJ_ROOT   := $(shell cd /usr/src/llvm/llvm-build; $(PWD))
PROJ_SRC_ROOT   := $(shell cd $(LLVM_SRC_ROOT); $(PWD))
PROJ_SRC_DIR    := $(shell cd $(LLVM_SRC_ROOT)/$(patsubst 
$(PROJ_OBJ_ROOT)%,%,$(PROJ_OBJ_DIR)); $(PWD))
prefix          := /usr/llvm
PROJ_prefix     := $(prefix)
PROJ_VERSION    := $(LLVMVersion)
else
ifndef PROJ_SRC_ROOT
$(error Projects must define PROJ_SRC_ROOT)
endif
ifndef PROJ_OBJ_ROOT
$(error Projects must define PROJ_OBJ_ROOT)
endif
ifndef PROJ_INSTALL_ROOT
$(error Projects must define PROJ_INSTALL_ROOT)
endif
ifndef LLVM_SRC_ROOT
$(error Projects must define LLVM_SRC_ROOT)
endif
ifndef LLVM_OBJ_ROOT
$(error Projects must define LLVM_OBJ_ROOT)
endif
PROJ_SRC_DIR := $(shell cd $(PROJ_SRC_ROOT)/$(patsubst 
$(PROJ_OBJ_ROOT)%,%,$(PROJ_OBJ_DIR)); $(PWD))
prefix          := $(PROJ_INSTALL_ROOT)
PROJ_prefix     := $(prefix)
ifndef PROJ_VERSION
PROJ_VERSION := 1.0
endif
endif

LLVMMAKE := $(LLVM_SRC_ROOT)/make

PROJ_bindir     := $(DESTDIR)$(PROJ_prefix)/bin
PROJ_libdir     := $(DESTDIR)$(PROJ_prefix)/lib
PROJ_datadir    := $(DESTDIR)$(PROJ_prefix)/share
PROJ_docsdir    := $(DESTDIR)$(PROJ_prefix)/docs/llvm
PROJ_etcdir     := $(DESTDIR)$(PROJ_prefix)/etc/llvm
PROJ_includedir := $(DESTDIR)$(PROJ_prefix)/include
PROJ_infodir    := $(DESTDIR)$(PROJ_prefix)/info
PROJ_mandir     := $(DESTDIR)$(PROJ_prefix)/share/man

# Determine if we're on a unix type operating system
LLVM_ON_UNIX:=1
LLVM_ON_WIN32:=0

# Target operating system for which LLVM will be compiled.
OS=Cygwin

# Target hardware architecture
ARCH=x86

# Indicates, whether we're cross-compiling LLVM or not
LLVM_CROSS_COMPILING=0

# Executable file extension for build platform (mainly for
# tablegen call if we're cross-compiling).
BUILD_EXEEXT=

# Compilers for the build platflorm (mainly for tablegen
# call if we're cross-compiling).
BUILD_CC=
BUILD_CXX=

# Target triple (cpu-vendor-os) for which we should generate code
TARGET_TRIPLE=i686-pc-cygwin

# Extra options to compile LLVM with
EXTRA_OPTIONS=

# Endian-ness of the target
ENDIAN=little

# Path to the C++ compiler to use.  This is an optional setting, which defaults
# to whatever your gmake defaults to.
CXX = g++

# Path to the CC binary, which use used by testcases for native builds.
CC := gcc

# Linker flags.
LDFLAGS+=

# Path to the library archiver program.
AR_PATH = ar

# Path to the nm program
NM_PATH = /usr/bin/nm -B

# The pathnames of the programs we require to build
BISON      := bison
CMP        := /usr/bin/cmp
CP         := /usr/bin/cp
DATE       := /usr/bin/date
FIND       := /usr/bin/find
FLEX       := flex
GREP       := /usr/bin/grep
INSTALL    := /usr/bin/install -c
MKDIR      := $(LLVM_SRC_ROOT)/autoconf/mkinstalldirs
MV         := /usr/bin/mv
RANLIB     := ranlib
RM         := /usr/bin/rm
SED        := /usr/bin/sed
TAR        := /usr/bin/tar
YACC       := bison -y

# Paths to miscellaneous programs we hope are present but might not be
PERL       := /usr/bin/perl
BZIP2      := /usr/bin/bzip2
DOT        := /cygdrive/c/PROGRA~1/ATT/Graphviz/bin/dot
DOXYGEN    := /cyg1/bin/doxygen
GROFF      := /usr/bin/groff
GZIP       := /usr/bin/gzip
OCAMLC     := /cyg1/bin/ocamlc
OCAMLOPT   := /cyg1/bin/ocamlopt
OCAMLDEP   := /cyg1/bin/ocamldep
OCAMLDOC   := /cyg1/bin/ocamldoc
GAS        := /usr/bin/as
POD2HTML   := /usr/bin/pod2html
POD2MAN    := /usr/bin/pod2man
RUNTEST    := /cyg1/bin/runtest
TCLSH      := /usr/bin/tclsh
ZIP        := /usr/bin/zip

HAVE_PERL    := 1
HAVE_PTHREAD := 1

LIBS       := -lpthread -lm 

# Targets that we should build
TARGETS_TO_BUILD=X86 Sparc PowerPC Alpha IA64 ARM Mips CellSPU PIC16 XCore 
CBackend MSIL CppBackend

# Path to location for LLVM C/C++ front-end. You can modify this if you
# want to override the value set by configure.
LLVMGCCDIR := c:/strawberry/c/bin/..

# Determine the target for which LLVM should generate code.
ifeq (4,3)
LLVMGCCARCH := i686-pc-cygwin/3.4-llvm
else
LLVMGCCARCH := i686-pc-cygwin/4.2.1
endif

# Determine the path where the library executables are
LLVMGCCLIBEXEC := c:/strawberry/c/bin/../libexec/gcc/i386-mingw32/4.2.1.exe

# Full pathnames of LLVM C/C++ front-end 'cc1' and 'cc1plus' binaries:
LLVMGCC  := /cygdrive/c/strawberry/c/bin/llvm-gcc.exe
LLVMGXX  := /cygdrive/c/strawberry/c/bin/llvm-g++.exe
LLVMCC1  := c:/strawberry/c/bin/../libexec/gcc/i386-mingw32/4.2.1/cc1.exe
LLVMCC1PLUS := c:/strawberry/c/bin/../libexec/gcc/i386-mingw32/4.2.1/cc1plus.exe
LLVMGCC_VERSION := 4.2.1
LLVMGCC_MAJVERS := 4
LLVMGCC_LANGS := c,c++

# Path to directory where object files should be stored during a build.
# Set OBJ_ROOT to "." if you do not want to use a separate place for
# object files.
OBJ_ROOT := .

# These are options that can either be enabled here, or can be enabled on the
# make command line (ie, make ENABLE_PROFILING=1):

# When ENABLE_OPTIMIZED is enabled, LLVM code is optimized and output is put
# into the "Release" directories. Otherwise, LLVM code is not optimized and
# output is put in the "Debug" directories.
#ENABLE_OPTIMIZED = 1
ENABLE_OPTIMIZED=1

# When DISABLE_ASSERTIONS is enabled, builds of all of the LLVM code will
# exclude assertion checks, otherwise they are included.
#DISABLE_ASSERTIONS = 1


# When ENABLE_EXPENSIVE_CHECKS is enabled, builds of all of the LLVM
# code will include expensive checks, otherwise they are excluded.
#ENABLE_EXPENSIVE_CHECKS = 0


# When DEBUG_RUNTIME is enabled, the runtime libraries will retain debug
# symbols.
#DEBUG_RUNTIME = 1


# When ENABLE_PROFILING is enabled, the llvm source base is built with profile
# information to allow gprof to be used to get execution frequencies.
#ENABLE_PROFILING = 1

# When ENABLE_DOXYGEN is enabled, the doxygen documentation will be built
ENABLE_DOXYGEN = 0

# Do we want to enable threads?
ENABLE_THREADS := 1

# Do we want to build with position independent code?
ENABLE_PIC := 0

# Use -fvisibility-inlines-hidden?
ENABLE_VISIBILITY_INLINES_HIDDEN := 1

# This option tells the Makefiles to produce verbose output.
# It essentially prints the commands that make is executing
#VERBOSE = 1

# Enable JIT for this platform
TARGET_HAS_JIT = 1

# Shared library extension for host platform.
SHLIBEXT = .dll

# Executable file extension for host platform.
EXEEXT = .exe

# Things we just assume are "there"
ECHO := echo

# Get the options for causing archives to link all their content instead of
# just missing symbols, and the inverse of that. This is used for certain LLVM
# tools that permit loadable modules. It ensures that the LLVM symbols will be
# available to those loadable modules.
LINKALL := -Wl,--whole-archive
NOLINKALL := -Wl,--no-whole-archive

# Get the value of HUGE_VAL_SANITY which will be either "yes" or "no" depending
# on the check.
HUGE_VAL_SANITY = yes

# Bindings that we should build
BINDINGS_TO_BUILD := ocaml 
ALL_BINDINGS      := ocaml
OCAML_LIBDIR      := /usr/llvm/lib/ocaml

# When compiling under Mingw/Cygwin, executables such as tblgen
# expect Windows paths, whereas the build system uses Unix paths.
# The function SYSPATH transforms Unix paths into Windows paths.
ifneq (,$(findstring -mno-cygwin, $(CXX)))
  SYSPATH = $(shell echo $(1) | cygpath -m -f -)
else
  SYSPATH = $(1)
endif
--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

Reply via email to