Changeset 37e8c4a in mainline
- Timestamp:
- 2017-10-26T23:45:41Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d4da860
- Parents:
- 90c340fb
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/Makefile.build
r90c340fb r37e8c4a 37 37 38 38 AFLAGS = 39 LFLAGS = --fatal-warnings 39 LFLAGS = --fatal-warnings --warn-common 40 40 41 41 # FIXME: This condition is a workaround for issue #693. … … 46 46 COMMON_CFLAGS = $(INCLUDES) -O$(OPTIMIZATION) -imacros $(CONFIG_HEADER) \ 47 47 -ffreestanding -fno-builtin -nostdlib -nostdinc \ 48 -fexec-charset=UTF-8 -finput-charset=UTF-8 48 -fexec-charset=UTF-8 -finput-charset=UTF-8 -fno-common 49 49 50 50 GCC_CFLAGS = -Wall -Wextra -Wno-unused-parameter -Wmissing-prototypes \ -
kernel/Makefile
r90c340fb r37e8c4a 84 84 COMMON_CFLAGS = $(INCLUDES_FLAGS) -O$(OPTIMIZATION) -imacros $(CONFIG_HEADER) \ 85 85 -ffreestanding -fno-builtin -nostdlib -nostdinc \ 86 -fexec-charset=UTF-8 -finput-charset=UTF-8 86 -fexec-charset=UTF-8 -finput-charset=UTF-8 -fno-common 87 87 88 88 GCC_CFLAGS = -std=gnu99 -Wall -Wextra -Wno-unused-parameter \ … … 112 112 # 113 113 AFLAGS = 114 LFLAGS = -n -T $(LINK) -M --fatal-warnings 114 LFLAGS = -n -T $(LINK) -M --fatal-warnings --warn-common 115 115 116 116 # FIXME: This condition is a workaround for issues #693 and #694. -
kernel/generic/src/ipc/sysipc_ops.c
r90c340fb r37e8c4a 38 38 39 39 /* Forward declarations. */ 40 sysipc_ops_t ipc_m_connect_to_me_ops;41 sysipc_ops_t ipc_m_connect_me_to_ops;42 sysipc_ops_t ipc_m_page_in_ops;43 sysipc_ops_t ipc_m_share_out_ops;44 sysipc_ops_t ipc_m_share_in_ops;45 sysipc_ops_t ipc_m_data_write_ops;46 sysipc_ops_t ipc_m_data_read_ops;47 sysipc_ops_t ipc_m_state_change_authorize_ops;48 sysipc_ops_t ipc_m_debug_ops;40 extern sysipc_ops_t ipc_m_connect_to_me_ops; 41 extern sysipc_ops_t ipc_m_connect_me_to_ops; 42 extern sysipc_ops_t ipc_m_page_in_ops; 43 extern sysipc_ops_t ipc_m_share_out_ops; 44 extern sysipc_ops_t ipc_m_share_in_ops; 45 extern sysipc_ops_t ipc_m_data_write_ops; 46 extern sysipc_ops_t ipc_m_data_read_ops; 47 extern sysipc_ops_t ipc_m_state_change_authorize_ops; 48 extern sysipc_ops_t ipc_m_debug_ops; 49 49 50 50 static sysipc_ops_t *sysipc_ops[] = { -
uspace/Makefile.common
r90c340fb r37e8c4a 158 158 159 159 AFLAGS = 160 LFLAGS = --fatal-warnings 160 LFLAGS = --fatal-warnings --warn-common 161 161 162 162 # FIXME: This condition is a workaround for issues #692 and #693. … … 234 234 COMMON_CFLAGS = $(INCLUDES_FLAGS) -O$(OPTIMIZATION) -imacros $(CONFIG_HEADER) \ 235 235 -ffreestanding -fno-builtin -nostdlib -nostdinc -fexec-charset=UTF-8 \ 236 -finput-charset=UTF-8 -D__$(ENDIANESS)__ 236 -finput-charset=UTF-8 -D__$(ENDIANESS)__ -fno-common 237 237 238 238 GCC_CFLAGS = -ffunction-sections -Wall -Wextra -Wno-clobbered \
Note:
See TracChangeset
for help on using the changeset viewer.