makefile.mk (744a105a) | makefile.mk (bdb58f77) |
---|---|
1#************************************************************** 2# 3# Licensed to the Apache Software Foundation (ASF) under one 4# or more contributor license agreements. See the NOTICE file 5# distributed with this work for additional information 6# regarding copyright ownership. The ASF licenses this file 7# to you under the Apache License, Version 2.0 (the 8# "License"); you may not use this file except in compliance --- 71 unchanged lines hidden (view full) --- 80.IF "$(HAVE_LD_HASH_STYLE)" == "TRUE" 81LDFLAGSADD += -Wl,--hash-style=both 82.ENDIF 83 84.IF "$(HAVE_LD_BSYMBOLIC_FUNCTIONS)" == "TRUE" 85LDFLAGSADD += -Wl,-Bsymbolic-functions -Wl,--dynamic-list-cpp-new -Wl,--dynamic-list-cpp-typeinfo 86.ENDIF 87 | 1#************************************************************** 2# 3# Licensed to the Apache Software Foundation (ASF) under one 4# or more contributor license agreements. See the NOTICE file 5# distributed with this work for additional information 6# regarding copyright ownership. The ASF licenses this file 7# to you under the Apache License, Version 2.0 (the 8# "License"); you may not use this file except in compliance --- 71 unchanged lines hidden (view full) --- 80.IF "$(HAVE_LD_HASH_STYLE)" == "TRUE" 81LDFLAGSADD += -Wl,--hash-style=both 82.ENDIF 83 84.IF "$(HAVE_LD_BSYMBOLIC_FUNCTIONS)" == "TRUE" 85LDFLAGSADD += -Wl,-Bsymbolic-functions -Wl,--dynamic-list-cpp-new -Wl,--dynamic-list-cpp-typeinfo 86.ENDIF 87 |
88# FreeBSD with gcc from ports needs -Wl,-rpath= to find the matching libstdc++ 89.IF "$(OS)"=="FREEBSD" 90LDFLAGSADD+=$(FBSD_GCC_RPATH) 91.ENDIF 92 |
|
88CONFIGURE_DIR=source 89 90CONFIGURE_ACTION+=sh -c 'CFLAGS="$(icu_CFLAGS)" CXXFLAGS="$(icu_CXXFLAGS)" LDFLAGS="$(icu_LDFLAGS) $(LDFLAGSADD)" ./configure --enable-layout --enable-static --enable-shared=yes $(DISABLE_64BIT)' 91 92#CONFIGURE_FLAGS=--enable-layout --enable-static --enable-shared=yes --enable-64bit-libs=no 93CONFIGURE_FLAGS= 94 95# Use of --- 178 unchanged lines hidden --- | 93CONFIGURE_DIR=source 94 95CONFIGURE_ACTION+=sh -c 'CFLAGS="$(icu_CFLAGS)" CXXFLAGS="$(icu_CXXFLAGS)" LDFLAGS="$(icu_LDFLAGS) $(LDFLAGSADD)" ./configure --enable-layout --enable-static --enable-shared=yes $(DISABLE_64BIT)' 96 97#CONFIGURE_FLAGS=--enable-layout --enable-static --enable-shared=yes --enable-64bit-libs=no 98CONFIGURE_FLAGS= 99 100# Use of --- 178 unchanged lines hidden --- |