From bb3b79067e44ef8effba4d9790c9a4aa9c3555f1 Mon Sep 17 00:00:00 2001 From: Aurelius84 Date: Mon, 12 Apr 2021 15:32:47 +0800 Subject: [PATCH] [CustomOp]Fix description of supporting MacOS (#32192) --- python/paddle/utils/cpp_extension/cpp_extension.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/paddle/utils/cpp_extension/cpp_extension.py b/python/paddle/utils/cpp_extension/cpp_extension.py index 83dc1d2582..ab528cdb0c 100644 --- a/python/paddle/utils/cpp_extension/cpp_extension.py +++ b/python/paddle/utils/cpp_extension/cpp_extension.py @@ -75,7 +75,7 @@ def setup(**attr): .. note:: - 1. Currently we support Linux and Windows platfrom. MacOS is supporting... + 1. Currently we support Linux, MacOS and Windows platfrom. 2. On Linux platform, we recommend to use GCC 8.2 as soft linking condidate of ``/usr/bin/cc`` . Then, Use ``which cc`` to ensure location of ``cc`` and using ``cc --version`` to ensure linking GCC version. @@ -745,7 +745,7 @@ def load(name, .. note:: - 1. Currently we support Linux and Windows platfrom. MacOS is supporting... + 1. Currently we support Linux, MacOS and Windows platfrom. 2. On Linux platform, we recommend to use GCC 8.2 as soft linking condidate of ``/usr/bin/cc`` . Then, Use ``which cc`` to ensure location of ``cc`` and using ``cc --version`` to ensure linking GCC version. -- GitLab