summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Lively <7121787+tlively@users.noreply.github.com>2021-06-22 18:25:55 +0000
committerGitHub <noreply@github.com>2021-06-22 11:25:55 -0700
commit6951511e7079a0ff4b0ae06d137f9b3bd18b81f8 (patch)
tree8259ee93d8e6d89de62762883e0a4aa42cbe6211
parent40fc101296b11ef237a80224a194c2817e5864c3 (diff)
downloadbinaryen-6951511e7079a0ff4b0ae06d137f9b3bd18b81f8.tar.gz
binaryen-6951511e7079a0ff4b0ae06d137f9b3bd18b81f8.tar.bz2
binaryen-6951511e7079a0ff4b0ae06d137f9b3bd18b81f8.zip
Revert accidental debugging changes from #3935 (#3950)
-rw-r--r--.github/workflows/ci.yml6
-rw-r--r--CMakeLists.txt4
2 files changed, 3 insertions, 7 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index fa9cfed54..41bbb031e 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -78,14 +78,14 @@ jobs:
- name: cmake (win)
# -G "Visual Studio 15 2017"
- run: cmake -S . -B out -DCMAKE_INSTALL_PREFIX=out/install -DCMAKE_BUILD_TYPE=RelWithDebInfo
+ run: cmake -S . -B out -DCMAKE_INSTALL_PREFIX=out/install
if: matrix.os == 'windows-latest'
- name: build
- run: cmake --build out --config RelWithDebInfo
+ run: cmake --build out --config Release
- name: install
- run: cmake --install out --config RelWithDebInfo
+ run: cmake --install out --config Release
- name: strip
run: find out/install/ -type f -perm -u=x -exec strip -x {} +
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 53ef83bc3..45b4a0282 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -345,10 +345,6 @@ function(binaryen_add_executable name sources)
set_property(TARGET ${name} PROPERTY CXX_STANDARD_REQUIRED ON)
binaryen_setup_rpath(${name})
install(TARGETS ${name} DESTINATION ${CMAKE_INSTALL_BINDIR})
- if (MSVC)
- install(FILES ${CMAKE_BINARY_DIR}/bin/${name}.pdb
- DESTINATION ${CMAKE_INSTALL_BINDIR})
- endif()
endfunction()
binaryen_add_executable(wasm-opt src/tools/wasm-opt.cpp)