Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a bmake.file for some legacy cross-platform c code, and it uses #ifdef OS blocks to specify certain subdirectories to build in. Example:

#ifdef LINUX
#if defined(LINUX_22) || defined(LINUX_23) || defined(LINUX_23_64) || defined(LINUX_23_ppc64)
#ifdef LINUX_22
subdirs: LINUX_22
#endif
#ifdef LINUX_23
subdirs: LINUX_23
#endif
#ifdef LINUX_23_64
subdirs: LINUX_23_64
#endif
#ifdef LINUX_23_ppc64
subdirs: LINUX_23_ppc64
#endif
#else   # not defined() ... "original" linux
subdirs: LINUX
#endif
#endif

There are many more blocks, covering solaris, hp_ux, windows, etc. I am spinning up a brand new box, which is Fedora 17, kernel 3.4:

[eric@fiora ~]$ uname -a
Linux fiora 3.4.0-1.fc17.x86_64 #1 SMP Sun Jun 3 06:35:17 UTC 2012 x86_64 x86_64 x86_64 GNU/Linux
[eric@fiora ~]$ cat /etc/issue
Fedora release 17 (Beefy Miracle)
Kernel \r on an \m (\l)

[eric@fiora ~]$

This new fedora box doesn't trigger any of the #ifdef blocks. I assumed that LINUX_22 and LINUX_23 referred to kernel versions 2.2 and 2.3 respectively (yes, the code is that old), which could explain why I'm not hitting any of the specific #ifdefs. But there's a wrinkle in that assumption. There's exactly one machine in the office that builds on Linux. It's SUSE 9, kernel 2.6:

> uname -a
Linux DaveBbldsusea64 2.6.5-7.308-default #1 Mon Dec 10 11:36:40 UTC 2007 x86_64 x86_64 x86_64 GNU/Linux
> cat /etc/issue

Welcome to SUSE LINUX Enterprise Server 9 (x86_64) - Kernel \r (\l).

>

That machine triggers the #ifdef LINUX_23_64 block in the bmake.file, which wouldn't seem to make sense because it's on the 2.6 kernel.

Is there a way to find out exactly which OS bmake thinks I'm on? I tried env, but didn't get any useful information. A master list of all possible OS variables would also be pretty cool, but for now I'd really just like to know which specific variables are being set for my new Fedora box. Thanks!

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.