Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6246291
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T12:39:40+00:00 2026-05-24T12:39:40+00:00

On this line: GCCVER:=$(shell a=`mktemp` && echo $’#include <stdio.h>\nmain() {printf(%u.%u\\n, __GNUC__, __GNUC_MINOR__);}’ | gcc

  • 0

On this line:

GCCVER:=$(shell a=`mktemp` && echo $'#include <stdio.h>\nmain() {printf("%u.%u\\n", __GNUC__, __GNUC_MINOR__);}' | gcc -o "$a" -xc -; "$a"; rm "$a")

I get:

*** unterminated call to function `shell': missing `)'.  Stop.

What’s wrong with my stupidly circuitous variable?

Update0

$ make --version
GNU Make 3.81
$ bash --version
GNU bash, version 4.2.8(1)-release (x86_64-pc-linux-gnu)
$ uname -a
Linux 2.6.38-10-generic #46-Ubuntu SMP x86_64 GNU/Linux
$ gcc --version
gcc (Ubuntu/Linaro 4.5.2-8ubuntu4) 4.5.2
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T12:39:41+00:00Added an answer on May 24, 2026 at 12:39 pm

    when using $ for Bash inside a Makefile, you need to double them: $$a for example. I’m not familiar with the notation $' but I’ll have to assume you know what you’re doing with that. unless it’s a Makefile construct, you need to double the dollar sign on that one too.

    also, the hash sign # is terminating the shell expansion in Make’s evaluation, which is why it never sees the right paren. escaping it helps, but I don’t have it working quite right yet.

    I’m debugging it by having two steps: first is setting GCCVER to be the list of commands without the enclosing $(shell), then in the 2nd step setting GCCVER := $(shell $(GCCVER)). you might want to try that too, commenting out the $(shell) step when it doesn’t work, using export, and making a “set” recipe:

    GCCVER := some commands here
    #GCCVER := $(shell $(GCCVER))  # expand the commands, commented out now
    export  # all variables available to shell
    set:
            set  # make sure this is prefixed by a tab, not spaces
    

    Then:

    make set | grep GCCVER
    

    [update] this works:

    GCCVER := a=`mktemp` && echo -e '\#include <stdio.h>\nmain() {printf("%u.%u\\n", __GNUC__, __GNUC_MINOR__);}' | gcc -o "$$a" -xc -; "$$a"; rm "$$a"
    GCCVER := $(shell $(GCCVER))
    export
    default:
        set
    
    jcomeau@intrepid:/tmp$ make | grep GCCVER
    GCCVER=4.6
    

    And full circle, having gotten rid of the extra step:

    jcomeau@intrepid:/tmp$ make | grep GCCVER; cat Makefile 
    GCCVER=4.6
    GCCVER := $(shell a=`mktemp` && echo -e '\#include <stdio.h>\nmain() {printf("%u.%u\\n", __GNUC__, __GNUC_MINOR__);}' | gcc -o "$$a" -xc -; "$$a"; rm "$$a")
    export
    default:
        set
    

    Using the $' Bash construct:

    jcomeau@intrepid:/tmp$ make | grep GCCVER; cat Makefile 
    GCCVER=4.6
    GCCVER := $(shell a=`mktemp` && echo $$'\#include <stdio.h>\nmain() {printf("%u.%u\\n", __GNUC__, __GNUC_MINOR__);}' | gcc -o "$$a" -xc -; "$$a"; rm "$$a")
    export
    default:
        set
    

    Since your system doesn’t work the same as mine, I’m going to cop out and say either use reinierpost’s suggestion or, alternatively:

    GCCVER := $(shell gcc -dumpversion | cut -d. -f1,2)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This line is causing segfault to me: 30 printf(st_name:\t%s\n, &p_str_tab[p->st_name]); I've tried to trace
Given this line of code in C: printf(%3.0f\t%6.1f\n, fahr, ( (5.0/9.0) * (fahr-32) )
this line: <li><?php echo $form['genero']->renderLabel() ?></li> is generating <li> <label for=usuario_genero>Genero</label> <ul class=radio_list> <li>
I have this line of code in an for loop: echo '<toggle_me style=display: none><img
This line of code if (sqlite3_open(([databasePath UTF8String], &database) == SQLITE_OK) generates an error saying
This line in YUI's Reset CSS is causing trouble for me: address,caption,cite,code,dfn,em,strong,th,var { font-style:
This line of code ((Matches)Container.DataItem).MatchID works in C# but in VB.NET, when used in
this line of the code makes the form see-through User32Wrappers.SetLayeredWindowAttributes(Me.Handle, 0, _ 255 *
This line is giving error: Too few arguments. What is the problem? $InsertQuery =
Consider this line: std::wcout << Hello World!; Is it OK to pass char* or

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.