Merge tag 'sh-for-5.9' of git://git.libc.org/linux-sh
[linux/fpc-iii.git] / scripts / gcc-plugin.sh
blobb79fd0bea83844010355b0daf8fae23bb0435ace
1 #!/bin/sh
2 # SPDX-License-Identifier: GPL-2.0
4 set -e
6 srctree=$(dirname "$0")
8 gccplugins_dir=$($* -print-file-name=plugin)
10 # we need a c++ compiler that supports the designated initializer GNU extension
11 $HOSTCC -c -x c++ -std=gnu++98 - -fsyntax-only -I $srctree/gcc-plugins -I $gccplugins_dir/include 2>/dev/null <<EOF
12 #include "gcc-common.h"
13 class test {
14 public:
15 int test;
16 } test = {
17 .test = 1
19 EOF