Skip to content

Commit 5d9b2ea

Browse files
authored
Merge pull request #2037 from swiftwasm/katei/merge-main-2020-10-20
Merge main 2020-10-20
2 parents d4d0808 + a245772 commit 5d9b2ea

File tree

91 files changed

+5190
-873
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

91 files changed

+5190
-873
lines changed

.github/workflows/main.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -126,8 +126,10 @@ jobs:
126126
${{ runner.os }}-sccache-v10-
127127
- name: Build macOS installable archive
128128
run: |
129-
sudo xcode-select --switch /Applications/Xcode_12.app/Contents/Developer/
129+
sudo xcode-select --switch /Applications/Xcode_12.2.0.app/Contents/Developer/
130130
./utils/webassembly/ci.sh
131+
env:
132+
SKIP_XCODE_VERSION_CHECK: 1
131133
- name: Upload macOS installable archive
132134
uses: actions/upload-artifact@v1
133135
with:

cmake/modules/AddSwift.cmake

+1-1
Original file line numberDiff line numberDiff line change
@@ -473,7 +473,7 @@ function(add_swift_host_library name)
473473
INSTALL_NAME_DIR "@rpath")
474474
elseif(SWIFT_HOST_VARIANT_SDK STREQUAL LINUX)
475475
set_target_properties(${name} PROPERTIES
476-
INSTALL_RPATH "$ORIGIN:/usr/lib/swift/linux")
476+
INSTALL_RPATH "$ORIGIN")
477477
elseif(SWIFT_HOST_VARIANT_SDK STREQUAL CYGWIN)
478478
set_target_properties(${name} PROPERTIES
479479
INSTALL_RPATH "$ORIGIN:/usr/lib/swift/cygwin")

docs/CppInteroperabilityManifesto.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3197,7 +3197,7 @@ UTF-8 data.
31973197
class Employee {
31983198
public:
31993199
std::string DebugDescription() const;
3200-
[[swift::import_as_std_string]] std::string SeriaziledAsProtobuf() const;
3200+
[[swift::import_as_std_string]] std::string SerializedAsProtobuf() const;
32013201
};
32023202
```
32033203

0 commit comments

Comments
 (0)