Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit3db878f

Browse files
authored
Enable --debug:full on coreclr (dotnet#4366)
1 parent02dbf9e commit3db878f

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

‎src/fsharp/CompileOptions.fs‎

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -470,7 +470,13 @@ let SetDebugSwitch (tcConfigB : TcConfigBuilder) (dtype : string option) (s : Op
470470
|"portable"-> tcConfigB.portablePDB<-true; tcConfigB.embeddedPDB<-false; tcConfigB.jitTracking<-true; tcConfigB.ignoreSymbolStoreSequencePoints<-true
471471
|"pdbonly"-> tcConfigB.portablePDB<-false; tcConfigB.embeddedPDB<-false; tcConfigB.jitTracking<-false
472472
|"embedded"-> tcConfigB.portablePDB<-true; tcConfigB.embeddedPDB<-true; tcConfigB.jitTracking<-true; tcConfigB.ignoreSymbolStoreSequencePoints<-true
473+
#if FX_NO_PDB_WRITER
474+
// When building on the coreclr, full means portable
475+
|"full"-> tcConfigB.portablePDB<-true; tcConfigB.embeddedPDB<-false; tcConfigB.jitTracking<-true
476+
#else
473477
|"full"-> tcConfigB.portablePDB<-false; tcConfigB.embeddedPDB<-false; tcConfigB.jitTracking<-true
478+
#endif
479+
474480
|_-> error(Error(FSComp.SR.optsUnrecognizedDebugType(s), rangeCmdArgs))
475481
| None-> tcConfigB.portablePDB<-false; tcConfigB.embeddedPDB<-false; tcConfigB.jitTracking<- s= OptionSwitch.On;
476482
tcConfigB.debuginfo<- s= OptionSwitch.On

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp