File tree Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 1
1
---
2
- refs/heads/master: b2dad8af31d5d77e9e7da8561d87249fff216e80
2
+ refs/heads/master: a3320435610364457bf4ae08d1de64c3a96fca68
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ RUNTIME_CS := rt/sync/timer.cpp \
33
33
34
34
RUNTIME_LL :=
35
35
36
- RUNTIME_S := rt/arch/i386/_context.s
36
+ RUNTIME_S := rt/arch/i386/_context.S
37
37
38
38
RUNTIME_HDR := rt/globals.h \
39
39
rt/rust.h \
@@ -67,14 +67,14 @@ RUNTIME_HDR := rt/globals.h \
67
67
RUNTIME_DEF := rt/rustrt$(CFG_DEF_SUFFIX )
68
68
RUNTIME_INCS := -I $(S ) src/rt/isaac -I $(S ) src/rt/uthash \
69
69
-I $(S ) src/rt/arch/i386 -I $(S ) src/rt/libuv/include
70
- RUNTIME_OBJS := $(RUNTIME_CS:.cpp=.o ) $(RUNTIME_LL:.ll=.o ) $(RUNTIME_S:.s =.o )
70
+ RUNTIME_OBJS := $(RUNTIME_CS:.cpp=.o ) $(RUNTIME_LL:.ll=.o ) $(RUNTIME_S:.S =.o )
71
71
RUNTIME_LIBS := rt/libuv/uv.a
72
72
73
73
rt/% .o : rt/% .cpp $(MKFILES )
74
74
@$(call E, compile: $@ )
75
75
$(Q )$(call CFG_COMPILE_C, $@ , $(RUNTIME_INCS ) ) $<
76
76
77
- rt/% .o : rt/% .s $(MKFILES )
77
+ rt/% .o : rt/% .S $(MKFILES )
78
78
@$(call E, compile: $@ )
79
79
$(Q )$(call CFG_COMPILE_C, $@ , $(RUNTIME_INCS ) ) $<
80
80
Original file line number Diff line number Diff line change @@ -78,4 +78,8 @@ swap_registers:
78
78
.globl task_trampoline
79
79
task_trampoline:
80
80
// This gets set up by std::task::_spawn.
81
+ #ifdef __APPLE__
81
82
call _task_exit
83
+ #else
84
+ call task_exit
85
+ #endif
You can’t perform that action at this time.
0 commit comments