File tree 2 files changed +6
-5
lines changed
2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -169,6 +169,7 @@ mod tests {
169
169
"thumbv7-unknown-linux-gnueabihf" ,
170
170
"thumbv7-unknown-linux-musleabihf" ,
171
171
"x86_64-rumprun-netbsd" ,
172
+ "x86_64-unknown-linux" ,
172
173
] ;
173
174
174
175
for target in targets {
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ fn gnu_opt_level_s() {
59
59
fn gnu_debug ( ) {
60
60
let test = Test :: gnu ( ) ;
61
61
test. gcc ( )
62
- . target ( "x86_64-unknown-linux" )
62
+ . target ( "x86_64-unknown-linux-none " )
63
63
. debug ( true )
64
64
. file ( "foo.c" )
65
65
. compile ( "foo" ) ;
@@ -78,7 +78,7 @@ fn gnu_debug() {
78
78
fn gnu_debug_fp_auto ( ) {
79
79
let test = Test :: gnu ( ) ;
80
80
test. gcc ( )
81
- . target ( "x86_64-unknown-linux" )
81
+ . target ( "x86_64-unknown-linux-none " )
82
82
. debug ( true )
83
83
. file ( "foo.c" )
84
84
. compile ( "foo" ) ;
@@ -90,7 +90,7 @@ fn gnu_debug_fp_auto() {
90
90
fn gnu_debug_fp ( ) {
91
91
let test = Test :: gnu ( ) ;
92
92
test. gcc ( )
93
- . target ( "x86_64-unknown-linux" )
93
+ . target ( "x86_64-unknown-linux-none " )
94
94
. debug ( true )
95
95
. file ( "foo.c" )
96
96
. compile ( "foo" ) ;
@@ -104,7 +104,7 @@ fn gnu_debug_nofp() {
104
104
105
105
let test = Test :: gnu ( ) ;
106
106
test. gcc ( )
107
- . target ( "x86_64-unknown-linux" )
107
+ . target ( "x86_64-unknown-linux-none " )
108
108
. debug ( true )
109
109
. force_frame_pointer ( false )
110
110
. file ( "foo.c" )
@@ -114,7 +114,7 @@ fn gnu_debug_nofp() {
114
114
115
115
let test = Test :: gnu ( ) ;
116
116
test. gcc ( )
117
- . target ( "x86_64-unknown-linux" )
117
+ . target ( "x86_64-unknown-linux-none " )
118
118
. force_frame_pointer ( false )
119
119
. debug ( true )
120
120
. file ( "foo.c" )
You can’t perform that action at this time.
0 commit comments