diff options
author | Partouf <partouf@gmail.com> | 2018-11-08 18:21:10 +0100 |
---|---|---|
committer | Partouf <partouf@gmail.com> | 2018-11-08 18:21:10 +0100 |
commit | 1640e28cdc83244d82e0a3ba0970d8a028d378c2 (patch) | |
tree | 097508280403110d23737a1a44c4e688d6d90f0a /lib/compilers/win32.js | |
parent | ae47e2b40a305cf32e160b7581e581dda8f199e6 (diff) | |
download | compiler-explorer-1640e28cdc83244d82e0a3ba0970d8a028d378c2.tar.gz compiler-explorer-1640e28cdc83244d82e0a3ba0970d8a028d378c2.zip |
disable VC objdump by default
Diffstat (limited to 'lib/compilers/win32.js')
-rw-r--r-- | lib/compilers/win32.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/compilers/win32.js b/lib/compilers/win32.js index 5768f0afd..557547c03 100644 --- a/lib/compilers/win32.js +++ b/lib/compilers/win32.js @@ -42,7 +42,7 @@ class Win32Compiler extends BaseCompiler { } supportsObjdump() { - return true; + return false; } getExecutableFilename(dirPath, outputFilebase) { |