File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
usecases/real-time/tcc_tutorial Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 29
29
# SPDX-License-Identifier: BSD-3-Clause
30
30
# ###################################################################################
31
31
CC =gcc
32
- CFLAGS =-Wall -Wextra -O2 -I/usr/local/include
32
+ CFLAGS =-Wall -Wextra -fcf-protection=full -Wformat -Wmissing-field-initializers -Wformat-security -fPIC -fPIE -pie -D_FORTIFY_SOURCE=3 -D_GLIBCXX_ASSERTIONS -fstack-protector - O2 -I/usr/local/include
33
33
LDFLAGS =-L/usr/local/lib -lpaho-mqtt3c -lcjson
34
34
TARGET =rt_linux_tutorial
35
35
OBJ =rt_linux_tutorial.o pointer_chasing.o
Original file line number Diff line number Diff line change @@ -39,8 +39,8 @@ services:
39
39
container_name : mosquitto
40
40
restart : always
41
41
ports :
42
- - " 1883:1883"
43
- - " 9001:9001"
42
+ - " 127.0.0.1: 1883:1883"
43
+ - " 127.0.0.1: 9001:9001"
44
44
networks :
45
45
- stats
46
46
volumes :
@@ -56,7 +56,7 @@ services:
56
56
container_name : influxdb
57
57
restart : always
58
58
ports :
59
- - " 8086:8086"
59
+ - " 127.0.0.1: 8086:8086"
60
60
networks :
61
61
- stats
62
62
volumes :
@@ -99,7 +99,7 @@ services:
99
99
restart : always
100
100
user : " 1000"
101
101
ports :
102
- - " 3000:3000"
102
+ - " 127.0.0.1: 3000:3000"
103
103
networks :
104
104
- stats
105
105
volumes :
You can’t perform that action at this time.
0 commit comments