bug-make
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Case-insensitive targets


From: Gisle Vanem
Subject: Case-insensitive targets
Date: Thu, 2 Aug 2018 14:39:30 +0200
User-agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko/20100101 Thunderbird/52.9.1

Hello list.

In a discussion with the LuaList, I got involved with
how GNU-make on Windows handles all targets in a case-
insensitive manner. Like in this 'case-insensitive-win.mak':

-----
default: program_name

PROGRAM_NAME Program_Name program_name:
        @echo 'Do something for address@hidden'

-----

c:\> make -f case-insensitive-win.mak
case-insensitive-win.mak:3: target 'program_name' given more than once in the 
same rule
case-insensitive-win.mak:3: target 'program_name' given more than once in the 
same rule
Do something for program_name.

-----

I understand that real files should be treated in a case-insensitive
manner, but such "phony" targets (whatever it's called)?
The only hit for "sensitive" in my GNU-make.pdf was this:
  Variable names are case-sensitive. The names ‘foo’, ‘FOO’, and ‘Foo’
  all refer to different variables.

I fail to understand all the details around '-DHAVE_CASE_INSENSITIVE_FS',
but is the above .mak-file working as designed on Windows?

If it is, then gnumake aborts in 'install_default_suffix_rules()'
if '-DMAKE_MAINTAINER_MODE' is defined. In default.c, at
 assert (f->cmds == 0);

since AFAICS the implicit ".c" and ".C" rules is the same on Windows.
I can come back to that later.

--
--gv



reply via email to

[Prev in Thread] Current Thread [Next in Thread]