Deteksi sistem operasi menggunakan dua trik sederhana:
- Pertama variabel lingkungan
OS
- Lalu
uname
perintahnya
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
Atau cara yang lebih aman, jika tidak pada Windows dan uname
tidak tersedia:
ifeq ($(OS),Windows_NT)
detected_OS := Windows
else
detected_OS := $(shell sh -c 'uname 2>/dev/null || echo Unknown')
endif
Ken Jackson mengusulkan alternatif yang menarik jika Anda ingin membedakan Cygwin / MinGW / MSYS / Windows. Lihat jawabannya yang terlihat seperti itu:
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
Kemudian Anda dapat memilih hal-hal yang relevan tergantung pada 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
Catatan:
Perintah uname
sama dengan uname -s
karena opsi -s
( --kernel-name
) adalah default. Lihat mengapa uname -s
lebih baik daripadauname -o
.
Penggunaan OS
(bukan uname
) menyederhanakan algoritma identifikasi. Anda masih dapat menggunakan semata-mata uname
, tetapi Anda harus berurusan dengan if/else
blok untuk memeriksa semua variasi MinGW, Cygwin, dll.
Variabel lingkungan OS
selalu disetel "Windows_NT"
pada versi Windows yang berbeda (lihat %OS%
variabel lingkungan di Wikipedia ).
Alternatif OS
adalah variabel lingkungan MSVC
(memeriksa keberadaan MS Visual Studio , lihat contoh menggunakan Visual C ++ ).
Di bawah ini saya memberikan contoh lengkap menggunakan make
dan gcc
membangun perpustakaan bersama: *.so
atau *.dll
tergantung pada platform. Contohnya sesederhana mungkin untuk lebih dimengerti.
Untuk menginstal make
dan gcc
pada Windows, lihat Cygwin atau MinGW .
Contoh saya didasarkan pada lima file
├── lib
│ └── Makefile
│ └── hello.h
│ └── hello.c
└── app
└── Makefile
└── main.c
Pengingat: Makefile
indentasi menggunakan tabulasi . Perhatian saat menyalin-menempel di bawah file sampel.
Kedua Makefile
file tersebut
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"
Untuk mempelajari lebih lanjut, baca dokumentasi Variabel Otomatis seperti yang ditunjukkan oleh cfi .
Kode sumber
- 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);
}
Membangun
Perbaiki salin-tempel Makefile
(ganti spasi terdepan dengan satu tabulasi).
> sed 's/^ */\t/' -i */Makefile
The make
perintah yang sama pada kedua platform. Output yang diberikan adalah pada OS mirip Unix:
> 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'
Lari
Aplikasi ini perlu tahu di mana perpustakaan bersama.
Di Windows, solusi sederhana adalah menyalin pustaka tempat aplikasi tersebut:
> cp -v lib/hello.dll app
`lib/hello.dll' -> `app/hello.dll'
Pada OS yang mirip Unix, Anda dapat menggunakan LD_LIBRARY_PATH
variabel lingkungan:
> export LD_LIBRARY_PATH=lib
Jalankan perintah pada Windows:
> app/app.exe
hello
Jalankan perintah pada OS yang mirip Unix:
> app/app
hello
PROCESSOR_ARCHITECTURE
envvar tampaknya tervirtualisasi tergantung pada apakah prosesnya 32-bit atau 64-bit. Jadi, jika Andamake
32-bit dan Anda mencoba membangun aplikasi 64-bit, itu akan gagal. Menggunakannya dalam kombinasi denganPROCESSOR_ARCHITEW6432
bekerja untuk saya (lihat ini , dan itu )