並び順

ブックマーク数

期間指定

  • から
  • まで

1 - 40 件 / 69件

新着順 人気順

gccの検索結果1 - 40 件 / 69件

  • 822823回マクロを展開するとGCCが死ぬ - Qiita

    はじめに Rui UeyamaさんのCコンパイラ作成集中講座 (2020) 第14回を聞いて知ったのですが、GCCは「同じマクロ」が定義された時に、マクロの再定義警告をしないんですね。例えばこんなコードです。 #include <cstdio> #define A 1 #define B 1 #define A 1 // No warning #define B 2 // test.cpp:7:0: warning: "B" redefined int main() { printf("%d %d\n", A, B); }

      822823回マクロを展開するとGCCが死ぬ - Qiita
    • GitHub - tandasat/UEFI-BIOS-Security: Security Camp 2021 & GCC 2022

      You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

        GitHub - tandasat/UEFI-BIOS-Security: Security Camp 2021 & GCC 2022
      • サウジアラビアに買収されたSNKの今。世界TOP10のパブリッシャーを目指す構想を松原社長が語る【GCC2024】

        2024年4月5日に、ゲーム開発者向けカンファレンス「GAME CREATORS CONFERENCE ‘24」が開催されました。 本稿は、SNK 代表取締役社長 松原 健二氏が登壇した講演「ゲーム会社の社長は何を考えているか」にフォーカス。どのように株主やユーザー、従業員などのさまざまな立場の人々の意見を取り入れ、目標を実現しているかが語られた本セッションをレポートします。 TEXT / HATA EDIT / 酒井 理恵 登壇したのはSNK 代表取締役社長 松原 健二氏。ゲーム業界の黎明期にITのエンジニアとして日立製作所に入社し、メインフレームやスーパーコンピューターを作っていました。その後、留学、外資系での勤務を経て、インターネットを使ったモノづくりやサービス作りをする会社を探していたところ友人が当時の光栄(現:コーエーテクモホールディングス)を紹介。オンラインゲームの開発を担当す

          サウジアラビアに買収されたSNKの今。世界TOP10のパブリッシャーを目指す構想を松原社長が語る【GCC2024】
        • 2021年6月2日 もうFSFにとらわれない ―GCC運営、FSFへの著作権移譲を開発者に求めないポリシーに | gihyo.jp

          Linux Daily Topics 2021年6月2日もうFSFにとらわれない ―GCC運営、FSFへの著作権移譲を開発者に求めないポリシーに GCCプロジェクトを運営するGCC Steering Committeeは6月1日、GCC 9のポイントリリース「GCC 9.4」の公開に合わせ、GCCの著作権譲渡ポリシーの変更を発表、今後はFree Software Foundation(FSF)への著作権譲渡をコントリビュータに依頼しない方針を明らかにした。GCCをはじめとするGNUプロジェクトへのコントリビュータはこれまで自身が開発したプログラムの著作権をFSFに移譲するよう求められてきたが、GCCに関してはその縛りがなくなることになる。 Update to GCC copyright assignment policy GCC Steering CommitteeメンバーであるDavid

            2021年6月2日 もうFSFにとらわれない ―GCC運営、FSFへの著作権移譲を開発者に求めないポリシーに | gihyo.jp
          • `zig cc`: a Powerful Drop-In Replacement for GCC/Clang - Andrew Kelley

            `zig cc`: a Powerful Drop-In Replacement for GCC/Clang If you have heard of Zig before, you may know it as a promising new programming language which is ambitiously trying to overthrow C as the de-facto systems language. But did you know that it also can straight up compile C code? This has been possible for a while, and you can see some examples of this on the home page. What's new is that the zi

            • gccの最適化指示-Ofastは危険 - Qiita

              はじめに gccの最適化指示である-Ofastをお気軽に使ってる記事を見掛けたので注意喚起的なやつです。 -Ofastとは何ぞや gccのドキュメントから引用 https://gcc.gnu.org/onlinedocs/gcc/Optimize-Options.html#index-Ofast -Ofast Disregard strict standards compliance. -Ofast enables all -O3 optimizations. It also enables optimizations that are not valid for all standard-compliant programs. It turns on -ffast-math, -fallow-store-data-races and the Fortran-specific -fstac

                gccの最適化指示-Ofastは危険 - Qiita
              • GitHub - Rust-GCC/gccrs: GCC Front-End for Rust

                Please note, the compiler is in a very early stage and not usable yet for compiling real Rust programs. gccrs is a full alternative implementation of the Rust language ontop of GCC with the goal to become fully upstream with the GNU toolchain. The origin of this project was a community effort several years ago where Rust was still at version 0.9; the language was subject to so much change that it

                  GitHub - Rust-GCC/gccrs: GCC Front-End for Rust
                • GCC for New Contributors — GCC Contributors Guide 0.1 documentation

                  GCC for New Contributors¶ This is an unofficial guide to GCC’s internals, aimed at new developers, and at plugin authors. Source: https://github.com/davidmalcolm/gcc-newbies-guide I’m a relative newcomer to GCC, so I thought it was worth documenting some of the hurdles I ran into when I started working on GCC, to try to make it easier for others to start hacking on GCC. Hence this guide. Other sou

                  • Progress toward a GCC-based Rust compiler [LWN.net]

                    This article brought to you by LWN subscribersSubscribers to LWN.net made this article — and everything that surrounds it — possible. If you appreciate our content, please buy a subscription and make the next set of articles possible. The gccrs project is an ambitious effort started in 2014 to implement a Rust compiler within The GNU Compiler Collection (GCC). Even though the task is far from comp

                    • GCC undefined behaviors are getting wild

                      Happy with my recent breakthrough in understanding C integer divisions after weeks of struggle, I was minding my own business having fun writing integer arithmetic code. Life was good, when suddenly… zsh: segmentation fault (core dumped). That code wasn't messing with memory much so it was more likely to be a side effect of an arithmetic overflow or something. Using -fsanitize=undefined quickly id

                      • 「GCC 10.1」リリース、静的コード解析機能が実験的に導入される | OSDN Magazine

                        The GNU Compiler Collection(GCC)開発チームは5月7日、最新のメジャーリリースとなる「GCC 10.1」公開を発表した。静的コード解析が実験的に導入され、C++20のサポートも強化した。 The GNU Compiler Collection(GCC)はGNUオペレーティングシステム向けのコンパイラとして開発がスタートしたプロジェクトで、 C/C++やObjective-C、Fortran、Ada、Go、Dなどさまざまな言語に対応するフロントエンドとライブラリを提供する。 GCC 10.1は、2019年5月に公開されたGCC 9.1に続くメジャーリリース。この間、プロジェクトはバージョン管理をSubversionからGitに変更している。 C++20のサポートが、コンパイラとlibstdc++ライブラリの両面で強化されている。constexpr関数における評価

                          「GCC 10.1」リリース、静的コード解析機能が実験的に導入される | OSDN Magazine
                        • GCC 12.1 Compiler Released With AVX-512 FP16, Better RISC-V Support, More C++23 Features - Phoronix

                          GCC 12.1 Compiler Released With AVX-512 FP16, Better RISC-V Support, More C++23 Features Written by Michael Larabel in GNU on 6 May 2022 at 06:35 AM EDT. 6 Comments GCC 12.1 is out today as the first stable release of GCC 12. It also marks 35 years already since the release of GCC 1.0. With a year's worth of changes, GCC 12.1 is a big feature release with a lot of good stuff in it from new C/C++ f

                            GCC 12.1 Compiler Released With AVX-512 FP16, Better RISC-V Support, More C++23 Features - Phoronix
                          • 電力不足のイラク、GCCと協定 クウェートから送電線 500メガワット輸入へ

                            イラク南部の港町アルファウで魚を運ぶ漁師(2019年4月30日撮影、資料写真)。(c)Hussein FALEH / AFP 【9月16日 AFP】イラクと湾岸協力会議(GCC)は15日、2020年までにイラクが送電線を通じて500メガワットの電力を輸入すると定めた歴史的な協定に署名した。 イラク電力省によると、GCCが提供する資金で、クウェートからイラク南部のアルファウ(Al Faw)港まで300キロに及ぶ送電線を建設する。イラクの電力需要は推定で24ギガワットだが、実際の供給量はそれを9ギガワットも下回っている。 イラクのルアイ・ハティブ(Luay al-Khatteeb)電力相は、イラクの首都バグダッドでエネルギー関連の会議が開かれたのに合わせて、湾岸協力会議系統連系局(GCCIA)のアフマド・イブラヒム(Ahmad Ibrahim)局長と共に、合意文書に署名した。 ハティブ電力相は

                              電力不足のイラク、GCCと協定 クウェートから送電線 500メガワット輸入へ
                            • 「保管追加 令和元年10月」映画とGCCX - #楽活!収入増やして人生を楽しく!

                              映画 「この世界の片隅に」 2016年  日本アニメ 声の出演 のん 戦争のときでも日常生活は続く。ぜひ、1度は見てほしい作品。 「マリと子犬の物語」 2016年  日本 出演 船越英一郎 松本明子 宇津井健 久石譲の音楽。実際の話をもとに製作された。ヘリコプターで脱出したシーン、心に刺さります。 「パール・ハーバー」 2001年  アメリカ 出演 ベン・アフレック 「星になった少年」 2005年  日本 出演 柳楽優弥 実際の話に基づく作品。 「チョコレート・ドーナツ」 2012年  アメリカ 出演 アラン・カミング 「レデイ・プレイヤー1」 2018年  アメリカ 出演 タイ・シェリダン 「プーと大人になった僕」 2018年  アメリカ 出演 ユアン・マクレガー 「ブレイド」 1998年  アメリカ 出演 ウェズリー・スナイプス ヴァンパイアとの壮絶な戦い。スタイリッシュなアクション。

                                「保管追加 令和元年10月」映画とGCCX - #楽活!収入増やして人生を楽しく!
                              • AMDが未発表のZen 5アーキテクチャ向けコンパイル機能をGCCに追加

                                オープンソースのコンパイラ「GCC」にAMDが開発中のCPUアーキテクチャ「Zen 5」に関連すると思われるパッチが導入されました。 AMD Zen 5 "Znver5" CPU Enablement Merged For GCC 14 - Phoronix https://www.phoronix.com/news/AMD-Zen-5-Znver5-Merged-GCC14 AMD adds support for Zen 5 to Linux GCC compiler | Tom's Hardware https://www.tomshardware.com/pc-components/cpus/amd-adds-support-for-zen-5-to-linux-gcc-compiler AMDは、2024年2月に「znver5」と呼ばれるプロセッサを対象にしたパッチを提出していま

                                  AMDが未発表のZen 5アーキテクチャ向けコンパイル機能をGCCに追加
                                • cc, gcc, g++の違い - kamocyc’s blog

                                  C++は初心者なので調べたことをメモ. C++のコンパイルに使うcc, gcc, g++コマンドの違いについて(Ubuntu 18.04) 元ネタ: c++ - Difference between CC, gcc and g++? - Stack Overflow c++ - What is the difference between g++ and gcc? - Stack Overflow まず,gccとg++の違い.これはC用とC++用の違いである. gccは,GNU C Compilerの意味 g++は,GNU C++ Compilerの意味 なお,gccとg++はともにGNU Compiler Collection(Wikipedia)のcompiler-driver(コンパイラを呼び出すプログラム). ただし,実体としては,g++はgccにオプションを追加して呼び出すことと

                                    cc, gcc, g++の違い - kamocyc’s blog
                                  • GCCに27958段ネストした関数を食わせると死ぬ

                                    TL;DR f(f(f(f(1))))のように関数をネストして呼び出す時、27958段以上ネストするとGCCが死ぬので気を付けましょう。 はじめに 最近のコンパイラは、関数のインライン展開をやってくれます。例えば

                                      GCCに27958段ネストした関数を食わせると死ぬ
                                    • Compiler Explorer - C (x86-64 gcc 8.1)

                                      Add new...Clone CompilerExecutor From ThisOptimizationPreprocessorASTLLVM IRLLVM Opt PipelineDeviceRust MIRRust HIRRust Macro ExpansionGHC CoreGHC STGGHC CmmGCC Tree/RTLGNAT Debug TreeGNAT Debug Expanded CodeControl Flow Graph

                                        Compiler Explorer - C (x86-64 gcc 8.1)
                                      • It Looks Like GCC's Long-Awaited Git Conversion Could Happen This Weekend - Phoronix

                                        Show Your Support: Have you heard of Phoronix Premium? It's what complements advertisements on this site for our premium ad-free service. For less than $4 USD per month, you can help support our site while the funds generated allow us to keep doing Linux hardware reviews, performance benchmarking, maintain our community forums, and much more. It Looks Like GCC's Long-Awaited Git Conversion Could H

                                          It Looks Like GCC's Long-Awaited Git Conversion Could Happen This Weekend - Phoronix
                                        • Gcc Ar 24 Vinyl Cutter Floor Stand Sca Software For Mac

                                          Visiteurs depuis le 26/01/2019 : 4344 Connectés : 1 Record de connectés : 16 E-book manual restart for mac. If that app pops up an 'Are you sure?' For example, if I need to shutdown from the command line, OSX will tell each app one-at-a-time to quit. It's noted in the QA1134 link, but good to note here that the unattended shutdown and restart commands will fail if any running app fails to respond

                                            Gcc Ar 24 Vinyl Cutter Floor Stand Sca Software For Mac
                                          • 「保管追加 令和元年11月①」映画とアニメと音楽とGCCX - #楽活!収入増やして人生を楽しく!

                                            11月に追加した作品を紹介いたします。 映画 「インビクタス/負けざる者たち」 2009年  アメリカ制作 ワールドカップ日本開催は盛り上がり、感動しました。南アフリカがひとつになった戦い、最後の得点に感動します。 「ゴッドファーザー」 1972年 アメリカ制作 3部作の最初の作品。ゴットファザーの演技のすごみ。若きアルパチーノの躍動。レストランでの緊張感。音楽と風景。暗殺の仕方。ファミリーの掟など、最後のドア越しの終わり方など、どこをとっても名作。 「ソードアート・オンライン オーディナル・スケール」 2017年 日本アニメーション VR技術を使ったオンラインゲームはただのゲームではなく、実際の命をやり取りするというゲームとなってしまった事件の続きの物語。VRの世界ではなく、AR(拡張現実)がゲームの舞台となっている。物語そのものも魅力的だが、世界観がいつかくるのではないかと想像させられ

                                              「保管追加 令和元年11月①」映画とアニメと音楽とGCCX - #楽活!収入増やして人生を楽しく!
                                            • Improvements to static analysis in the GCC 14 compiler | Red Hat Developer

                                              I work at Red Hat on GCC, the GNU Compiler Collection. For the last five releases of GCC, I've been working on -fanalyzer, a static analysis pass that tries to identify various problems at compile-time, rather than at runtime. It performs "symbolic execution" of C source code—effectively simulating the behavior of the code along the various possible paths of execution through it. This article summ

                                                Improvements to static analysis in the GCC 14 compiler | Red Hat Developer
                                              • Rust GCC Code Generator "rustc_codegen_gcc" Can Now Bootstrap Rustc - Phoronix

                                                Rust GCC Code Generator "rustc_codegen_gcc" Can Now Bootstrap Rustc Written by Michael Larabel in Programming on 2 April 2022 at 08:00 AM EDT. 122 Comments A huge milestone has been reached in the rustc_codegen_gcc effort that aims to offer a GCC-based Rust compiler alternative to the LLVM-based official Rust compiler. The rustc_codegen_gcc project that builds upon libgccjit for offering ahead-of-

                                                  Rust GCC Code Generator "rustc_codegen_gcc" Can Now Bootstrap Rustc - Phoronix
                                                • GCC 12 Adds Support For Using The Mold Linker - Phoronix

                                                  Show Your Support: This site is primarily supported by advertisements. Ads are what have allowed this site to be maintained on a daily basis for the past 19+ years. We do our best to ensure only clean, relevant ads are shown, when any nasty ads are detected, we work to remove them ASAP. If you would like to view the site without ads while still supporting our work, please consider our ad-free Phor

                                                    GCC 12 Adds Support For Using The Mold Linker - Phoronix
                                                  • Bubble sort slower with -O3 than -O2 with GCC

                                                    I made a bubble sort implementation in C, and was testing its performance when I noticed that the -O3 flag made it run even slower than no flags at all! Meanwhile -O2 was making it run a lot faster as expected. Without optimisations: time ./sort 30000 ./sort 30000 1.82s user 0.00s system 99% cpu 1.816 total -O2: time ./sort 30000 ./sort 30000 1.00s user 0.00s system 99% cpu 1.005 total -O3: time .

                                                      Bubble sort slower with -O3 than -O2 with GCC
                                                    • GCCとLLVMの内部の比較

                                                      このセッションの内容 現在の主要なCコンパイラであるGCCとLLVM/Clangが実際にどのような処理をするかを追っていきます コンパイラのトレースにはLLVMをバックエンドとして利用しているlldbを用います このセッションの目的 現在当研究室ではContinuation Based Cという言語を開発しています この言語はgcc/clangで実装されており,代々開発が引き継がれています 今回はこの発表を通して実際の開発の流れを体験していきます このセッションを聞くと実際にgcc/clangで開発を出来るかもしれない…!? GCCとLLVM 今回のセッションではGCCとLLVM/Clangを対象に読んでいきます GCCとはGNU Compiler Collectionの略で1985年から開発されているOSSなコンパイラパッケージです C言語で実装され,様々な言語のコンパイルをサポートして

                                                      • Static analysis in GCC 10 | Red Hat Developer

                                                        Try Red Hat products and technologies without setup or configuration fees for 30 days with this shared Openshift and Kubernetes cluster.

                                                          Static analysis in GCC 10 | Red Hat Developer
                                                        • gcc コンパイルオプション備忘録 - Qiita

                                                          個人的な備忘録です。 間違いがありましたらコメントいただけるとありがたいです。 参考サイト gccコンパイラの使い方 江添亮のC++入門 リンカの役割 自分メモメモ [C言語] 共有ライブラリと動的ライブラリを整理する 実行環境 Ubuntu 16.04 LTS gcc 5.4 a.outを作る

                                                            gcc コンパイルオプション備忘録 - Qiita
                                                          • [Pure C] Clang is better than GCC

                                                            Sorry for the provocative title, but I'm too emotional these days. This code: #include <stdio.h> #include <string.h> struct tmp { int x, y, z; }; int main() { struct tmp* m_result_original=NULL; struct tmp* m_result_my_version=NULL; // m_result_original=do_something_version_1(); // m_result_my_version=do_something_version_2(); if (memcmp(m_result_original, m_result_my_version, sizeof(struct tmp)!=

                                                            • EmacsWiki: Gcc Emacs

                                                              GccEmacs refers to the --with-native-compilation configuration option when building Emacs, which adds support for compiling EmacsLisp to native code using libgccjit. All of the Elisp packages shipped with Emacs are native-compiled, providing a noticeable performance improvement out-of-the-box. Third-party packages are also compiled to achieve further performance improvements. The official developm

                                                              • CentOS6のgccをアップデートする - 動かざることバグの如し

                                                                2019年2月19日追記 devtoolsetのバージョン上げた 概要 CentOS6ではyum経由でインストールできるgccのバージョンがとても古い。(強調 # gcc --version gcc (GCC) 4.4.7 20120313 (Red Hat 4.4.7-17) Copyright (C) 2010 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. これだとruby2.5のビルドができない!が、Developer Toolsetというのをインストールすると新しめのgc

                                                                  CentOS6のgccをアップデートする - 動かざることバグの如し
                                                                • A Rust-in-GCC update [LWN.net]

                                                                  Hi everyone, Since November 2020, I've worked full-time on the Rust front-end for GCC, thanks to Open Source Security, Inc and Embecosm. As a result, I am writing to this mailing list to seek feedback from the collective experience here early to plan a path for upstreaming the front-end into GCC. 1. What is the actual process of merging a prominent feature like this upstream - How do we review thi

                                                                  • The state of static analysis in the GCC 12 compiler | Red Hat Developer

                                                                    Building a static analyzer into the C compiler offers several advantages over having a separate tool, because the analyzer can track what the compiler and assembler are doing intimately. As a Red Hat employee, I work on GCC, the GNU Compiler Collection. Our static analyzer is still experimental but is making big strides in interesting areas, including a taint mode and an understanding of assembly-

                                                                      The state of static analysis in the GCC 12 compiler | Red Hat Developer
                                                                    • M1 MacでC++の競プロ用のGCC環境構築 - Qiita

                                                                      [0] はじめに (1) 本記事の目的 本記事では、パッケージ管理システムであるHomebrewを用いて、M1 Mac上でGCCの環境構築を行います。なお、私自身がこういったことに関して極めて初心者であり、従ってこの記事も私のような初心者を想定して作成しています。Qiita上でさまざまな情報が共有されているにかかわらず地味にハマって一筋縄では行かなかったので、少し丁寧な備忘録として記録します。 (2) なぜGCCを導入するのか 競技プログラミングにおいてしばしば見かける「おまじない」であるところの、

                                                                        M1 MacでC++の競プロ用のGCC環境構築 - Qiita
                                                                      • gccの-rdynamic option 調査メモ - Qiita

                                                                        はじめに gccの-rdynamic optionの調査メモ。 gcc 9.1.0, glibc 2.29を対象に調査した。 基本内容に差はないと思うが、target archはx86_64-pc-linux-gnu。 TL;DR -rdynamicオプションはリンク時のみ効果がある。 -rdynamicオプションを適用すると、共有ライブラリから実行ファイルのシンボル情報を動的に取得できるので、バックトレースの表示などに使われる。 -rdynamicオプションを適用することで、共有ライブラリとして利用可能な実行ファイルを作成できる。 -rdynamicオプションを適用するとシンボルバッティングや意図せず共有ライブラリに制御されてしまうリスクが増えるので、明確に目的がないなら通常は無効にしておく。 gcc,glibcのソースコードは面白い。 gccのspecファイルむずい。 公式ドキュメント

                                                                          gccの-rdynamic option 調査メモ - Qiita
                                                                        • Adding a Rust compiler front end to GCC [video] | Hacker News

                                                                          Because there is often some confusion, note that there are two different projects in this space with different approaches.The project discussed in the video above is a new front end to GCC (written in C++, as is typical for GCC frontends) and is developed here: https://github.com/Rust-GCC/gccrs The other project involves plugging GCC's backend into the existing rustc frontend, and is developed her

                                                                          • KMC Staff Blog:GCCの最適化による予期せぬ無限ループの発生

                                                                            2019年09月13日 GCCの最適化による予期せぬ無限ループの発生 コンパクトな独自の libc を実装していて、GCC のテストを通したところ、WARNING: program timed out. が原因による FAIL が多発しました。調べた結果、非常に意外な結果だったのでメモします。 問題は、calloc の実装でした。以下のように、全く問題無さそうな簡単なコードです。 #include <stdlib.h> #include <string.h> void *calloc(size_t n, size_t size) { size_t bytes = n * size; void *p = malloc(bytes); if (p) { memset(p, 0, bytes); } return p; } これが、GCC 6.4.0 の arm-eabi で O2 でコンパイル

                                                                            • QNAP NAS に gcc インストール | IwaoDev

                                                                              以前調べた時は,Synology NAS と同様に面倒だと思ったが… 検索すると QNAPにEntware-stdをインストールする Microsoft Windows [Version 10.0.18362.1016] (c) 2019 Microsoft Corporation. All rights reserved. C:\Users\Iwao>\\WDCloud\Public\Document\bat\ssh_ts253d.bat C:\Users\Iwao>cd C:\Users\Iwao\AppData\Local\Temp C:\Users\Iwao\AppData\Local\Temp>ssh -l Iwao -p 22 ts253d Iwao@ts253d's password: [Iwao@TS253D ~]$ gcc -sh: gcc: command not fo

                                                                              • New C++ features in GCC 12 | Red Hat Developer

                                                                                Version 12.1 of the GNU Compiler Collection (GCC) is expected to be released in April 2022. Like every major GCC release, this version will bring many additions, improvements, bug fixes, and new features. GCC 12 is already the system compiler in Fedora 36. GCC 12 will also be available on Red Hat Enterprise Linux in the Red Hat Developer Toolset (version 7) or the Red Hat GCC Toolset (version 8 an

                                                                                  New C++ features in GCC 12 | Red Hat Developer
                                                                                • 灰紫色 on Twitter: "&lt;拡散希望します&gt; 本日、聴覚障碍者の代理で、茨城県笠間にあるフレンチレストラン「トルテュ」に予約の電話を入れました。 口が聞けないの?いえ、口が聞けないのではなく聞こえないので電話ができません。などのやりとりがあり、予約のため電… https://t.co/Gcc5I9mE1E"

                                                                                  &lt;拡散希望します&gt; 本日、聴覚障碍者の代理で、茨城県笠間にあるフレンチレストラン「トルテュ」に予約の電話を入れました。 口が聞けないの?いえ、口が聞けないのではなく聞こえないので電話ができません。などのやりとりがあり、予約のため電… https://t.co/Gcc5I9mE1E

                                                                                    灰紫色 on Twitter: "&lt;拡散希望します&gt; 本日、聴覚障碍者の代理で、茨城県笠間にあるフレンチレストラン「トルテュ」に予約の電話を入れました。 口が聞けないの?いえ、口が聞けないのではなく聞こえないので電話ができません。などのやりとりがあり、予約のため電… https://t.co/Gcc5I9mE1E"