Changeset c92dfed in mainline
- Timestamp:
- 2018-08-03T14:51:07Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 3767bdb
- Parents:
- f2c8f55
- git-author:
- Jiří Zárevúcky <jiri.zarevucky@…> (2018-08-02 18:34:59)
- git-committer:
- Jiří Zárevúcky <jiri.zarevucky@…> (2018-08-03 14:51:07)
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
HelenOS.config
rf2c8f55 rc92dfed 97 97 98 98 % CPU type 99 @ "arm1176 " ARM117699 @ "arm1176jzf_s" ARM1176JZF-S 100 100 ! [PLATFORM=arm32&MACHINE=raspberrypi] PROCESSOR (choice) 101 101 … … 113 113 % CPU arch 114 114 @ "armv6" ARMv6 115 ! [PLATFORM=arm32&(PROCESSOR=arm1176 )] PROCESSOR_ARCH (choice)115 ! [PLATFORM=arm32&(PROCESSOR=arm1176jzf_s)] PROCESSOR_ARCH (choice) 116 116 117 117 # Add more ARMv7-A CPUs -
kernel/Makefile
rf2c8f55 rc92dfed 97 97 GCC_CFLAGS = -std=gnu99 -Wall -Wextra -Wno-unused-parameter \ 98 98 -Wmissing-prototypes -Werror-implicit-function-declaration \ 99 -Wwrite-strings -pipe 99 -Wwrite-strings -pipe -Wno-cast-function-type 100 100 101 101 CLANG_CFLAGS = -std=gnu99 -Wall -Wextra -Wno-unused-parameter \ -
kernel/arch/arm32/include/arch/cp15.h
rf2c8f55 rc92dfed 400 400 #if defined(PROCESSOR_cortex_a8) 401 401 #define CP15_C7_MVA_ALIGN 64 402 #elif defined(PROCESSOR_arm1176 )402 #elif defined(PROCESSOR_arm1176jzf_s) 403 403 #define CP15_C7_MVA_ALIGN 32 404 404 #elif defined(PROCESSOR_arm926ej_s) … … 407 407 #define CP15_C7_MVA_ALIGN 32 408 408 #else 409 #error Unknow MVA alignment409 #error Unknown MVA alignment 410 410 #endif 411 411 -
tools/toolchain.sh
rf2c8f55 rc92dfed 38 38 39 39 GCC_GIT="https://github.com/HelenOS/gcc.git" 40 GCC_BRANCH=" 7_3_0-helenos"41 GCC_VERSION=" 7.3.0"40 GCC_BRANCH="8_2_0-helenos" 41 GCC_VERSION="8.2.0" 42 42 43 43 BASEDIR="`pwd`" -
uspace/Makefile.common
rf2c8f55 rc92dfed 207 207 -Wno-unused-command-line-argument 208 208 else 209 # FIXME: -Wimplicit-fallthrough is broken in GCC 8.2.0 209 210 DEFAULT_CFLAGS += \ 211 -Wno-implicit-fallthrough \ 210 212 -Wno-clobbered 211 213 endif -
uspace/lib/c/arch/arm32/Makefile.common
rf2c8f55 rc92dfed 29 29 30 30 COMMON_CFLAGS += -ffixed-r9 -mtp=soft -fno-omit-frame-pointer -mapcs-frame \ 31 -m arch=$(subst _,-,$(PROCESSOR_ARCH))31 -mcpu=$(subst _,-,$(PROCESSOR)) 32 32 33 33 LDFLAGS += -Wl,--gc-sections -
uspace/lib/cpp/include/__bits/io/istream.hpp
rf2c8f55 rc92dfed 805 805 unsigned char& c) 806 806 { 807 return is >> static_cast<char&>(c);807 return is >> reinterpret_cast<char&>(c); 808 808 } 809 809 … … 812 812 signed char& c) 813 813 { 814 return is >> static_cast<char&>(c);814 return is >> reinterpret_cast<char&>(c); 815 815 } 816 816 … … 858 858 unsigned char* str) 859 859 { 860 return is >> static_cast<char*>(str);860 return is >> reinterpret_cast<char*>(str); 861 861 } 862 862 … … 865 865 signed char* str) 866 866 { 867 return is >> static_cast<char*>(str);867 return is >> reinterpret_cast<char*>(str); 868 868 } 869 869 -
uspace/lib/cpp/include/__bits/io/streambuf.hpp
rf2c8f55 rc92dfed 65 65 } 66 66 67 locale &getloc() const67 locale getloc() const 68 68 { 69 69 return locale_;
Note:
See TracChangeset
for help on using the changeset viewer.