ตรวจสอบระบบปฏิบัติการโดยใช้สองเทคนิคง่ายๆ:
- ก่อนอื่นตัวแปรสภาพแวดล้อม
OS
- จากนั้น
uname
คำสั่ง
ifeq ($(OS),Windows_NT) # is Windows_NT on XP, 2000, 7, Vista, 10...
detected_OS := Windows
else
detected_OS := $(shell uname) # same as "uname -s"
endif
หรือวิธีที่ปลอดภัยกว่านี้หากไม่ใช่ใน Windows และuname
ไม่สามารถใช้งานได้:
ifeq ($(OS),Windows_NT)
detected_OS := Windows
else
detected_OS := $(shell sh -c 'uname 2>/dev/null || echo Unknown')
endif
Ken Jacksonเสนอทางเลือกที่น่าสนใจหากคุณต้องการแยก Cygwin / MinGW / MSYS / Windows ดูคำตอบของเขาที่ดูเหมือนว่า:
ifeq '$(findstring ;,$(PATH))' ';'
detected_OS := Windows
else
detected_OS := $(shell uname 2>/dev/null || echo Unknown)
detected_OS := $(patsubst CYGWIN%,Cygwin,$(detected_OS))
detected_OS := $(patsubst MSYS%,MSYS,$(detected_OS))
detected_OS := $(patsubst MINGW%,MSYS,$(detected_OS))
endif
จากนั้นคุณสามารถเลือกสิ่งที่เกี่ยวข้องขึ้นอยู่กับdetected_OS
:
ifeq ($(detected_OS),Windows)
CFLAGS += -D WIN32
endif
ifeq ($(detected_OS),Darwin) # Mac OS X
CFLAGS += -D OSX
endif
ifeq ($(detected_OS),Linux)
CFLAGS += -D LINUX
endif
ifeq ($(detected_OS),GNU) # Debian GNU Hurd
CFLAGS += -D GNU_HURD
endif
ifeq ($(detected_OS),GNU/kFreeBSD) # Debian kFreeBSD
CFLAGS += -D GNU_kFreeBSD
endif
ifeq ($(detected_OS),FreeBSD)
CFLAGS += -D FreeBSD
endif
ifeq ($(detected_OS),NetBSD)
CFLAGS += -D NetBSD
endif
ifeq ($(detected_OS),DragonFly)
CFLAGS += -D DragonFly
endif
ifeq ($(detected_OS),Haiku)
CFLAGS += -D Haiku
endif
หมายเหตุ:
คำสั่งuname
เหมือนกับuname -s
เพราะ option -s
( --kernel-name
) เป็นค่าเริ่มต้น ดูเหตุผลที่uname -s
uname -o
ดีกว่า
การใช้OS
(แทนuname
) ลดความซับซ้อนของอัลกอริทึมการระบุ คุณยังสามารถใช้ แต่เพียงผู้เดียวuname
แต่คุณต้องจัดการกับif/else
บล็อกเพื่อตรวจสอบรูปแบบ MinGW, Cygwin ฯลฯ ทั้งหมด
ตัวแปรสภาพแวดล้อมOS
ถูกตั้งค่าเป็น"Windows_NT"
เวอร์ชัน Windows ที่แตกต่างกันเสมอ(ดู%OS%
ตัวแปรสภาพแวดล้อมบน Wikipedia )
อีกทางเลือกหนึ่งOS
คือตัวแปรสภาพแวดล้อมMSVC
(ตรวจสอบสถานะของMS Visual Studioดูตัวอย่างการใช้ Visual C ++ )
ด้านล่างนี้เป็นตัวอย่างที่สมบูรณ์สำหรับการใช้make
และgcc
การสร้างไลบรารี่ที่แชร์: *.so
หรือ*.dll
ขึ้นอยู่กับแพลตฟอร์ม ตัวอย่างนี้ง่ายที่สุดที่จะเข้าใจได้ง่ายขึ้น
การติดตั้งmake
และgcc
บน Windows ดูCygwinหรือMinGW
ตัวอย่างของฉันใช้ไฟล์ห้าไฟล์
├── lib
│ └── Makefile
│ └── hello.h
│ └── hello.c
└── app
└── Makefile
└── main.c
คำเตือน: Makefile
เป็นเยื้องโดยใช้การจัดระเบียบ ข้อควรระวังเมื่อคัดลอกวางด้านล่างไฟล์ตัวอย่าง
ทั้งสองMakefile
ไฟล์
1 lib/Makefile
ifeq ($(OS),Windows_NT)
uname_S := Windows
else
uname_S := $(shell uname -s)
endif
ifeq ($(uname_S), Windows)
target = hello.dll
endif
ifeq ($(uname_S), Linux)
target = libhello.so
endif
#ifeq ($(uname_S), .....) #See https://stackoverflow.com/a/27776822/938111
# target = .....
#endif
%.o: %.c
gcc -c $< -fPIC -o $@
# -c $< => $< is first file after ':' => Compile hello.c
# -fPIC => Position-Independent Code (required for shared lib)
# -o $@ => $@ is the target => Output file (-o) is hello.o
$(target): hello.o
gcc $^ -shared -o $@
# $^ => $^ expand to all prerequisites (after ':') => hello.o
# -shared => Generate shared library
# -o $@ => Output file (-o) is $@ (libhello.so or hello.dll)
2 app/Makefile
ifeq ($(OS),Windows_NT)
uname_S := Windows
else
uname_S := $(shell uname -s)
endif
ifeq ($(uname_S), Windows)
target = app.exe
endif
ifeq ($(uname_S), Linux)
target = app
endif
#ifeq ($(uname_S), .....) #See https://stackoverflow.com/a/27776822/938111
# target = .....
#endif
%.o: %.c
gcc -c $< -I ../lib -o $@
# -c $< => compile (-c) $< (first file after :) = main.c
# -I ../lib => search headers (*.h) in directory ../lib
# -o $@ => output file (-o) is $@ (target) = main.o
$(target): main.o
gcc $^ -L../lib -lhello -o $@
# $^ => $^ (all files after the :) = main.o (here only one file)
# -L../lib => look for libraries in directory ../lib
# -lhello => use shared library hello (libhello.so or hello.dll)
# -o $@ => output file (-o) is $@ (target) = "app.exe" or "app"
ต้องการเรียนรู้เพิ่มเติมโปรดอ่านตัวแปรอัตโนมัติเอกสารเป็นแหลมออกโดยCFI
รหัสแหล่งที่มา
- lib/hello.h
#ifndef HELLO_H_
#define HELLO_H_
const char* hello();
#endif
- lib/hello.c
#include "hello.h"
const char* hello()
{
return "hello";
}
- app/main.c
#include "hello.h" //hello()
#include <stdio.h> //puts()
int main()
{
const char* str = hello();
puts(str);
}
การสร้าง
แก้ไขการคัดลอกวางMakefile
(แทนที่ช่องว่างนำหน้าด้วยหนึ่งตาราง)
> sed 's/^ */\t/' -i */Makefile
make
คำสั่งเดียวกันในทั้งสองแพลตฟอร์ม เอาต์พุตที่กำหนดอยู่บน Unix-like OSes:
> make -C lib
make: Entering directory '/tmp/lib'
gcc -c hello.c -fPIC -o hello.o
# -c hello.c => hello.c is first file after ':' => Compile hello.c
# -fPIC => Position-Independent Code (required for shared lib)
# -o hello.o => hello.o is the target => Output file (-o) is hello.o
gcc hello.o -shared -o libhello.so
# hello.o => hello.o is the first after ':' => Link hello.o
# -shared => Generate shared library
# -o libhello.so => Output file (-o) is libhello.so (libhello.so or hello.dll)
make: Leaving directory '/tmp/lib'
> make -C app
make: Entering directory '/tmp/app'
gcc -c main.c -I ../lib -o main.o
# -c main.c => compile (-c) main.c (first file after :) = main.cpp
# -I ../lib => search headers (*.h) in directory ../lib
# -o main.o => output file (-o) is main.o (target) = main.o
gcc main.o -L../lib -lhello -o app
# main.o => main.o (all files after the :) = main.o (here only one file)
# -L../lib => look for libraries in directory ../lib
# -lhello => use shared library hello (libhello.so or hello.dll)
# -o app => output file (-o) is app.exe (target) = "app.exe" or "app"
make: Leaving directory '/tmp/app'
วิ่ง
แอปพลิเคชั่นต้องรู้ว่าไลบรารีที่แชร์อยู่ที่ไหน
บน Windows ทางออกที่ง่ายคือการคัดลอกไลบรารี่ที่แอปพลิเคชันอยู่:
> cp -v lib/hello.dll app
`lib/hello.dll' -> `app/hello.dll'
บนระบบปฏิบัติการ Unix-like OSes คุณสามารถใช้LD_LIBRARY_PATH
ตัวแปรสภาพแวดล้อม:
> export LD_LIBRARY_PATH=lib
เรียกใช้คำสั่งบน Windows:
> app/app.exe
hello
รันคำสั่งบน OSE ที่เหมือน Unix:
> app/app
hello
PROCESSOR_ARCHITECTURE
envvar ดูเหมือนจะเป็นเสมือนจริงขึ้นอยู่กับว่ากระบวนการนั้นเป็นแบบ 32 บิตหรือ 64 บิต ดังนั้นถ้าคุณmake
เป็น 32- บิตและคุณกำลังพยายามสร้างแอปพลิเคชัน 64 บิตมันจะล้มเหลว ใช้มันร่วมกับPROCESSOR_ARCHITEW6432
ทำงานให้ฉัน (ดูนี้และที่ )