File tree Expand file tree Collapse file tree 6 files changed +14
-13
lines changed Expand file tree Collapse file tree 6 files changed +14
-13
lines changed Original file line number Diff line number Diff line change @@ -142,7 +142,7 @@ stages:
142
142
parameters :
143
143
name : Alpine3_13
144
144
osGroup : Linux
145
- dockerImage : mcr.microsoft.com/dotnet-buildtools/prereqs:alpine-3.13-WithNode-20210728123842-ddfc481
145
+ dockerImage : mcr.microsoft.com/dotnet-buildtools/prereqs:alpine-3.13-WithNode-20210910135845-c401c85
146
146
artifactsTargetPath : bin/Linux-musl.x64.Release
147
147
requiresCapPtraceContainer : true
148
148
strategy :
@@ -193,7 +193,7 @@ stages:
193
193
parameters :
194
194
name : Linux_cross
195
195
osGroup : Linux
196
- dockerImage : mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-14 .04-cross-1735d26-20190521133857
196
+ dockerImage : mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-16 .04-cross-20210719121212-8a8d3be
197
197
crossrootfsDir : ' /crossrootfs/arm'
198
198
buildAndSkipTest : true
199
199
strategy :
@@ -207,7 +207,7 @@ stages:
207
207
parameters :
208
208
name : Linux_cross64
209
209
osGroup : Linux
210
- dockerImage : mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-16.04-cross-arm64-a3ae44b-20180315221921
210
+ dockerImage : mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-16.04-cross-arm64-20210719121212-8a8d3be
211
211
crossrootfsDir : ' /crossrootfs/arm64'
212
212
buildAndSkipTest : true
213
213
strategy :
@@ -221,7 +221,7 @@ stages:
221
221
parameters :
222
222
name : Alpine_cross64
223
223
osGroup : Linux
224
- dockerImage : mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-16.04-cross-arm64-alpine-20210719121212-b2c2436
224
+ dockerImage : mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-16.04-cross-arm64-alpine-20210923140502-78f7860
225
225
crossrootfsDir : ' /crossrootfs/arm64'
226
226
artifactsTargetPath : bin/Linux-musl.arm64.Release
227
227
buildAndSkipTest : true
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ handle_arguments() {
45
45
lowerI=" $( echo " $1 " | tr " [:upper:]" " [:lower:]" ) "
46
46
case " $lowerI " in
47
47
architecture|-architecture|-a)
48
- BuildArch =" $( echo " $2 " | tr " [:upper:]" " [:lower:]" ) "
48
+ __BuildArch =" $( echo " $2 " | tr " [:upper:]" " [:lower:]" ) "
49
49
__ShiftArgs=1
50
50
;;
51
51
Original file line number Diff line number Diff line change @@ -218,10 +218,10 @@ endif()
218
218
219
219
list (APPEND SOS_SOURCES ${SOS_SOURCES_ARCH} )
220
220
221
- if (CLR_CMAKE_HOST_LINUX OR CLR_CMAKE_PLATFORM_FREEBSD OR CLR_CMAKE_PLATFORM_NETBSD )
221
+ if (CLR_CMAKE_HOST_LINUX OR CLR_CMAKE_HOST_FREEBSD OR CLR_CMAKE_HOST_NETBSD OR CLR_CMAKE_HOST_SUNOS )
222
222
# Add linker exports file option
223
223
set (EXPORTS_LINKER_OPTION -Wl,--version-script=${EXPORTS_FILE} )
224
- endif (CLR_CMAKE_HOST_LINUX OR CLR_CMAKE_PLATFORM_FREEBSD OR CLR_CMAKE_PLATFORM_NETBSD )
224
+ endif (CLR_CMAKE_HOST_LINUX OR CLR_CMAKE_HOST_FREEBSD OR CLR_CMAKE_HOST_NETBSD OR CLR_CMAKE_HOST_SUNOS )
225
225
226
226
if (CLR_CMAKE_HOST_OSX )
227
227
# Add linker exports file option
Original file line number Diff line number Diff line change @@ -284,11 +284,7 @@ PAL_IsDebuggerPresent(VOID);
284
284
285
285
#ifndef PAL_STDCPP_COMPAT
286
286
287
- #if _WIN64 || _MSC_VER >= 1400
288
287
typedef __int64 time_t ;
289
- #else
290
- typedef long time_t ;
291
- #endif
292
288
#define _TIME_T_DEFINED
293
289
#endif // !PAL_STDCPP_COMPAT
294
290
Original file line number Diff line number Diff line change @@ -1075,7 +1075,7 @@ int main()
1075
1075
}" HAVE_FULLY_FEATURED_PTHREAD_MUTEXES )
1076
1076
set (CMAKE_REQUIRED_LIBRARIES )
1077
1077
1078
- if (NOT CLR_CMAKE_HOST_ARCH_ARM AND NOT CLR_CMAKE_PLATFORM_ARCH_ARM64 )
1078
+ if (NOT CLR_CMAKE_HOST_ARCH_ARM AND NOT CLR_CMAKE_HOST_ARCH_ARM64 )
1079
1079
set (CMAKE_REQUIRED_LIBRARIES pthread )
1080
1080
check_cxx_source_runs ("
1081
1081
// This test case verifies the pthread process-shared robust mutex's cross-process abandon detection. The parent process starts
Original file line number Diff line number Diff line change @@ -207,7 +207,12 @@ PAL_time(PAL_time_t *tloc)
207
207
PERF_ENTRY (time);
208
208
ENTRY ( " time( tloc=%p )\n " ,tloc );
209
209
210
- result = time (tloc);
210
+ time_t t;
211
+ result = time (&t);
212
+ if (tloc != NULL )
213
+ {
214
+ *tloc = t;
215
+ }
211
216
212
217
LOGEXIT ( " time returning %#lx\n " ,result );
213
218
PERF_EXIT (time);
You can’t perform that action at this time.
0 commit comments