Changeset a57a79c in mainline
- Timestamp:
- 2018-07-05T21:41:19Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 9317f45
- Parents:
- 0564a02e
- git-author:
- Dzejrou <dzejrou@…> (2017-11-26 03:10:14)
- git-committer:
- Dzejrou <dzejrou@…> (2018-07-05 21:41:19)
- Files:
-
- 1 added
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
abi/include/_bits/wchar_t.h
r0564a02e ra57a79c 43 43 #include <_bits/macros.h> 44 44 45 #ifndef __cplusplus 45 46 typedef __WCHAR_TYPE__ wchar_t; 47 #endif 46 48 47 49 #endif -
uspace/Makefile
r0564a02e ra57a79c 216 216 BASE_LIBS = \ 217 217 lib/c \ 218 lib/cpp \ 218 219 lib/softint \ 219 220 lib/softfloat \ … … 221 222 222 223 LIBS = \ 223 lib/cpp \224 224 lib/fs \ 225 225 lib/block \ -
uspace/app/cpptest/Makefile
r0564a02e ra57a79c 30 30 31 31 # TODO: Force linker to link libcpp by default when linking cpp apps? 32 LIBS = $(USPACE_PREFIX)/lib/cpp/libcpp.a32 LIBS = cpp 33 33 34 34 BINARY = cpptest -
uspace/lib/c/include/stddef.h
r0564a02e ra57a79c 37 37 38 38 #include <_bits/size_t.h> 39 #include <_bits/ssize_t.h> 39 40 #include <_bits/ptrdiff_t.h> 40 41 #include <_bits/wchar_t.h> -
uspace/lib/cpp/Makefile
r0564a02e ra57a79c 33 33 34 34 LIBRARY = libcpp 35 SLIBRARY = libcpp.so.0.0 36 LSONAME = libcpp.so.0 35 SOVERSION = 0.0 37 36 38 37 -include $(CONFIG_MAKEFILE) -
uspace/lib/cpp/include/impl/string.hpp
r0564a02e ra57a79c 36 36 #include <cstdlib> 37 37 #include <cstring> 38 #include <cwchar> 38 39 #include <memory> 39 40 #include <utility>
Note:
See TracChangeset
for help on using the changeset viewer.