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 9254965
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T11:36:16+00:00 2026-06-18T11:36:16+00:00

Following makefile: #Regular c++ rules CXX=g++ CXXFLAGS=-Wall -march=native -ffast-math -O3 CXX_OBJECTS=AbsNode.o rle16.o rle8.o #

  • 0

Following makefile:

#Regular c++ rules
CXX=g++
CXXFLAGS=-Wall -march=native -ffast-math -O3
CXX_OBJECTS=AbsNode.o rle16.o rle8.o

# Link command:
test : $(CXX_OBJECTS)
    $(CXX) $(CXX_OBJECTS) -o test

# Compilation commands: 
$.o : %.cpp
    $(CXX) -c $< $(CXXFLAGS) -o $@

Outputs

g++ -Wall -march=native -ffast-math -O3 -c -o AbsNode.o AbsNode.cpp
g++ -Wall -march=native -ffast-math -O3 -c -o rle16.o rle16.cpp
g++ -Wall -march=native -ffast-math -O3 -c -o rle8.o rle8.cpp

while I expect

g++ -c AbsNode.cpp -Wall -march=native -ffast-math -O3  -o AbsNode.o 
g++ -c rle16.cpp -Wall -march=native -ffast-math -O3 -o rle16.o 
g++ -c rle8.cpp -Wall -march=native -ffast-math -O3 -o rle8.o 

Why is the order of arguments to g++ switched compared to the rule stated in makefile???

  • 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-06-18T11:36:17+00:00Added an answer on June 18, 2026 at 11:36 am
    $.o : %.cpp
    

    You typed $ instead of %, which turned is into a non-template rule. However make has a default rule for C++ file, which was taken instead of yours. The order of arguments match this internal rule.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following makefile CXX = g++ CXXFLAGS = -c -g -pg -Wall
I have the following piece of makefile: CXXFLAGS = -std=c++0x -Wall SRCS = test1.cpp
I have used -Wall -Werror in my Makefile but I want to disable following
I have the following Makefile rules: DIR = src SOURCES = $(shell find $(DIR)
I have the following makefile CXXFILES = pthreads.cpp CXXFLAGS = -O3 -o prog -rdynamic
I have the following makefile for my project, and I'd like to configure it
Utility: NMake Platform : Windows 7 I have the following Makefile FILE = $(shell)
I have the following implicit rule in a makefile: a1 b1: %: %.o On
I found the following lines in a makefile tutorial, but I have some problem
I have the following PHONY target in Makefile install: echo /usr/bin/shelldecrypt must be writable

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.