Skip to content

Commit ccaa793

Browse files
Luick KlippelLuick Klippel
Luick Klippel
authored and
Luick Klippel
committed
fixing mem race
1 parent 2375900 commit ccaa793

File tree

516 files changed

+14400
-14425
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

516 files changed

+14400
-14425
lines changed

bin/coreTest

2.09 KB
Binary file not shown.

build/CMakeCache.txt

+11-11
Original file line numberDiff line numberDiff line change
@@ -31,17 +31,17 @@ CCACHE_FOUND:FILEPATH=CCACHE_FOUND-NOTFOUND
3131
CMAKE_ADDR2LINE:FILEPATH=CMAKE_ADDR2LINE-NOTFOUND
3232

3333
//Path to a program.
34-
CMAKE_AR:FILEPATH=/usr/bin/ar
34+
CMAKE_AR:FILEPATH=/Library/Developer/CommandLineTools/usr/bin/ar
3535

3636
//Choose the type of build, options are: None Debug Release RelWithDebInfo
3737
// MinSizeRel ...
38-
CMAKE_BUILD_TYPE:STRING=
38+
CMAKE_BUILD_TYPE:STRING=Debug
3939

4040
//Enable/Disable color output during build.
4141
CMAKE_COLOR_MAKEFILE:BOOL=ON
4242

43-
//No help, variable specified on the command line.
44-
CMAKE_CXX_COMPILER:UNINITIALIZED=/usr/bin/g++
43+
//CXX compiler
44+
CMAKE_CXX_COMPILER:FILEPATH=/Library/Developer/CommandLineTools/usr/bin/c++
4545

4646
//Flags used by the CXX compiler during all build types.
4747
CMAKE_CXX_FLAGS:STRING=
@@ -58,8 +58,8 @@ CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
5858
//Flags used by the CXX compiler during RELWITHDEBINFO builds.
5959
CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
6060

61-
//No help, variable specified on the command line.
62-
CMAKE_C_COMPILER:UNINITIALIZED=/usr/bin/gcc
61+
//C compiler
62+
CMAKE_C_COMPILER:FILEPATH=/Library/Developer/CommandLineTools/usr/bin/cc
6363

6464
//Flags used by the C compiler during all build types.
6565
CMAKE_C_FLAGS:STRING=
@@ -155,7 +155,7 @@ CMAKE_INSTALL_SHAREDSTATEDIR:PATH=com
155155
CMAKE_INSTALL_SYSCONFDIR:PATH=etc
156156

157157
//Path to a program.
158-
CMAKE_LINKER:FILEPATH=/usr/bin/ld
158+
CMAKE_LINKER:FILEPATH=/Library/Developer/CommandLineTools/usr/bin/ld
159159

160160
//Path to a program.
161161
CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/make
@@ -181,13 +181,13 @@ CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING=
181181
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
182182

183183
//Path to a program.
184-
CMAKE_NM:FILEPATH=/usr/bin/nm
184+
CMAKE_NM:FILEPATH=/Library/Developer/CommandLineTools/usr/bin/nm
185185

186186
//Path to a program.
187187
CMAKE_OBJCOPY:FILEPATH=CMAKE_OBJCOPY-NOTFOUND
188188

189189
//Path to a program.
190-
CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump
190+
CMAKE_OBJDUMP:FILEPATH=/Library/Developer/CommandLineTools/usr/bin/objdump
191191

192192
//Build architectures for OSX
193193
CMAKE_OSX_ARCHITECTURES:STRING=
@@ -210,7 +210,7 @@ CMAKE_PROJECT_HOMEPAGE_URL:STATIC=
210210
CMAKE_PROJECT_NAME:STATIC=simple-dgps
211211

212212
//Path to a program.
213-
CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib
213+
CMAKE_RANLIB:FILEPATH=/Library/Developer/CommandLineTools/usr/bin/ranlib
214214

215215
//Path to a program.
216216
CMAKE_READELF:FILEPATH=CMAKE_READELF-NOTFOUND
@@ -263,7 +263,7 @@ CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING=
263263
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING=
264264

265265
//Path to a program.
266-
CMAKE_STRIP:FILEPATH=/usr/bin/strip
266+
CMAKE_STRIP:FILEPATH=/Library/Developer/CommandLineTools/usr/bin/strip
267267

268268
//If this value is on, makefiles will be generated without the
269269
// .SILENT directive, and all commands will be echoed to the console

build/CMakeFiles/3.18.4/CMakeCCompiler.cmake

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
set(CMAKE_C_COMPILER "/usr/bin/gcc")
1+
set(CMAKE_C_COMPILER "/Library/Developer/CommandLineTools/usr/bin/cc")
22
set(CMAKE_C_COMPILER_ARG1 "")
33
set(CMAKE_C_COMPILER_ID "AppleClang")
44
set(CMAKE_C_COMPILER_VERSION "12.0.0.12000032")
@@ -18,11 +18,11 @@ set(CMAKE_C_SIMULATE_VERSION "")
1818

1919

2020

21-
set(CMAKE_AR "/usr/bin/ar")
21+
set(CMAKE_AR "/Library/Developer/CommandLineTools/usr/bin/ar")
2222
set(CMAKE_C_COMPILER_AR "")
23-
set(CMAKE_RANLIB "/usr/bin/ranlib")
23+
set(CMAKE_RANLIB "/Library/Developer/CommandLineTools/usr/bin/ranlib")
2424
set(CMAKE_C_COMPILER_RANLIB "")
25-
set(CMAKE_LINKER "/usr/bin/ld")
25+
set(CMAKE_LINKER "/Library/Developer/CommandLineTools/usr/bin/ld")
2626
set(CMAKE_MT "")
2727
set(CMAKE_COMPILER_IS_GNUCC )
2828
set(CMAKE_C_COMPILER_LOADED 1)

build/CMakeFiles/3.18.4/CMakeCXXCompiler.cmake

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
set(CMAKE_CXX_COMPILER "/usr/bin/g++")
1+
set(CMAKE_CXX_COMPILER "/Library/Developer/CommandLineTools/usr/bin/c++")
22
set(CMAKE_CXX_COMPILER_ARG1 "")
33
set(CMAKE_CXX_COMPILER_ID "AppleClang")
44
set(CMAKE_CXX_COMPILER_VERSION "12.0.0.12000032")
@@ -20,11 +20,11 @@ set(CMAKE_CXX_SIMULATE_VERSION "")
2020

2121

2222

23-
set(CMAKE_AR "/usr/bin/ar")
23+
set(CMAKE_AR "/Library/Developer/CommandLineTools/usr/bin/ar")
2424
set(CMAKE_CXX_COMPILER_AR "")
25-
set(CMAKE_RANLIB "/usr/bin/ranlib")
25+
set(CMAKE_RANLIB "/Library/Developer/CommandLineTools/usr/bin/ranlib")
2626
set(CMAKE_CXX_COMPILER_RANLIB "")
27-
set(CMAKE_LINKER "/usr/bin/ld")
27+
set(CMAKE_LINKER "/Library/Developer/CommandLineTools/usr/bin/ld")
2828
set(CMAKE_MT "")
2929
set(CMAKE_COMPILER_IS_GNUCXX )
3030
set(CMAKE_CXX_COMPILER_LOADED 1)
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

build/CMakeFiles/CMakeOutput.log

+50-50
Large diffs are not rendered by default.

build/CMakeFiles/CMakeRuleHashes.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Hashes of file build rules.
22
bbfedd6da3a10dcb3a200b5657eca057 ../include/cc.ublox.commsdsl/commsdsl/build/commsdsl_tgt-build
3-
50e8411271a5c009d0f3844350202fb4 ../include/cc.ublox.commsdsl/commsdsl/build/commsdsl_tgt-configure
3+
bbacc23d6eca6b3c2035038868e43543 ../include/cc.ublox.commsdsl/commsdsl/build/commsdsl_tgt-configure
44
796e0196797c15e0f65e44786514ae2e ../include/cc.ublox.commsdsl/commsdsl/build/commsdsl_tgt-download
55
4b1534f19e7b01117050dac9ced9edf8 ../include/cc.ublox.commsdsl/commsdsl/build/commsdsl_tgt-install
66
20313676a058c675dcc88bbb64ed7f40 ../include/cc.ublox.commsdsl/commsdsl/build/commsdsl_tgt-mkdir

build/cmake_install.cmake

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
1212
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
1313
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
1414
else()
15-
set(CMAKE_INSTALL_CONFIG_NAME "")
15+
set(CMAKE_INSTALL_CONFIG_NAME "Debug")
1616
endif()
1717
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
1818
endif()
@@ -34,7 +34,7 @@ endif()
3434

3535
# Set default install directory permissions.
3636
if(NOT DEFINED CMAKE_OBJDUMP)
37-
set(CMAKE_OBJDUMP "/usr/bin/objdump")
37+
set(CMAKE_OBJDUMP "/Library/Developer/CommandLineTools/usr/bin/objdump")
3838
endif()
3939

4040
if(NOT CMAKE_INSTALL_LOCAL_ONLY)

build/include/cc.ublox.commsdsl/CMakeFiles/commsdsl_tgt.dir/build.make

+1-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ include/cc.ublox.commsdsl/CMakeFiles/commsdsl_tgt-complete: ../include/cc.ublox.
122122
../include/cc.ublox.commsdsl/commsdsl/build/commsdsl_tgt-configure: ../include/cc.ublox.commsdsl/commsdsl/build/tmp/commsdsl_tgt-cfgcmd.txt
123123
../include/cc.ublox.commsdsl/commsdsl/build/commsdsl_tgt-configure: ../include/cc.ublox.commsdsl/commsdsl/build/commsdsl_tgt-patch
124124
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/Users/luickklippel/Documents/projekte/simple-dgps/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Performing configure step for 'commsdsl_tgt'"
125-
cd /Users/luickklippel/Documents/projekte/simple-dgps/include/cc.ublox.commsdsl/commsdsl/build && /usr/local/Cellar/cmake/3.18.4/bin/cmake -DCMAKE_BUILD_TYPE= -DCMAKE_INSTALL_PREFIX=/Users/luickklippel/Documents/projekte/simple-dgps/include/cc.ublox.commsdsl/commsdsl/install -DCOMMSDSL_NO_TESTS=ON -DCMAKE_C_COMPILER=/usr/bin/gcc -DCMAKE_CXX_COMPILER=/usr/bin/g++ -DBOOST_ROOT= -DCOMMSDSL_EXTERNALS_DIR=/Users/luickklippel/Documents/projekte/simple-dgps/include/cc.ublox.commsdsl/externals "-GUnix Makefiles" /Users/luickklippel/Documents/projekte/simple-dgps/include/cc.ublox.commsdsl/externals/commsdsl
125+
cd /Users/luickklippel/Documents/projekte/simple-dgps/include/cc.ublox.commsdsl/commsdsl/build && /usr/local/Cellar/cmake/3.18.4/bin/cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=/Users/luickklippel/Documents/projekte/simple-dgps/include/cc.ublox.commsdsl/commsdsl/install -DCOMMSDSL_NO_TESTS=ON -DCMAKE_C_COMPILER=/Library/Developer/CommandLineTools/usr/bin/cc -DCMAKE_CXX_COMPILER=/Library/Developer/CommandLineTools/usr/bin/c++ -DBOOST_ROOT= -DCOMMSDSL_EXTERNALS_DIR=/Users/luickklippel/Documents/projekte/simple-dgps/include/cc.ublox.commsdsl/externals "-GUnix Makefiles" /Users/luickklippel/Documents/projekte/simple-dgps/include/cc.ublox.commsdsl/externals/commsdsl
126126
cd /Users/luickklippel/Documents/projekte/simple-dgps/include/cc.ublox.commsdsl/commsdsl/build && /usr/local/Cellar/cmake/3.18.4/bin/cmake -E touch /Users/luickklippel/Documents/projekte/simple-dgps/include/cc.ublox.commsdsl/commsdsl/build/commsdsl_tgt-configure
127127

128128
../include/cc.ublox.commsdsl/commsdsl/build/commsdsl_tgt-build: ../include/cc.ublox.commsdsl/commsdsl/build/commsdsl_tgt-configure

build/include/cc.ublox.commsdsl/cmake_install.cmake

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
1212
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
1313
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
1414
else()
15-
set(CMAKE_INSTALL_CONFIG_NAME "")
15+
set(CMAKE_INSTALL_CONFIG_NAME "Debug")
1616
endif()
1717
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
1818
endif()
@@ -34,7 +34,7 @@ endif()
3434

3535
# Set default install directory permissions.
3636
if(NOT DEFINED CMAKE_OBJDUMP)
37-
set(CMAKE_OBJDUMP "/usr/bin/objdump")
37+
set(CMAKE_OBJDUMP "/Library/Developer/CommandLineTools/usr/bin/objdump")
3838
endif()
3939

4040
if(NOT CMAKE_INSTALL_LOCAL_ONLY)

build/include/cc.ublox.commsdsl/comms_champion/CMakeCache.txt

+9-9
Original file line numberDiff line numberDiff line change
@@ -47,17 +47,17 @@ CC_STATIC_RUNTIME:BOOL=OFF
4747
CMAKE_ADDR2LINE:FILEPATH=CMAKE_ADDR2LINE-NOTFOUND
4848

4949
//Path to a program.
50-
CMAKE_AR:FILEPATH=/usr/bin/ar
50+
CMAKE_AR:FILEPATH=/Library/Developer/CommandLineTools/usr/bin/ar
5151

5252
//Choose the type of build, options are: None Debug Release RelWithDebInfo
5353
// MinSizeRel ...
54-
CMAKE_BUILD_TYPE:STRING=
54+
CMAKE_BUILD_TYPE:STRING=Debug
5555

5656
//Enable/Disable color output during build.
5757
CMAKE_COLOR_MAKEFILE:BOOL=ON
5858

5959
//No help, variable specified on the command line.
60-
CMAKE_CXX_COMPILER:UNINITIALIZED=/usr/bin/g++
60+
CMAKE_CXX_COMPILER:UNINITIALIZED=/Library/Developer/CommandLineTools/usr/bin/c++
6161

6262
//Flags used by the CXX compiler during all build types.
6363
CMAKE_CXX_FLAGS:STRING=
@@ -78,7 +78,7 @@ CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
7878
CMAKE_CXX_STANDARD:UNINITIALIZED=14
7979

8080
//No help, variable specified on the command line.
81-
CMAKE_C_COMPILER:UNINITIALIZED=/usr/bin/gcc
81+
CMAKE_C_COMPILER:UNINITIALIZED=/Library/Developer/CommandLineTools/usr/bin/cc
8282

8383
//Flags used by the C compiler during all build types.
8484
CMAKE_C_FLAGS:STRING=
@@ -177,7 +177,7 @@ CMAKE_INSTALL_SHAREDSTATEDIR:PATH=com
177177
CMAKE_INSTALL_SYSCONFDIR:PATH=etc
178178

179179
//Path to a program.
180-
CMAKE_LINKER:FILEPATH=/usr/bin/ld
180+
CMAKE_LINKER:FILEPATH=/Library/Developer/CommandLineTools/usr/bin/ld
181181

182182
//Path to a program.
183183
CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/make
@@ -203,13 +203,13 @@ CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING=
203203
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
204204

205205
//Path to a program.
206-
CMAKE_NM:FILEPATH=/usr/bin/nm
206+
CMAKE_NM:FILEPATH=/Library/Developer/CommandLineTools/usr/bin/nm
207207

208208
//Path to a program.
209209
CMAKE_OBJCOPY:FILEPATH=CMAKE_OBJCOPY-NOTFOUND
210210

211211
//Path to a program.
212-
CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump
212+
CMAKE_OBJDUMP:FILEPATH=/Library/Developer/CommandLineTools/usr/bin/objdump
213213

214214
//Build architectures for OSX
215215
CMAKE_OSX_ARCHITECTURES:STRING=
@@ -232,7 +232,7 @@ CMAKE_PROJECT_HOMEPAGE_URL:STATIC=
232232
CMAKE_PROJECT_NAME:STATIC=comms_champion
233233

234234
//Path to a program.
235-
CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib
235+
CMAKE_RANLIB:FILEPATH=/Library/Developer/CommandLineTools/usr/bin/ranlib
236236

237237
//Path to a program.
238238
CMAKE_READELF:FILEPATH=CMAKE_READELF-NOTFOUND
@@ -285,7 +285,7 @@ CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING=
285285
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING=
286286

287287
//Path to a program.
288-
CMAKE_STRIP:FILEPATH=/usr/bin/strip
288+
CMAKE_STRIP:FILEPATH=/Library/Developer/CommandLineTools/usr/bin/strip
289289

290290
//No help, variable specified on the command line.
291291
CMAKE_TOOLCHAIN_FILE:UNINITIALIZED=

build/include/cc.ublox.commsdsl/comms_champion/CMakeFiles/3.18.4/CMakeCCompiler.cmake

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
set(CMAKE_C_COMPILER "/usr/bin/gcc")
1+
set(CMAKE_C_COMPILER "/Library/Developer/CommandLineTools/usr/bin/cc")
22
set(CMAKE_C_COMPILER_ARG1 "")
33
set(CMAKE_C_COMPILER_ID "AppleClang")
44
set(CMAKE_C_COMPILER_VERSION "12.0.0.12000032")
@@ -18,11 +18,11 @@ set(CMAKE_C_SIMULATE_VERSION "")
1818

1919

2020

21-
set(CMAKE_AR "/usr/bin/ar")
21+
set(CMAKE_AR "/Library/Developer/CommandLineTools/usr/bin/ar")
2222
set(CMAKE_C_COMPILER_AR "")
23-
set(CMAKE_RANLIB "/usr/bin/ranlib")
23+
set(CMAKE_RANLIB "/Library/Developer/CommandLineTools/usr/bin/ranlib")
2424
set(CMAKE_C_COMPILER_RANLIB "")
25-
set(CMAKE_LINKER "/usr/bin/ld")
25+
set(CMAKE_LINKER "/Library/Developer/CommandLineTools/usr/bin/ld")
2626
set(CMAKE_MT "")
2727
set(CMAKE_COMPILER_IS_GNUCC )
2828
set(CMAKE_C_COMPILER_LOADED 1)

build/include/cc.ublox.commsdsl/comms_champion/CMakeFiles/3.18.4/CMakeCXXCompiler.cmake

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
set(CMAKE_CXX_COMPILER "/usr/bin/g++")
1+
set(CMAKE_CXX_COMPILER "/Library/Developer/CommandLineTools/usr/bin/c++")
22
set(CMAKE_CXX_COMPILER_ARG1 "")
33
set(CMAKE_CXX_COMPILER_ID "AppleClang")
44
set(CMAKE_CXX_COMPILER_VERSION "12.0.0.12000032")
@@ -20,11 +20,11 @@ set(CMAKE_CXX_SIMULATE_VERSION "")
2020

2121

2222

23-
set(CMAKE_AR "/usr/bin/ar")
23+
set(CMAKE_AR "/Library/Developer/CommandLineTools/usr/bin/ar")
2424
set(CMAKE_CXX_COMPILER_AR "")
25-
set(CMAKE_RANLIB "/usr/bin/ranlib")
25+
set(CMAKE_RANLIB "/Library/Developer/CommandLineTools/usr/bin/ranlib")
2626
set(CMAKE_CXX_COMPILER_RANLIB "")
27-
set(CMAKE_LINKER "/usr/bin/ld")
27+
set(CMAKE_LINKER "/Library/Developer/CommandLineTools/usr/bin/ld")
2828
set(CMAKE_MT "")
2929
set(CMAKE_COMPILER_IS_GNUCXX )
3030
set(CMAKE_CXX_COMPILER_LOADED 1)

0 commit comments

Comments
 (0)