d1789d84e8
fix Relative file path does not match actual file.
57 lines
2.4 KiB
Plaintext
57 lines
2.4 KiB
Plaintext
############################################################################
|
|
# libs/libxx/uClibc++.defs
|
|
#
|
|
# Licensed to the Apache Software Foundation (ASF) under one or more
|
|
# contributor license agreements. See the NOTICE file distributed with
|
|
# this work for additional information regarding copyright ownership. The
|
|
# ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
# "License"); you may not use this file except in compliance with the
|
|
# License. You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
#
|
|
###########################################################################
|
|
|
|
UCLIBCXX_VERSION=0.2.5
|
|
|
|
# Download and unpack tarball if no git repo found
|
|
ifeq ($(wildcard uClibc++/.git),)
|
|
uClibc++:
|
|
curl -O -L https://git.busybox.net/uClibc++/snapshot/uClibc++-$(UCLIBCXX_VERSION).tar.bz2
|
|
$(Q) tar -xf uClibc++-$(UCLIBCXX_VERSION).tar.bz2
|
|
$(Q) $(DELFILE) uClibc++-$(UCLIBCXX_VERSION).tar.bz2
|
|
$(Q) mv uClibc++-$(UCLIBCXX_VERSION) uClibc++
|
|
$(Q) patch -p0 < 0001-uClibcxx-basic_definitions-fix-GCC-specific-definiti.patch
|
|
$(Q) patch -p0 < 0001-uclibxx-use-overload-constructor-of-filebuf-ostream.patch
|
|
endif
|
|
|
|
$(TOPDIR)/include/uClibc++: uClibc++
|
|
$(Q) $(DIRLINK) $(CURDIR)/uClibc++/include $(TOPDIR)/include/uClibc++
|
|
$(Q) $(COPYFILE) $(CURDIR)/system_configuration.h $(TOPDIR)/include/uClibc++
|
|
|
|
context:: $(TOPDIR)/include/uClibc++
|
|
|
|
distclean::
|
|
$(Q) $(DELFILE) $(TOPDIR)/include/uClibc++/system_configuration.h
|
|
$(Q) $(DIRUNLINK) $(TOPDIR)/include/uClibc++
|
|
ifeq ($(wildcard uClibc++/.git),)
|
|
$(call DELDIR, uClibc++)
|
|
endif
|
|
|
|
CPPSRCS += algorithm.cpp associative_base.cpp bitset.cpp char_traits.cpp
|
|
CPPSRCS += complex.cpp deque.cpp exception.cpp fstream.cpp
|
|
CPPSRCS += func_exception.cpp iomanip.cpp ios.cpp iostream.cpp istream.cpp
|
|
CPPSRCS += iterator.cpp limits.cpp list.cpp locale.cpp map.cpp numeric.cpp
|
|
CPPSRCS += ostream.cpp queue.cpp set.cpp sstream.cpp stack.cpp stdexcept.cpp
|
|
CPPSRCS += streambuf.cpp string.cpp utility.cpp valarray.cpp
|
|
CPPSRCS += vector.cpp
|
|
|
|
DEPPATH += --dep-path uClibc++/src
|
|
VPATH += uClibc++/src
|